-
Notifications
You must be signed in to change notification settings - Fork 139
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
With KEY ordering, option to combine queues from different partitions or topics #314
Comments
We are looking at similar use case where we have multiple topics (for prioritization and fairness usecases) and we wanted key grouping across all topics related to a microservice (wildcard topic or list of topics specified). I suppose the current key grouping is supported to work for messages for a given key at a single partition level - is this assumption correct? I see the PR is closed as stale but did not have much comments if had any other issues. Any updates on the feasibility of this feature request? |
Any plans to implement this i the near future? :-) |
Not really - it would be quite niche feature with a lot of caveats - main one - there is really no easy and bulletproof way to guarantee deterministic ordering of messages with same key when consumed from different topics across rebalances, subscription changes - even poll batching / sizing may play a role in how messages are read from the topics and ultimately sequenced. |
In key mode, if records of a given key exist in
If combined, option to choose how records are ordered relatively - e.g. via time stamp extractor, offset or publish time stamp.
Related:
The text was updated successfully, but these errors were encountered: