I have created a topic that has many partitions. Using the console producer I want to send messages to particular partitions and view the through the console consumer. On the console producer I have tried this,
kafka-console-producer.bat --broker-list localhost:9092 --topic sample --property parse.key=true --property key.separator=,
Send messages as,
key1,another-message
But I am just confused on whether key1 represents partition number.
Using the console consumer I viewed the messages,
kafka-console-consumer.bat --zookeeper localhost:2181 --topic sample
I want to view the messages according to the partitions. Is this the right way to view the messages on the console consumer? Can anyone please provide a clear understanding on this?