s3gof3r icon indicating copy to clipboard operation
s3gof3r copied to clipboard

Fast, concurrent, streaming access to Amazon S3, including gof3r, a CLI. http://godoc.org/github.com/rlmcpherson/s3gof3r

Results 53 s3gof3r issues
Sort by recently updated
recently updated
newest added

added support for cn-north-1 region, referring the http://docs.amazonaws.cn/general/latest/gr/rande.html#cnnorth_region .

I've been attempting to fetch the file size (without downloading the contents) of an object using this package, but I don't think it's possible. I've been examining the headers returned...

Hi, I've incorporated your s3gof3r library into my own codebase and it works great. I was wondering if the library includes all of the retry logic and MD5 checksum capabilities...

We use your s3gof3r library where I work for downloading files from S3, and we recently noticed what we thought was a goroutine leak. Our monitoring showed a increase in...

Given a list of prefixes, `ListObjects` goes off in parallel and returns a list of the keys which exist under them. The S3 API supports a few more options, but...

Earlier today we spun up over 100 Amazon EC2 instances to upload a backlog of large files into S3. Because of the volume and size of files, Amazon S3 started...

bug

Hi, I came across this library, as I was looking for something that can upload/download large files to S3. I saw that AWS SDK also has something called s3manager: https://docs.aws.amazon.com/sdk-for-go/api/service/s3/s3manager/...

I tried to stick to the conventions, but there doesn't seem to be another call with a complex return value, so I erred on the side of passing through that...

After https://github.com/rlmcpherson/s3gof3r/pull/74 it should be possible to use non-us-east-1 buckets by identifying with the `AWS_REGION` environment variable. This doesn't work, even though identifying the bucket location via endpoint works correctly....

enhancement