Releases: Altinity/clickhouse-backup
Releases · Altinity/clickhouse-backup
2.4.19
v2.4.19
BUG FIXES
- use single s3:CopyObject call instead s3:CreateMultipartUpload+s3:UploadCopyPart+s3:CompleteMultipartUpload for files with size less 5Gb
2.4.18
v2.4.18
BUG FIXES
- remove HeadObject request to calculate source key size in CopyObject, to allow cross region S3 disks backup, fix 813
- make optional
/backup/kill
query parametercommand
and optional arguments forkill
command handled via/backup/actions
, if omitted then will kill first command in "In progress" status, fix 808
2.4.17
v2.4.17
BUG FIXES
- skip CopyObject execution for keys which have zero size, to allow properly backup S3, GCS over S3 and Azure disks
2.4.16
v2.4.16
BUG FIXES
- increase
AZBLOB_TIMEOUT
to 4h, instead 15m to allow download long size data parts - change
S3_MAX_PARTS_COUNT
from5000
to1000
and minimalS3_PART_SIZE
from 5Mb to 25Mb by default to improve speedup S3 uploading / downloading
2.4.15
v2.4.15
BUG FIXES
- fix
create
andrestore
command for ReplicatedMergeTree tables withfrozen_metadata.txt
parsing
2.4.14
v2.4.14
IMPROVEMENTS
- refactoring
semaphore.NewWeighted()
toerrgroup.SetLimit()
- add parallelization to
create
andrestore
command during callCopyObject
2.4.13
2.4.12
v2.4.12
BUG FIXES
- fix CopyObject to use simple CopyObject call, instead of multipart for zero object size, for backup S3 disks
2.4.11
v2.4.11
BUG FIXES
- fix CopyObject multipart upload complete Parts must be ordered by part number, for backup S3 disks
2.4.10
v2.4.10
IMPROVEMENTS
- update go modules to latest versions
- add
S3_REQUEST_PAYER
config parameter, look https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html for details, fix 795