bluelabsio / s3-stream

Akka Streaming Client for S3 and Supporting Libraries
Other
16 stars 6 forks source link

Multipart download #17

Open filosganga opened 7 years ago

filosganga commented 7 years ago

It is possible to implement a multipart download in S3 by making a set of GET requests with the Range header, to fetch part of the object.

A preliminary HEAD request will fetch the object full length, and then a set of ranged GET requests are issued accordingly.

I have already implemented a working prototype. But I am blocked by the akka/akka-http#377 issue.