2

Will execute the following kafkacat command with the -o (offset to start consuming from) option but without the -G (group id) option affect other consumer groups?

kafkacat -C -b 10.52.1.1:9092,10.52.1.2:9092,10.52.1.3:9092 -t MyTopic -o beginning
OneCricketeer
  • 126,858
  • 14
  • 92
  • 185
ytw
  • 1,253
  • 2
  • 19
  • 40

1 Answers1

5

No, kafkacat in standalone consumer mode (-C) will not join or affect any consumer group, it is safe to use without interfering with existing consumer groups.

Edenhill
  • 2,298
  • 17
  • 30