gravity9-tech / mongo-cse

Mongo Change Stream Enhancer divides Change Stream events into partitions and enables you to handle them in separate Threads, increasing throughput. It achieves that by creating a Change Stream per each partition (number is configurable) and handling each Change Stream in a dedicated Thread.
3 stars 1 forks source link

Manual changes in DB are not reflected in logs #65

Open kkujaw opened 4 weeks ago

kkujaw commented 4 weeks ago

Case:

  1. Start a new Manager - configuration created
  2. Change the value of the resume token manually in DB
  3. Restart the manager and try to do some CRUD action to trigger the event

Expected: Some information, that the existing token is invalid, does not exist, etc.

Currently: Info about missing that the token is invalid/does not exist. It's automatically re-created.

image