-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Max upload size is 5GB #165
Labels
Comments
manifest.add_url(url) workaround something like
|
Maybe use the multi-part upload functions from https://github.com/requests/toolbelt |
This is still the limit FYI. Will get an error like this
Look into ways to intercept this with a useful error message. |
The current workaround is to send manifests with URLs to the files. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We currently upload files directly to AWS. Incorporate multi-part uploads to upload directly, or add easier way to include download URLs in a manifest (
manifest.add_url('https//..')
)from AWS docs
http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingRESTAPImpUpload.html
The largest object that can be uploaded in a single PUT is 5 gigabytes.
https://aws.amazon.com/s3/faqs/ (from AWS)
The text was updated successfully, but these errors were encountered: