S3AsyncClient resume multipart upload after application restart

201 Views Asked by At

I'm using S3AsyncClient client in Java to upload a big file using multipart upload.

If the application restarts during upload, a new S3AsyncClient instance is created with a new uploadId.

Is it possible to complete a multipart upload with a new uploadId?

1

There are 1 best solutions below

4
On BEST ANSWER

Is it possible to complete a multipart upload with a new uploadId?

No, you require the same uploadId used to first initiate the multipart upload.