19

从 node.js 以编程方式执行 mongodb admin/console 命令的最佳方法是什么?具体来说,我想在执行一系列插入后使用 mongodump 导出一个 mongodb 集合。像这样的东西:

// requires and initializing stuff left out for brevity
db.open(function(err, db) {
    if(!err) {
        db.collection('test', function(err, collection) {
            var docs = [{'hello':'doc1'}, {'hello':'doc2'}, {'hello':'doc3'}];

            collection.insert(docs, {safe:true}, function(err, result) {

                // Execute mongodump in this callback???

            });
        });
    }
});
4

2 回答 2

22

尝试使用child_process.spawn(command, args)

var spawn = require('child_process').spawn;

// ...
  collection.insert(docs, {safe:true}, function(err, result) {
    var args = ['--db', 'mydb', '--collection', 'test']
      , mongodump = spawn('/usr/local/bin/mongodump', args);
    mongodump.stdout.on('data', function (data) {
      console.log('stdout: ' + data);
    });
    mongodump.stderr.on('data', function (data) {
      console.log('stderr: ' + data);
    });
    mongodump.on('exit', function (code) {
      console.log('mongodump exited with code ' + code);
    });
  });
// ...
于 2012-04-18T13:56:42.730 回答
1

不同的年份,不同的答案。

您可以使用Shelljs 之类的东西exec mongodump或 UNIX shell 提供的任何其他命令。

于 2014-09-11T11:06:44.617 回答