Docker container for spark stand alone cluster
2.6K
This repository contains a set of scripts and configuration files to run a Apache Spark standalone cluster from Docker container.
To run master execute:
./start-master.sh
To run worker execute:
./start-worker.sh
You can run multiple workers. Every worker would be able to find master by it's container name "spark_master".
To run spark shell against this cluster execute:
./spark-shell.sh
You can run multiple shells. Every shell would be able to find master by it's container name "spark_master".
If you like to run another container against this cluster, please read explanation how to prepare driver container.
If you need to increase memory or core count or pass any other parameter to spark, please use:
./spark-shell.sh --executor-memory 300M --total-executor-cores 3
./start-worker.sh --memory 700M
If you execute these images without scripts mentioned above, please:
I also recommend you to use Zeppelin instead of spark shell for working with data. It has pleasant GUI and IPython like functionality. Please use docker container for that.
Content type
Image
Digest
sha256:48a642d38…
Size
654.9 MB
Last updated
about 11 years ago
docker pull clakech/docker-spark