@@ -10,12 +10,12 @@ The base Hadoop Docker image is also available as an official [Docker image](htt
10
10
11
11
##Pull the image from Docker Repository
12
12
```
13
- docker pull sequenceiq/spark:1.4.0
13
+ docker pull sequenceiq/spark:1.5.1
14
14
```
15
15
16
16
## Building the image
17
17
```
18
- docker build --rm -t sequenceiq/spark:1.4.0 .
18
+ docker build --rm -t sequenceiq/spark:1.5.1 .
19
19
```
20
20
21
21
## Running the image
@@ -24,16 +24,16 @@ docker build --rm -t sequenceiq/spark:1.4.0 .
24
24
* in your /etc/hosts file add $(boot2docker ip) as host 'sandbox' to make it easier to access your sandbox UI
25
25
* open yarn UI ports when running container
26
26
```
27
- docker run -it -p 8088:8088 -p 8042:8042 -h sandbox sequenceiq/spark:1.4.0 bash
27
+ docker run -it -p 8088:8088 -p 8042:8042 -h sandbox sequenceiq/spark:1.5.1 bash
28
28
```
29
29
or
30
30
```
31
- docker run -d -h sandbox sequenceiq/spark:1.4.0 -d
31
+ docker run -d -h sandbox sequenceiq/spark:1.5.1 -d
32
32
```
33
33
34
34
## Versions
35
35
```
36
- Hadoop 2.6.0 and Apache Spark v1.4.0 on Centos
36
+ Hadoop 2.6.0 and Apache Spark v1.5.1 on Centos
37
37
```
38
38
39
39
## Testing
@@ -71,7 +71,7 @@ spark-submit \
71
71
--driver-memory 1g \
72
72
--executor-memory 1g \
73
73
--executor-cores 1 \
74
- $SPARK_HOME/lib/spark-examples-1.4.0 -hadoop2.6.0.jar
74
+ $SPARK_HOME/lib/spark-examples-1.5.1 -hadoop2.6.0.jar
75
75
```
76
76
77
77
Estimating Pi (yarn-client mode):
@@ -84,5 +84,5 @@ spark-submit \
84
84
--driver-memory 1g \
85
85
--executor-memory 1g \
86
86
--executor-cores 1 \
87
- $SPARK_HOME/lib/spark-examples-1.4.0 -hadoop2.6.0.jar
87
+ $SPARK_HOME/lib/spark-examples-1.5.1 -hadoop2.6.0.jar
88
88
```
0 commit comments