版本控制的 S3 存储桶可以存储的文件版本数量是否有限制

Is there a limit on the number of versions of a file, that a versioned S3 bucket can store

我们正在为我们的用例使用版本化的 s3 存储桶。

我们会经常更新同一个文件。

我想知道 s3 存储桶可以处理同一个文件的多少个版本。

我想知道如果版本化 s3 可以处理的最大文件数存在限制,是否会删除最旧的版本。

不同版本没有容易达到的限制,但您需要为每个存储的版本付费。

https://aws.amazon.com/blogs/aws/amazon-s3-enhancement-versioning/

Normal S3 pricing applies to each version of an object. You can store any number of versions of the same object, so you may want to implement some expiration and deletion logic if you plan to make use of this feature.

所以如果你要经常更新文件,你应该考虑提前设置一些S3生命周期。

https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html