Mirror of Apache Kafka
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Federico Valeri 111df859f0
MINOR: Add comment to onPartitionsLost override (#14121)
1 year ago
..
bin KAFKA-9922: Update demo instructions in examples README (#8559) 4 years ago
src/main/java/kafka/examples MINOR: Add comment to onPartitionsLost override (#14121) 1 year ago
README.md KAFKA-14752: Kafka examples improvements - demo changes (#13517) 1 year ago

README.md

Kafka client examples

This module contains some Kafka client examples.

  1. Start a Kafka 2.5+ local cluster with a plain listener configured on port 9092.
  2. Run examples/bin/java-producer-consumer-demo.sh 10000 to asynchronously send 10k records to topic1 and consume them.
  3. Run examples/bin/java-producer-consumer-demo.sh 10000 sync to synchronous send 10k records to topic1 and consume them.
  4. Run examples/bin/exactly-once-demo.sh 6 3 10000 to create input-topic and output-topic with 6 partitions each, start 3 transactional application instances and process 10k records.