4

I know that Google Cloud storage has 4 options of storage and each options has a different of "Minimum storage duration"

https://cloud.google.com/storage/docs/lifecycle?hl=vi

Standard Storage: None

Nearline Storage: 30 days

Coldline Storage: 90 days

Archive Storage: 365 days

What is the meaning of "Minimum storage duration"?

I guess that, "Minimum storage duration" is the time that your data has been keep in Google Cloud storage.

Is it the period after which your data will automatically be deleted if not used?

Such as:

  • I use options Nearline Storage: 30 days to store my data.
  • If within 30 days I don't use this data. It will be delete
  • If I use this data frequently. It will be stored until I delete my bucket.

Is my guess right?

If wrong: please tell me the right thing.

4

1 回答 1

8

为了理解最小存储持续时间,有必要先了解存储类的概念。

什么是存储类

对象或存储桶的存储类别会影响对象/存储桶的可用性和定价。

根据一个人的用例以及访问存储桶中数据的频率,他可以选择可用的存储类之一:

Standard Storage用于频繁访问和/或仅在短时间内存储的数据。

Nearline Storage是访问不经常数据的低成本选项。它提供较低的静态成本以换取较低的可用性、30 天的最短存储期限和数据访问成本。建议用于平均每月访问一次数据的用例。

Coldline Storage与 Nearline 类似,但再次提供更低的静态成本以换取更低的可用性、90 天的最短存储期限和更高的数据访问成本。

Archive Storage是用于数据归档、在线备份和灾难恢复的成本最低、高度耐用的存储服务。没有可用性 SLA,尽管典型的可用性与 Nearline Storage 和 Coldline Storage 相当。存档存储还具有更高的数据访问和操作成本,以及 365 天的最短存储期限。

您可以在存储类文档中找到详细信息。

那么最短存储时间是多少?

最短存储持续时间适用于使用上述存储类别之一存储的数据。您可以在文件存储此期限之前将其删除,但在删除时,您需要按文件存储最短期限付费。

请注意,最小存储持续时间与自动删除对象无关。

如果您想根据对象的条件删除对象Age,那么您可以为目标对象设置对象生命周期策略。您可以在此处找到有关如何删除超过 30 天的对象的实时版本的示例。


于 2020-10-20T10:44:02.733 回答