A Dockerfile for deploying a Storm cluster under supervision using Docker containers.
The image is registered to the Docker Index
docker pull maluuba/stormPre-Requisites: You must have a running zookeeper instance in order to start any of the storm daemons.
docker run -p 2181:2181 -p 2888:2888 -p 3888:3888 -h zookeeper –-name="zookeeper" -d jplock/zookeeper;
The image contains an ENTRYPOINT for running one container per storm daemon as follow:
docker run [OPTIONS] --link zookeeper:zk -d maluuba/storm --daemon (nimbus, drpc, supevisor, ui, logviewer)
For instance to run Nimbus :
docker run \
--name="storm-nimbus" -h nimbus \
--expose 6627 --expose 3772 --expose 3773 \
--link zookeeper:zk \
-d maluuba/storm \
--daemon nimbus
You can use the Makefile for directly building and deploying storm.
To rebuild the maluuba/storm image just run :
make storm-buildRun the following commands to deploy/destroy your cluster.
make deploy-clustermake deploy-cluster HOST_MOUNT=/home/ec2-user/deploymentmake destroy-clusterWithout storm installed on your machine:
docker run --rm --entrypoint storm \
-v <HOST_TOPOLOGY_TARGET_DIR>:/deployment maluuba/storm \
-c nimbus.host=`docker inspect --format='{{.NetworkSettings.IPAddress}}' storm-nimbus` jar <TOPOLOGY_JAR> <TOPOLOGY_CLASS> <TOPOLOGY_ARGS>
Storm UI/Logviewer container ports are exposed to the host system :
If for some reasons you need to debug a container you can use nsenter:
PID=$(docker inspect --format {{.State.Pid}} <container_name_or_ID>)
nsenter --target $PID --mount --uts --ipc --net --pid
Content type
Image
Digest
sha256:c318bba50…
Size
450.5 MB
Last updated
almost 11 years ago
docker pull maluuba/storm