Confluent 4.1

Debian stretch 9

This quick start demonstrates how to get up and running with Confluent Platform Open Source and its main components. It demonstrates the basic and most powerful capabilities, including creating topics, adding and modifying data, and stream processing by using KSQL. In this quick start you will create Kafka topics and streaming queries on these topics by using KSQL.

Step 1: Download and Install

$ wget -qO - https://packages.confluent.io/deb/4.1/archive.key | sudo apt-key add - $ sudo apt-get install software-properties-common $ sudo add-apt-repository “deb [arch=amd64] https://packages.confluent.io/deb/4.1 stable main” $ sudo apt-get install apt-transport-https $ sudo apt-get update && sudo apt-get install confluent-platform-oss-2.11 $ sudo apt-get install default-jdk $ cd /usr $ bin/confluent start

Using CONFLUENT_CURRENT: /tmp/confluent.AeiFHVzL Starting zookeeper zookeeper is [UP] Starting kafka kafka is [UP] Starting schema-registry schema-registry is [UP] Starting kafka-rest kafka-rest is [UP] Starting connect connect is [UP] Starting ksql-server ksql-server is [UP]

Step 2: Create Kafka Topics