Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个应用程序,我需要压缩托管在 S3 上的文件夹。压缩过程将从模型保存方法触发。Django 应用程序在 EC2 实例上运行。有任何想法或线索吗?
我尝试了 django_storages 但没有取得突破
据我了解,您不能直接在 s3 上压缩文件。您必须下载要压缩的文件,将它们压缩,然后上传压缩文件。我之前做过类似的事情,并使用 s3cmd 来保存我的 s3bucket 的本地同步副本,并且由于您使用的是 ec2 实例,因此网络速度和延迟会非常好。