1

I am accessing S3 using signed URLs and Jets3t library. I have built a cipherStream over inputstream so that encryption also happens on the fly during upload.

Can I use multipart upload feature where file is divided into multiple parts and uploaded to S3 in parallel.

Does Jets3t provide any support to handle such case?

vivek garg
  • 283
  • 1
  • 2
  • 15

1 Answers1

0

You can use the multi-threaded ThreadedS3Service class as your service object. It has a method multipartStartUploads(java.lang.String bucketName, java.util.List objects) that does exactly what I think you are asking for.

jeremyjjbrown
  • 7,772
  • 5
  • 43
  • 55