Files
awoooi/ops/signoz/clickhouse/config.d/backup_disk.xml

25 lines
765 B
XML

<?xml version="1.0"?>
<!--
Repo-owned ClickHouse native BACKUP destination for host110.
The bind mount is supplied by docker-compose.clickhouse-backup.override.yaml.
BACKUP data is deliberately kept outside the production ClickHouse volume so
it can be ingested by the existing host /backup retention/offsite pipeline.
-->
<clickhouse>
<storage_configuration>
<disks>
<backups>
<type>local</type>
<path>/backups/</path>
</backups>
</disks>
</storage_configuration>
<backups>
<allowed_disk>backups</allowed_disk>
<allowed_path>/backups/</allowed_path>
<allow_concurrent_backups>false</allow_concurrent_backups>
<allow_concurrent_restores>false</allow_concurrent_restores>
</backups>
</clickhouse>