group.id | The name of the Consumer Group. |
enable.auto.commit | Automatically commit offsets; default: true. |
auto.commit.interval.ms | The minimum delay in milliseconds between to commits (requires enable.auto.commit=true ); default: 5000. |
auto.offset.reset | What to do when there is no valid committed offset found; default: latest.(+) |
(+) Possible Values | Description |
earliest | Automatically reset the offset to the earliest offset. |
latest | Automatically reset the offset to the latest offset. |
none | Throw exception to the consumer if no previous offset is found for the consumer's group. |
anything else | Throw exception to the consumer. |