Are there any best practices when the documentDB cluster storage limit is exceeded?

0

I saw the article 'DocumentDB Quotas and Limits' in the official document.

Maximum storage capacity per cluster is 64TB, if exceeded, can the limit of the cluster be expanded?

If I make an additional request, can I increase the storage capacity?

If there is a best practice for managing documentDB with more than 64TB of cluster data, please share it with us.

Thank you.

已提问 2 年前775 查看次数
1 回答
1

You cannot increase storage capacity beyond the documented 64 TiB limit (note this is tebibyte, not terabyte).

As a managed service, DocumentDB automatically scales and handles your storage layer for you; this is part of it's purpose built design and there is no API, SDK, or console command available or needed to interact with the storage layer. Your storage volume is automatically divided into 10 GB segments spread across many disks and is replicated six ways, across three Availability Zones (AZs). This allows DocumentDB to transparently handle the loss of up to two copies of data without affecting write availability and up to three copies without affecting read availability. And since this storage volume is self-healing, data blocks and disks are continuously scanned for errors and repaired automatically.

If you are approaching the 64 TiB limit, consider moving archived, or older, data to another DocumentDB cluster. Alternatively, if you have data retention requirements but are not querying or interacting with these older documents, you could export them to S3, for example, then delete those documents that are no longer needed.

AWS
Cody_A
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则