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
Some users set auto.offset.reset = none when they migrate their consumer to Decaton from other framework (which likely includes a lot of code changes), to make sure group.id is configured correctly so can continue consumption from committed offset.
So they tried to detect the group.id-mistake by checking the subscription transitioned to RUNNING or not. (auto.offset.reset = none throws an exception when starts up if group.id doesn't exist, so they assumed the subscription doesn't transition to RUNNING if group.id is not configured properly)
But, in fact, subscription transitions to RUNNING even if there's a mistake in group.id. (and transition to SHUTTING_DOWN -> TERMINATED soon)
The text was updated successfully, but these errors were encountered:
Summary
poll()
after transitioned to RUNNINGExample
auto.offset.reset = none
when they migrate their consumer to Decaton from other framework (which likely includes a lot of code changes), to make suregroup.id
is configured correctly so can continue consumption from committed offset.group.id
-mistake by checking the subscription transitioned to RUNNING or not. (auto.offset.reset = none
throws an exception when starts up if group.id doesn't exist, so they assumed the subscription doesn't transition to RUNNING if group.id is not configured properly)SHUTTING_DOWN -> TERMINATED
soon)The text was updated successfully, but these errors were encountered: