-
-
Notifications
You must be signed in to change notification settings - Fork 265
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
Batch processing #518
Comments
Hi Did you try the high level consumer + RdKafka\ConsumerTopic::consumeBatch ? |
Hi, Thanks for update.Using below configuration for consuming the messages. But getting single message.
Also if we are using multiple consumer to consume the messages. We are passing all the partition to both the worker, then both the worker are consuming the same data.Do we any any process to check if one consumer partition is running then we can block it running from another consumer? |
|
@arnaud-lb if you want to explore if this could be implemented, there is an approach mentioned here, but i think doing this in userland should just be fine 😃 |
Hi, We are using low-level consumer for batch processing. Can we identify if any consumer is running which is consuming the messages from that partition? Basically in case of multiple consumer need to divide the load on both the consumer and If we are running multiple consumer and reading the data from same topic and partition in low level consumer then there is data redundancy. Need to avoid that. |
Description
Need to consume messages in batches with auto re balancing
The text was updated successfully, but these errors were encountered: