ClickHouse/tests/config/config.d/azure_storage_conf.xml
2024-02-20 10:59:18 +01:00

34 lines
1.3 KiB
XML

<clickhouse>
<storage_configuration>
<disks>
<azure>
<type>object_storage</type>
<object_storage_type>azure</object_storage_type>
<storage_account_url>http://localhost:10000/devstoreaccount1</storage_account_url>
<container_name>cont</container_name>
<skip_access_check>false</skip_access_check>
<!-- default credentials for Azurite storage account -->
<account_name>devstoreaccount1</account_name>
<account_key>Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==</account_key>
<max_single_part_upload_size>33554432</max_single_part_upload_size>
</azure>
<cached_azure>
<type>cache</type>
<disk>azure</disk>
<path>azure_cache/</path>
<max_size>100000000000</max_size>
<cache_on_write_operations>1</cache_on_write_operations>
</cached_azure>
</disks>
<policies>
<azure_cache>
<volumes>
<main>
<disk>cached_azure</disk>
</main>
</volumes>
</azure_cache>
</policies>
</storage_configuration>
</clickhouse>