You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that a TailableIterator that is kept alive for longer than the default MongoDB cursor timeout of 10 minutes, will be garbage collected in the MongoDB server. See https://jira.mongodb.org/browse/SERVER-12200
One case this will happen is if some service is listening to processed, failed or discarded documents in the oldDocuments collection.
Some solutions:
Set the MongoDB option NOTIMEOUT on the tailable cursor
It seems that a TailableIterator that is kept alive for longer than the default MongoDB cursor timeout of 10 minutes, will be garbage collected in the MongoDB server. See https://jira.mongodb.org/browse/SERVER-12200
One case this will happen is if some service is listening to processed, failed or discarded documents in the
oldDocuments
collection.Some solutions:
NOTIMEOUT
on the tailable cursorRelated issue concerning tailable and awaitdata: https://jira.mongodb.org/browse/JAVA-1091
The text was updated successfully, but these errors were encountered: