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.
我有一个现有的 MongoDB 转储,我想挑选一些数据到一个干净的数据库。
转储单个集合并恢复它们(mongodump 和 mongorestore)是这样做的方式吗?
您可以使用 上的--filter '<JSON>'选项来实现这一点mongorestore。
--filter '<JSON>'
mongorestore
这就像 的第一个参数db.find()。
db.find()
如果您只想按集合过滤--collection <collection>
--collection <collection>
在文档中查看更多信息