英文:
AWS S3 Lifecycle rule not triggered after about 2 weeks
问题
我有一个像这样的S3生命周期规则:
但这个规则不会将任何旧的或新创建的对象移动到"glacier instant retrieval"中。
我听说S3生命周期规则需要几天时间才能触发。但我已经等了大约2周。
为什么我的存储桶中的文件仍然处于"Standard"存储类别?
是否还有其他我应该配置的东西?
英文:
I have an S3 lifecycle rule like this:
But this rule doesn't move any old or newly created objects into "glacier instant retrieval".
I've heard that it takes a few days for a S3 lifecycle rule to trigger. But I've waiting for about 2 weeks.
Why are my files in the bucket still in "Standard" storage class?
Is there anything else that I should configure?
答案1
得分: 0
根据S3生命周期文档,冰川即时检索仅支持大于128 KB的对象。如果您希望,可以手动将对象复制到该层,但它们将按每个对象至少128KB的费用计费,因此对于您的小对象大小,这可能会带来更高的成本。
英文:
Per the S3 Lifecycle documentation, lifecycle on Glacier Instant Retrieval only supports objects larger than 128 KB.
It should be possible to copy the objects manually to that tier if you desire but they will be billed at a minimum of 128KB per object, so for your small object sizes that may be a much larger cost
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论