This POC project is divided into 3 parts and each demonstrate different approach from the simplest one into more advanced one.
Have kafka cluster ready, you can easily get it from docker fast-kafka-dev
$ docker pull landoop/fast-data-devRun and expose it, if you're on Mac you can
$ docker run -d --rm --name kafka \
-p 2181:2181 -p 3030:3030 -p 8081-8083:8081-8083 \
-p 9581-9585:9581-9585 -p 9092:9092 \
-e ADV_HOST=127.0.0.1 \
landoop/fast-data-devMake sure kafka cluster is running properly
$ docker logs kafkaHave redis ready, you can also use docker, get it from official redis
$ docker pull redisRun and expose it, if you're on Mac you can
$ docker run --name redis --rm -p 6379:6379 --ulimit nofile=90000:90000 -d redisAbove you may notice that I set ulimit to something high in order to accomodate load test later on.
Now make sure redis is running properly
$ docker logs redisInstall vegeta
If you're on Mac, you can install Vegeta using the Homebrew package manager on Mac OS X:
$ brew update && brew install vegetaFinally done !
Now you can follow this link to continue on each approach
