I'm using reactive-kafka (akka kafka streams):
https://doc.akka.io/docs/akka-stream-kafka/current/consumer.html
What is the equivalent of the below code using reactive-kafka?
import org.apache.kafka.clients.consumer.KafkaConsumer
...
val properties = new Properties()
properties.put("bootstrap.servers", "kafka:9092")
val kafkaConsumer = new KafkaConsumer[String, String](properties)
kafkaConsumer.partitionsFor("my-topic")