英文:
How to setup dynamic resizing on my existing documentdb cluster?
问题
我在AWS上有一个现有的DocumentDB集群,我注意到当我从一个集合中删除了700万个文档时,通过stats()
报告的storageSize
保持不变。我以为动态调整大小现在是标准的,但在我的实例上似乎不起作用。
我在AWS DocumentDB的文档中搜索,但找不到有关动态调整大小的信息。
我如何获取有关动态调整大小的更多信息?
英文:
I have an existing DocumentDB cluster on AWS and I notice that when I deleted 7 million documents from a collection that the 'storageSize
' reported by 'stats()
' remained the same. I thought that dynamic resizing is now standard, but it doesn't appear to be working on my instance.
I searched AWS DocumentDB documentation but can not find anything about dynamic resizing.
How do I get more information about dynamic resizing?
答案1
得分: 1
存储大小在删除命名空间,即数据库、集合或索引时会减小。删除单个文档时,存储使用量不会减少。动态调整大小适用于 DocumentDB 版本 4.0 和 5.0,不适用于 3.6 版本。
英文:
Storage size is reduced when you drop namespaces, i.e. databases, collections or indexes. Storage use does not decrease when deleting individual documents. Dynamic resizing works for DocumentDB versions 4.0 and 5.0, not for 3.6.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论