-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
Hey, why is "auto.offset.reset" hardly set's to earliest? Can it be configured to latest?
I don't wanna get all topics messages on attaching new consumer group.
CAP/src/DotNetCore.CAP.Kafka/KafkaConsumerClient.cs
Lines 109 to 117 in 641d4ac
| var config = new ConsumerConfig(new Dictionary<string, string>(_kafkaOptions.MainConfig)) | |
| { | |
| BootstrapServers = _kafkaOptions.Servers, | |
| GroupId = _groupId, | |
| AutoOffsetReset = AutoOffsetReset.Earliest, | |
| AllowAutoCreateTopics = true, | |
| EnableAutoCommit = false, | |
| LogConnectionClose = false | |
| }; |
Reactions are currently unavailable