我正在使用MubSub允许用户订阅某个查询并在它们可用时立即获得推送更新。该库使用上限集合来获取可尾游标。我遇到的问题是,当我只有一个可尾光标时,一切都很好。获取光标大约需要几毫秒。但随着我添加更多订阅(从而打开更多游标),接收游标有时可能需要长达 8 秒。我试过添加索引,但这根本没有帮助。
以下是我收藏的统计数据:
{
"ns" : "mDB.myCollection",
"count" : 395669,
"size" : 325551880,
"avgObjSize" : 822.7884418541761,
"storageSize" : 1000001536,
"numExtents" : 1,
"nindexes" : 3,
"lastExtentSize" : 1000001536,
"paddingFactor" : 1,
"flags" : 1,
"totalIndexSize" : 81678240,
"indexSizes" : {
"subscriptionIndex" : 32704000,
"_id_" : 11593568,
"subscriptionQueryAsc" : 37380672
},
"capped" : 1,
"max" : 2147483647,
"ok" : 1
}
这是一段执行时间过长的代码:
this.collection.then(handle(true, function(collection) {
var latest = null;
// The next statement takes a few ms for the first cursor,
// then 5+ seconds for more cursors
collection.find({}).sort({ $natural: -1 }).limit(1).nextObject(handle(function(doc) {
if (doc) latest = doc._id;
(function poll() {
if (latest) query._id = { $gt: latest };
var options = { tailable: true, awaitdata: true, numberOfRetries: -1 };
var cursor = collection.find(query, options).sort({ $natural: 1 });
(function more() {
cursor.nextObject(handle(function(doc) {
if (!doc) return setTimeout(poll, self.wait);
callback(doc);
latest = doc._id;
more();
}));
})();
})();
}));
}));
这是一个已知问题,还是我只是做错了什么?