更新 $unset 命令会耗尽大型集合上的所有内存
使用 MongoDB,我尝试从包含约 300 万条记录的集合中删除一列。
db.Listing.update( {}, { $unset: { Longitude: 1 } }, false, true);
当我执行此命令时,服务器上的 RAM 会继续上升,直到耗尽 RAM,然后服务器会被冲洗并需要物理重新启动。有没有更好的方法从大型集合中删除不会对服务器造成影响的列?
Using MongoDB, I'm trying to remove a column from a collection that contains ~3 million records.
db.Listing.update( {}, { $unset: { Longitude: 1 } }, false, true);
When I execute this command, the RAM on the server continues to go up until it runs out of RAM and then the server is hosed and needs to be physically rebooted. Is there a better way to remove a column from a large collection that won't hose the server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我预计您的问题是系统 OOM 杀手。您应该确保没有限制 mongod 的资源。请参阅:http://www.mongodb.org/display/DOCS/检查+服务器+内存+使用情况
http://prefetch.net/blog/index.php/2009/09/30/how-the-linux-oom-killer-works/
如果您使用的是 virt。像 openvz 这样的系统,您可能想要停止,或调整过度提交功能。
I expect your problem is the system OOM killer. You should make sure you aren't limiting the resources for mongod. See this: http://www.mongodb.org/display/DOCS/Checking+Server+Memory+Usage
http://prefetch.net/blog/index.php/2009/09/30/how-the-linux-oom-killer-works/
If you are using a virt. system like openvz you might want to stop , or adjust the over-committing feature.