-
-
Notifications
You must be signed in to change notification settings - Fork 867
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
Upload files > 5 gb with S3BotoStorage class? #194
Comments
@pacahon : Sorry for the latency, I must look deeper before help you |
@ZuluPro I hope that the answer boto/boto3#789 |
@pacahon I think we're going to remove boto3 from django-storages. |
@ZuluPro Boto3, the next version of Boto, is now stable and recommended for general use. Maybe remove boto? :) |
@ZuluPro once again, as Boto maintainers themselves say, Boto is effectively deprecated for Boto 3. http://boto.readthedocs.io/en/latest/ says this multiple times on the page: "Note Boto3, the next version of Boto, is now stable and recommended for general use. It can be used side-by-side with Boto in the same project, so it is easy to start using Boto3 in your existing projects as well as new projects. Going forward, API updates and all new feature work will be focused on Boto3." Notice the last sentence. Boto 2 is effectively dead. Removing Boto3 support in favor of something that has been stated by the maintainers to be dead is not the wisest move. |
We are definitely going to keep both. Boto3 is the future but tons and tons of projects rely on the old Boto backend. I'm just going to WONT-FIX boto issues that are pains in the future and point them at Boto3. |
* Add support for files > 5 gb with S3BotoStorage Fixes #194 * Fix tests
* Add support for files > 5 gb with S3BotoStorage Fixes jschneier/django-storages#194 * Fix tests
* Add support for files > 5 gb with S3BotoStorage Fixes jschneier/django-storages#194 * Fix tests
Hello. Is it possible to upload files > 5gb (and less < 50 gb) to s3 storage in multipart mode? I can see something related in
S3BotoStorageFile
class, but looks like it's not used in_save
method, onlyset_contents_from_file
which try to upload the whole file as I guess.The text was updated successfully, but these errors were encountered: