forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create symlinks using table's actual data path for Atomic db
- Loading branch information
1 parent
30df0fc
commit 6ae9e09
Showing
4 changed files
with
140 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
tests/integration/test_filesystem_layout/configs/config.d/storage_configuration.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<clickhouse> | ||
<storage_configuration> | ||
<disks> | ||
<default> | ||
<keep_free_space_bytes>1024</keep_free_space_bytes> | ||
</default> | ||
<jbod1> | ||
<path>/jbod1/</path> | ||
</jbod1> | ||
<jbod2> | ||
<path>/jbod2/</path> | ||
</jbod2> | ||
<s3> | ||
<type>s3</type> | ||
<endpoint>http://minio1:9001/root/data/</endpoint> | ||
<access_key_id>minio</access_key_id> | ||
<secret_access_key>minio123</secret_access_key> | ||
</s3> | ||
</disks> | ||
<policies> | ||
<jbod> | ||
<volumes> | ||
<jbod_volume> | ||
<disk>jbod1</disk> | ||
<disk>jbod2</disk> | ||
</jbod_volume> | ||
</volumes> | ||
</jbod> | ||
<s3> | ||
<volumes> | ||
<s3_volume> | ||
<disk>s3</disk> | ||
</s3_volume> | ||
</volumes> | ||
</s3> | ||
</policies> | ||
</storage_configuration> | ||
</clickhouse> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters