mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
25 lines
946 B
XML
25 lines
946 B
XML
<clickhouse>
|
|
<macros incl="macros" optional="true" replace="replace"/>
|
|
<storage_configuration>
|
|
<disks>
|
|
<disk_s3>
|
|
<type>s3</type>
|
|
<endpoint>http://minio1:9001/root/{endpoint_substitution}/</endpoint>
|
|
<access_key_id>minio</access_key_id>
|
|
<secret_access_key>minio123</secret_access_key>
|
|
</disk_s3>
|
|
<disk_hdfs>
|
|
<type>hdfs</type>
|
|
<endpoint>hdfs://hdfs1:9000/{hdfs_endpoint_substitution}/</endpoint>
|
|
<!-- FIXME: chicken and egg problem with current cluster.py -->
|
|
<skip_access_check>true</skip_access_check>
|
|
</disk_hdfs>
|
|
<disk_encrypted>
|
|
<type>encrypted</type>
|
|
<disk>disk_s3</disk>
|
|
<key>1234567812345678</key>
|
|
</disk_encrypted>
|
|
</disks>
|
|
</storage_configuration>
|
|
</clickhouse>
|