I have an existing MongoDB dump and I would like to cherry pick some of the data to a clean DB.

Is dumping a single collection and restoring them (mongodump & mongorestore) the way to do this?

有帮助吗?

解决方案

You can to this by using the --filter '<JSON>' option on mongorestore.

That's like the first argument of db.find().

If you just want to filter by collection --collection <collection>

See more info in the doc

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top