This message was deleted.
# troubleshooting
s
This message was deleted.
s
Hi @swetha, Druid doesn't require a consumer group to maintain its place in each partition, it has its own logic for checkpointing. You can still specify a kafka consumer group in the
consumerProperties
inside the
ioConfig
of your supervisor spec, like this:
Copy code
"ioConfig": {
    "type": "kafka",
    "consumerProperties": {
      "bootstrap.servers": "my-kafka-broker:9092",
      "group.id": "my-consumer-group-id"
    },
    "topic": "my-kafka-topic"
More info here and here.
s
Thanks a lot @Sergio Ferragut