-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The specified blob does not exist
when downloading an embedded backup from azure blob storage
#800
Comments
it looks like bug could you share
on destination clickhouse server |
which clickhouse-backup version do you use? |
Yes I updated now to version 2.4.14 but the issue still persists. Clickhouse version is 23.8.2.7
Disks and policies on both servers are the same (I can also re-produce this issue when source = destination host) And just for clarification I use the API endpoint /backups/download/{backup_name} endpoint (also to create and upload), if this helps... |
Same recommendations with #799 (comment) you need to change azblob:
path: "/clickhouse_backup_data/"
object_disk_path: "/clickhouse_backup_object_disk_data/" |
Downloading with
CLICKHOUSE_USE_EMBEDDED_BACKUP_RESTORE
enabled yields this error:According to this error message the path is not built correctly. Instead of using
https://container.blob.core.windows.net/backups/mybackup-135946/shadow/mybackup/TINYLOG_TABLE/backups_azure/author.bin
(which exists), another part (/mybackup-135946/shadow/mybackup/TINYLOG_TABLE/backups_azure/author.bin?timeout=901
) is appended.The result is this weird url
https://container.blob.core.windows.net/backups/mybackup-135946/shadow/mybackup/TINYLOG_TABLE/backups_azure/author.bin/mybackup-135946/shadow/mybackup/TINYLOG_TABLE/backups_azure/author.bin?timeout=901
.This is the config I am using currently:
clickhouse-backup:
clickhouse:
PS: thanks for helping me out with the upload part! And I am really sorry for bothering you twice today
The text was updated successfully, but these errors were encountered: