You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That is a breaking change, so we could additionally define a download_range fn. But that increases bloat, assuming you'd also want download_range_sync.
It's possible I could do this myself with download_url, but I don't want to create signed urls unnecessarily. I could also inline the implementation and do everything myself, but then why use a library?
The text was updated successfully, but these errors were encountered:
I would like the ability to optionally only download a specific range of an Object. GCS supports this in HTTP downloads with a
Range
header (https://cloud.google.com/storage/docs/xml-api/get-object-download#request_headers), and in their official libraries with ranges as part of the download parameters.As far as interface, it would be nice to have the range as an argument to
ObjectClient::download
. Something like:That is a breaking change, so we could additionally define a
download_range
fn. But that increases bloat, assuming you'd also wantdownload_range_sync
.It's possible I could do this myself with
download_url
, but I don't want to create signed urls unnecessarily. I could also inline the implementation and do everything myself, but then why use a library?The text was updated successfully, but these errors were encountered: