MongoDB C#驱动程序可以在oplog.rs上使用游标

时间:2013-03-06 20:01:15

标签: mongodb mongodb-.net-driver

我正在尝试使用类似于Java Here中实现的MongoDB C#驱动程序编写一个oplog观察程序。

到目前为止,我已经设法写了:

public static void Read()
{
    const string connectionString = "mongodb://127.0.0.1:27017,127.0.0.1:27018/?replicaSet=rs0";
    MongoClient mongoClient = new MongoClient(connectionString);

    MongoDatabase local = mongoClient.GetServer().GetDatabase("local");
    MongoCollection opLog = local.GetCollection("oplog.$main");
    BsonValue lastId = BsonMinKey.Value;
    while (true)
    {
        var query = Query.GT("_id", lastId);
        var cursor = opLog.FindAs<BsonDocument>(query)
                    .SetFlags(
                        QueryFlags.AwaitData |
                        QueryFlags.TailableCursor |
                        QueryFlags.NoCursorTimeout)
                    .SetSortOrder(SortBy.Ascending("$natural"));
        using (var enumerator = (MongoCursorEnumerator<BsonDocument>)cursor.GetEnumerator())
        {
            while (true)
            {
            // I get a "tailable cursor requested on non capped collection" Exception
                if (enumerator.MoveNext())
                {
                    var document = enumerator.Current;
                    lastId = document["_id"];
                }
                else
                {
                    if (enumerator.IsDead)
                    {
                        break;
                    }
                    if (!enumerator.IsServerAwaitCapable)
                    {
                        Thread.Sleep(TimeSpan.FromMilliseconds(100));
                    }
                }
            }
        }
    }
}

我已经在服务器上创建了oplog,并使用找到的here指令从mongo命令行成功查询了它,但是我无法弄清楚为什么异常表明它没有上限。

1 个答案:

答案 0 :(得分:1)

如果您正在使用并设置了replicaset,则您有一个oplog。

要查询oplog,您可以像使用数据库“本地”一样使用。

然后改变

local.GetCollection("oplog.$main");

local.GetCollection("oplog.rs");