CharlesAHunt / scala-kafka

Quick up and running using Scala for Apache Kafka

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scala-kafka

Quick up and running using Scala for Apache Kafka

Use Vagrant to get up and running.

  1. Install Vagrant http://www.vagrantup.com/
  2. Install Virtual Box https://www.virtualbox.org/

In the main kafka folder

  1. vagrant up
  2. ./gradlew test

once this is done

  • Zookeeper will be running 192.168.86.5
  • Broker 1 on 192.168.86.10
  • All the tests in src/test/scala/* should pass

If you want you can login to the machines using vagrant ssh but you don't need to.

You can access the brokers and zookeeper by their IP from your local without having to go into vm.

e.g.

bin/kafka-console-producer.sh --broker-list 192.168.86.10:9092 --topic

bin/kafka-console-consumer.sh --zookeeper 192.168.86.5:2181 --topic --from-beginning

scala-go-kafka

Scala-kafka and Go-kafka working together using Apache Avro and Schema Registry

Install Docker https://docs.docker.com/installation/#installation

In the main scala-kafka folder

  1. ./gradlew scalago jar
  2. ./start-scala-go.sh
  3. ./stop-scala-go.sh

About

Quick up and running using Scala for Apache Kafka

License:Apache License 2.0


Languages

Language:Scala 72.6%Language:Shell 27.4%