2017-03-01 15:55:27 +01:00
|
|
|
# /bin/bash
|
|
|
|
|
2017-10-10 12:02:39 +02:00
|
|
|
# Downloads, installs and runs a kafka instance
|
|
|
|
|
2017-03-01 15:55:27 +01:00
|
|
|
set -eu
|
|
|
|
|
|
|
|
# The mirror to download kafka from is picked from the list of mirrors at
|
2017-11-21 13:13:01 +01:00
|
|
|
# https://www.apache.org/dyn/closer.cgi?path=/kafka/0.10.2.0/kafka_2.11-0.11.0.2.tgz
|
2017-03-01 15:55:27 +01:00
|
|
|
# TODO: Check the signature since we are downloading over HTTP.
|
2017-11-21 13:13:01 +01:00
|
|
|
MIRROR=http://apache.mirror.anlx.net/kafka/0.11.0.2/kafka_2.11-0.11.0.2.tgz
|
2017-03-01 15:55:27 +01:00
|
|
|
|
|
|
|
# Only download the kafka if it isn't already downloaded.
|
|
|
|
test -f kafka.tgz || wget $MIRROR -O kafka.tgz
|
|
|
|
# Unpack the kafka over the top of any existing installation
|
|
|
|
mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1
|
|
|
|
# Start the zookeeper running in the background.
|
|
|
|
# By default the zookeeper listens on localhost:2181
|
|
|
|
kafka/bin/zookeeper-server-start.sh -daemon kafka/config/zookeeper.properties
|
|
|
|
# Enable topic deletion so that the integration tests can create a fresh topic
|
|
|
|
# for each test run.
|
2017-11-21 13:13:01 +01:00
|
|
|
echo -e "\n\ndelete.topic.enable=true" >> kafka/config/server.properties
|
2017-03-01 15:55:27 +01:00
|
|
|
# Start the kafka server running in the background.
|
|
|
|
# By default the kafka listens on localhost:9092
|
|
|
|
kafka/bin/kafka-server-start.sh -daemon kafka/config/server.properties
|