notes

Mongo Dump Restore

Dump to archive

mongodump --gzip --archive=/path/to/archive.tgz --db=DbName --collection=CollectionName

Restore from archive

mongorestore --gzip --archive=/path/to/archive.tgz --db=DbName --collection=CollectionName