4

capped我想在我的 Mongo 数据库上的集合(用作日志表)上创建一种“仪表板” 。这就是我创建集合的方式:

db.createCollection( "messages", { capped: true, size: 100000 } );

collection.find()用选项tailable:true、、awaitdata:truenumberOfRetries:-1(无限重试)做一个 , 。

令我困惑的是,我希望 find().each() 循环等待新数据(消息)......相反(几秒钟后)它会出错(带有No more documents in tailed cursor...... :-()

这是我正在使用的代码:

var mongo = require('mongodb');  
mongo.MongoClient.connect('mongodb://127.0.0.1/myDb', function (err, db) {
  db.collection('messages', function(err, collection) {
    if (err) {
      return console.error('error in status collection:', err);
    }
    collection.find( // open tailable cursor
      {},
      { tailable: true, awaitdata: true, numberOfRetries: -1 }
    ).each(function(err, doc) {
      if (err) {
        if (err.message === 'No more documents in tailed cursor') {
          console.log('finished!');
        } else {
          console.error('error in messages collection:', err);
        }
      } else {
        if (doc) {
          console.log('message:', doc.message);
        }
      }
    })
  });
});

我想念什么?

更新

直到现在还没有收到任何确凿的答案,我推断MongoDb tailable collections还没有准备好迎接黄金时段...... :-(((

可悲的是放弃了更经典和更强大的 fs 日志记录解决方案......

4

2 回答 2

2

您可以设置订阅者功能,使用可尾find()游标作为node.js 流订阅新的 MongoDB 文档。下面演示了这一点:

// subscriber function
var subscribe = function(){

    var args = [].slice.call(arguments);
    var next = args.pop();
    var filter = args.shift() || {};

    if('function' !== typeof next) throw('Callback function not defined');

    var mongo = require('mongodb');  
    mongo.MongoClient.connect('mongodb://127.0.0.1/myDb', function(err, db){

        db.collection('messages', function(err, collection) {           
            var seekCursor = collection.find(filter).sort({$natural: -1}).limit(1);
            seekCursor.nextObject(function(err, latest) {
                if (latest) {
                    filter._id = { $gt: latest._id }
                }           

                var cursorOptions = {
                    tailable: true,
                    awaitdata: true,
                    numberOfRetries: -1
                };

                var stream = collection.find(filter, cursorOptions).sort({$natural: -1}).stream();
                stream.on('data', next);
            });
        });
    });

};

// subscribe to new messages
subscribe( function(document) {
    console.log(document);  
});

来源如何使用可尾游标在 Node.js 中订阅新的 MongoDB 文档

于 2015-10-12T13:23:23.200 回答
0

也许有人也在寻找一个裸 mongo-terminal 解决方案(我的意思是,没有现场收听任何编程语言)。如果您只想查看一次收集结束,请考虑使用此

db.oplog.rs.find().sort({$natural: -1})

希望我帮助了某人:)

于 2021-05-20T18:27:24.653 回答