Mongo DB Java驱动程序游标不包含完整的Collection

时间:2017-01-04 00:38:49

标签: java mongodb mongodb-java

我目前有一个光标通过MongoDB Collection,并取出几个不同的值并将它们添加到另一个表中。但是我注意到,当进程运行时,光标不会覆盖集合中的所有文档(通过添加计数器找到)。

Beacon Lookup Collection有3342个文档,但是从日志记录中我只能看到它通过1114个迭代完成并且没有错误地完成游标。在调试时看光标确实包含所有3343个文档。

以下是我尝试运行的方法,目前遇到以下问题:

public void flattenCollection(){

        MongoCollection<Document> beaconLookup = getCollection("BEACON_LOOKUP");
        MongoCollection<Document> triggers = getCollection("DIM_TRIGGER");

        System.out.println(beaconLookup.count());
        // count = 3342
        long count = beaconLookup.count();

        MongoCursor<Document> beaconLookupCursor = beaconLookup.find().batchSize((int) count).noCursorTimeout(true).iterator();
        MongoCursor<Document> triggersCursor = triggers.find().iterator();
        try {
            while (beaconLookupCursor.hasNext()) {
                int major = (Integer) beaconLookupCursor.next().get("MAJOR");
                int minor = (Integer) beaconLookupCursor.next().get("MINOR");
                if(major==1215) {
                    System.out.println("MAJOR " + major + " MINOR " + minor);
                }

                triggers.updateMany(and(eq("MAJOR", major),
                                        eq("MINOR", minor)),
                        combine(set("BEACON_UUID",beaconLookupCursor.next().get("UUID"))));
                count = count - 1;
                System.out.println(count);

            }
        } finally {
            beaconLookupCursor.close();
        }
    }

任何建议都会很棒!

1 个答案:

答案 0 :(得分:2)

每次迭代都会多次调用next()

更改

int major = (Integer) beaconLookupCursor.next().get("MAJOR");
int minor = (Integer) beaconLookupCursor.next().get("MINOR");

Document doc = beaconLookupCursor.next();
int major = (Integer) doc.get("MAJOR");
int minor = (Integer) doc.get("MINOR");

看起来还有一个UUID的调用。也可以使用doc参考更新。