We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently s3.get_object is freezing and not returning anything because the file is too big, is there a way to go around this?
s3.get_object
Thanks
The text was updated successfully, but these errors were encountered:
You can work around this by making ranged requests to the large object and reassembling the parts.
Here's one example:
client = Aws::S3::Client.new part = "bytes=0-4999" resp = client.get_object(bucket: bucket, key: key, range: part)
This will get 5000 bytes of the object, and you could do this (with larger blocks) sequentially for the full size of the object.
That's the workaround, I'm also working on putting something like this together as an SDK feature that compliments multipart uploads.
Sorry, something went wrong.
@awood45 Thanks a bunch, that makes sense.
Add Feature Request for Multipart Download
ce92fdc
Related to issue #990 and issue #987.
Tag release v2.2.0
c510097
References: #969, #979, #984, #985, #987, #990
awood45
No branches or pull requests
Currently
s3.get_object
is freezing and not returning anything because the file is too big, is there a way to go around this?Thanks
The text was updated successfully, but these errors were encountered: