On Jul 23, 2013, at 19:36 , Andrew Gaul <[email protected]> wrote: > Nikola, what features to you need for your custom multipart upload > strategy? Could we improve the existing MPU strategies to address your > use case? > > On Tue, Jul 23, 2013 at 03:33:32PM +0200, Nikola Knezevic wrote: >> I would like to implement my own multipart upload strategy, to be used >> instead of ParallelMultipartUploadStrategy in s3 and swift apis. >> However, I'm struggling to discover how to make all s3 and swift based >> APIs use the new strategy instead of the old one. Any pointers are >> more than welcome! :)
Hi Andrew, we're trying to create a strategy that does not assume it can know the size of the blob in advance, nor assume it can close/seek on the InputStream before reading everything until read() returns -1. Thanks, Nikola
