Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Mongo 中的 copyDatabase 将 1 亿条记录(约 97G)数据复制到另一台服务器。两台服务器都有超过 500G 的磁盘空间。但是,我注意到虽然该过程仍在运行,但不再添加实际文件。停在 xxxxx.11 有什么想法吗?
复制数据库将移动集合数据,然后为每个集合建立索引。在 100GB 数据集上构建索引可能会花费大量时间(尤其是使用少量 RAM)。您可能正处于大型索引构建的中间。
您可以通过查看日志并db.currentOp()在目标数据库上的 shell 中运行来检查进度。
db.currentOp()