automq/examples
daniel-y 4596c26983
chore(license): use the apache license for the next major version (#2433)
Signed-off-by: daniel-y <daniel@automq.com>
2025-04-18 16:56:51 +08:00
..
bin
src/main/java/kafka/examples chore(license): use the apache license for the next major version (#2433) 2025-04-18 16:56:51 +08:00
README.md

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.