Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.13.1
-
None
-
Novice
Description
There is a bug the method "initialize" in "MongoDbTailTrackingManager.java":
...
if (trackingObj == null)
...
If no tail tracking object exists in the database, a new one will be inserted (that's okay), but the query "dbCol.findOne()" fetches ANY tail tracking object from the database (and not the one we've just inserted).
In my oppinition, this is a bug and should be corrected like this:
...
DBObject filter = new BasicDBObject("persistentId", config.persistentId);
trackingObj = dbCol.findOne(filter);
if (trackingObj == null)
(not tested).
A workaround can be implemented by putting each persistent tail tracker in it's own collection, so I marked this issue as "minor".
More details: http://camel.465427.n5.nabble.com/MongoDB-Persistent-tail-tracking-with-concurrent-tailable-consumers-td5759131.html
Best regards,
Joerg Peschke