I have requirement to create consumer group at run time using Kafka IAdminClient or any other interfaces which Confluent Kafka exposes. I understand that by setting true to allow.auto.create.topics will solve my requirement.
In my case am connecting to Event hub. In Event hub we need to explicitly create a consumer group. If no consumer group is specified while consuming the message it uses the $Default consumer group. If i provide the consumer group which does not exist in event hub then its throws an error.
Can you guys drive me in a right path?