是否可以降低 Mongo 中的最大文档大小或以其他方式限制更新时的文档大小?
我想强制执行小于系统实际支持的最大文档大小。在插入上这样做是合理的——我可以在插入之前检查。在更新时这样做还不太清楚。我不想读回整个文档来检查更新是否没有使其尺寸过大。我应该怎么办?我可以降低最大文档大小,以便在更新时引发异常吗?
I want to enforce a maximum document size that is lower than the system actually supports. Doing so on an insert is reasonable -- I can just check before insertion. Doing so on an update is less clear. I don't want to have to read back the entire document to check that the update didn't balloon it over the size. What should I do? Can I lower the max document size so that it throws an exception upon update?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,是的,您可以降低文档大小限制。这涉及更改源代码中的一个常量并重新编译 mongo。
您最好不要针对旧数据库运行此重新编译的服务器。我不知道如果发现文档大于新的大小限制会发生什么。
Actually, yes, you can lower the document size limit. This involves changing one constant in source code and recompiling mongo.
You better not run this recompiled server against old database. I don't know what'll happen if it finds a document larger than new size limit.
我不相信有一种方法可以在 mongo 中自定义设置最大文档大小。你不必太担心这一点。目前最大文档大小为 16 MB.. 它有很多文本。
您能否指定一个用例,为什么您认为您的文档大小可能会超出默认限制。如果你发现了这种情况,最好重构你的数据模型。这是唯一的方法。
I dont believe there is a way to custom set your max doc size in mongo. You dont have to worry about that too much. currently the max document size is 16 MB.. Its a lotttt of text.
Can you specify a use case why do you think that your doc size may exceed the default limit. if you found the case, its better to restructure your data model. thats the only way.