Spark 1.5.0 on Hadoop 2.6 with Java 8 Update 60
10K+
Spark is an open source cluster computing framework. In contrast to Hadoop's two-stage disk-based MapReduce paradigm, Spark's multi-stage in-memory primitives provides performance up to 100 times faster for certain applications. See also : spark programming guide
Docker is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of operating-system-level virtualization on Linux, Mac OS and Windows.
Spark 1.5.0, Hadoop 2.6 image
Based on: vanilla rtezli/java
Virtual size: 620.3 MB
Apt packages: procps
Volumes : /data
To run the image as master use i.e. :
docker run --name spark-master -it -h spark-master01 -p 6066:6066 -p 7077:7077 -p 8080:8080 rtezli/spark master
To run the image as worker use i.e. :
docker run -it rtezli/spark worker spark://spark-master01:7077
If you are running the master and worker on the same docker host, don't forget to link the spark master
docker run -it --link spark-master:spark-master rtezli/spark worker spark://spark-master01:7077
Content type
Image
Digest
sha256:f6a1e015a…
Size
390.1 MB
Last updated
almost 11 years ago
docker pull rtezli/spark