-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rework Eventing System #44
Comments
For 5: maybe some form of counter that decreases with each consumed event (only relevant ones ofc)? |
Maybe some type of semaphore? Not sure if this is applicable, but using each individual event as a condition this might work. |
Actually: Kafka Streams Edit: nvm, deosnt seem to solve our problem. This might be because the problem itself goes against kafka philosophy |
Yup, Kafka does not guarantee event order across multiple topics by design ¯\(ツ)/¯ |
Currently we consume all events instantly, maybe delay them to try to get the order right. This is ugly and hacky.
Possible Solution:
The text was updated successfully, but these errors were encountered: