About 8,820 results
Open links in new tab
  1. Quickstart - Apache Kafka

    The Kafka Streams demo and the app development tutorial demonstrate how to code and run such a streaming application from start to finish. Step 8: Terminate the Kafka environment Now that you …

  2. Quick Start | Apache Kafka

    4 days ago · This tutorial assumes you are starting fresh and have no existing Kafka or ZooKeeper data. Since Kafka console scripts are different for Unix-based and Windows platforms, on Windows …

  3. Apache Kafka Quickstart

    .flatMapValues(line -> Arrays.asList(line.toLowerCase().split(" "))) .groupBy((keyIgnored, word) -> word) .count(); wordCounts.toStream().to("output-topic", Produced.with(Serdes.String(), Serdes.Long())); …

  4. Quick Start | Apache Kafka

    Aug 21, 2025 · The Kafka Streams demo and the app development tutorial demonstrate how to code and run such a streaming application from start to finish. Step 8: Terminate the Kafka environment …

  5. Apache Kafka

    Introduction Apache Kafka® is a distributed streaming platform. What exactly does that mean? A streaming platform has three key capabilities: Pub/Sub Publish and subscribe to streams of records, …

  6. Quick Start - Apache Kafka

    4 days ago · This tutorial assumes you are starting fresh and have no existing Kafka or ZooKeeper data. However, if you have already started Kafka and ZooKeeper, feel free to skip the first two steps.

  7. Quick Start - kafka.apache.org

    Step 1: Download the code Download the 0.8 release. **> tar xzf kafka-<VERSION>.tgz** **> cd kafka-<VERSION>** **> ./sbt update** **> ./sbt package** **> ./sbt assembly-package-dependency** This …

  8. Apache Kafka

    This tutorial assumes you are starting fresh and have no existing Kafka data. However, if you have already started Kafka, feel free to skip the first two steps.

  9. Write a streams app - Apache Kafka

    Tutorial: Write a Kafka Streams Application In this guide we will start from scratch on setting up your own project to write a stream processing application using Kafka Streams.

  10. Quick Start | Apache Kafka

    Nov 7, 2025 · Run Kafka Streams Demo Application This tutorial assumes you are starting fresh and have no existing Kafka or ZooKeeper data. However, if you have already started Kafka, feel free to …