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
Currently we are limited to only receiving Rebalance enum on ConsumerContext which limits us from doing any offset manipulations (like committing offsets on partition that is about to be revoked) as it has no access to consumer:
Currently we are limited to only receiving
Rebalance
enum onConsumerContext
which limits us from doing any offset manipulations (like committing offsets on partition that is about to be revoked) as it has no access toconsumer
:This is rather limiting if we want to commit processed offsets during rebalance. Java API provides access to consumer and so does C++.
If we try to override the
rebalance
we still can't accessNativeClient
as it is private.Can we also have access to consumer in
pre_rebalance
andpost_rebalance
?The text was updated successfully, but these errors were encountered: