Reputation: 362
I am trying to read around 1.5GB size from s3 using ruby sdk for aws. S3 gem is - gem 'aws-sdk' ( https://github.com/aws/aws-sdk-ruby )
most_recent_s3_object = s3_resource.bucket(bucket_name).objects.max_by(&:last_modified)
Here most_recent_s3_object class is Aws::S3::ObjectSummary
When I do most_recent_s3_object.get
I get broken pipe error.
Is there a way around to get this file in a whole for this size?
Upvotes: 0
Views: 230