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
  • 179,855
  • 19
  • 132
  • 245
ytw
  • 1,335
  • 2
  • 20
  • 42

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,897
  • 22
  • 35