When using s3sync on a bucket which has objects of size greater then 5GiBs, it fails with error:
pipeline step: 3 (UploadObj) failed with error: object: <object path> sync error: EntityTooLarge: \n\tstatus code: 400, request id: <x_amz_request_id>
It is because PutObject operation on most S3 compatible backends only supports till 5GiB. MultiPartUpload is recommended for objects of size greater than 5GiB.
When using s3sync on a bucket which has objects of size greater then 5GiBs, it fails with error:
It is because PutObject operation on most S3 compatible backends only supports till 5GiB. MultiPartUpload is recommended for objects of size greater than 5GiB.