-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for s3
GLACIER
storage class, when GET return error, th…
…en, it requires 5 minutes per key and restore could be slow. Use `GLACIER_IR`, it looks more robust, fix #614
- Loading branch information
Showing
6 changed files
with
70 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
general: | ||
disable_progress_bar: true | ||
remote_storage: s3 | ||
upload_concurrency: 4 | ||
download_concurrency: 4 | ||
skip_tables: | ||
- " system.*" | ||
- "INFORMATION_SCHEMA.*" | ||
- "information_schema.*" | ||
- "_temporary_and_external_tables.*" | ||
restore_schema_on_cluster: "{cluster}" | ||
clickhouse: | ||
host: clickhouse | ||
port: 9440 | ||
username: backup | ||
password: meow=& 123?*%# МЯУ | ||
secure: true | ||
skip_verify: true | ||
sync_replicated_tables: true | ||
timeout: 1h | ||
restart_command: bash -c 'echo "FAKE RESTART"' | ||
backup_mutations: true | ||
# secrets for `FISP` will provide from `.env` or from GitHub actions secrets | ||
s3: | ||
access_key: ${QA_AWS_ACCESS_KEY} | ||
secret_key: ${QA_AWS_SECRET_KEY} | ||
bucket: ${QA_AWS_BUCKET} | ||
# endpoint: https://${QA_AWS_BUCKET}.s3-fips.${QA_AWS_REGION}.amazonaws.com/ | ||
region: ${QA_AWS_REGION} | ||
acl: private | ||
force_path_style: false | ||
path: backup/{cluster}/{shard} | ||
object_disk_path: object_disks/{cluster}/{shard} | ||
disable_ssl: false | ||
compression_format: tar | ||
allow_multipart_download: false | ||
concurrency: 4 | ||
# storage_class: GLACIER, 6000 seconds test execution | ||
storage_class: GLACIER_IR | ||
api: | ||
listen: :7171 | ||
create_integration_tables: true | ||
integration_tables_host: "localhost" | ||
allow_parallel: false |
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