Sign inSign up

logitravel/spark-docker

By logitravel

Updated about 9 years ago

Apache Spark image to deploy standalone clusters.

Image
4

10K+

logitravel/spark-docker repository overview

spark-docker

Apache Spark Docker Container

Usage

Build
docker build -t logitravel/spark-docker .
Deployment
Create network
docker network create spark
Run master
docker run -e MASTER_HOSTNAME="master" \
           -e MASTER="spark://master:7077" \
           -e SPARK_PUBLIC_DNS="localhost" \
           --network=spark \
           -h master \
           --name master \
           -p "8080:8080" \
           -ti logitravel/spark-docker start-master
Run worker
docker run -e MASTER="spark://master:7077" \
           -e SPARK_CONF_DIR="/conf" \
           -e SPARK_WORKER_CORES="2" \
           -e SPARK_WORKER_MEMORY="512m" \
           -e SPARK_WORKER_PORT="8881" \
           -e SPARK_WORKER_WEBUI_PORT="8081" \
           -e SPARK_PUBLIC_DNS="localhost" \
           --network=spark \
           --link master:master \
           -ti logitravel/spark-docker start-worker
Run driver
docker run -e MASTER="spark://master:7077" \
           -e MAIN_CLASS="HelloWorld" \
           -e DRIVER_MEMORY="1g" \
           -e EXECUTOR_MEMORY="512m" \
           -e EXECUTOR_CORES="2" \
           -e TOTAL_EXECUTOR_CORES="2" \
           -e DEPENDENCIES="org.apache.spark:spark-streaming_2.11:2.1.0" \
           -e JOB_NAME="app" \
           -e JAR="https://github.com/logitravel/spark-hello-world/releases/download/1.0/spark-hello-world_2.11-1.0.jar" \
           --network=spark \
           --link master:master \
           -p "4040:4040" \
           -ti logitravel/spark-docker start-driver
Deployment using docker swarm
Initialize swarm (if its not)
docker swarm init
Create the network
docker network create -d overlay spark --attachable
Create the service stack
docker stack deploy -c docker-compose.yml spark
Scale cluster
docker service scale spark_worker=100
License

Copyright 2017 © Logitravel

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Tag summary

Content type

Image

Digest

Size

323.3 MB

Last updated

about 9 years ago

docker pull logitravel/spark-docker