I'm using Confluent Kafka DotNet lib to create and produce to topics:
producer.ProduceAsync(topic, key, message);
When this topic doesn't exist, the topic is automatically created with one partition.
But for testing purposes, I want to be able to create a topic with N partitions programmatically.
I'm unable to find any examples here (branch 0.11.5), how can I create a topic with multiple partitions? https://github.com/confluentinc/confluent-kafka-dotnet