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
Consumer group.id should not be set by default.
When you launch a scenario a first with a consumer group set via group.id Kafka will register the offset read by this consumer group.
If you launch the same scenario some times later, Kafka will send you all the messages sent between the two launch of the scenario.
This is usually not what to do for a end to end test perspective when you're only interested on the messages send during your scenario.
So I propose to not set consumer group.id by default.
The text was updated successfully, but these errors were encountered:
In fact, you must se group.id to avoid commiting offset on a topic enable.auto.commit should be set to false by default.
This will allow to have idempotent scenario.
Consumer group.id should not be set by default.
When you launch a scenario a first with a consumer group set via group.id Kafka will register the offset read by this consumer group.
If you launch the same scenario some times later, Kafka will send you all the messages sent between the two launch of the scenario.
This is usually not what to do for a end to end test perspective when you're only interested on the messages send during your scenario.
So I propose to not set consumer group.id by default.
Consumer
group.id
should not be set by default.When you launch a scenario a first with a consumer group set via
group.id
Kafka will register the offset read by this consumer group.If you launch the same scenario some times later, Kafka will send you all the messages sent between the two launch of the scenario.
This is usually not what to do for a end to end test perspective when you're only interested on the messages send during your scenario.
So I propose to not set consumer
group.id
by default.The text was updated successfully, but these errors were encountered: