ClickHouse/tests/integration/test_endpoint_macro_substitution/configs/storage.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>