Skip to content

Commit efefcc7

Browse files
authored
use Spark 2.4.3 release (#199)
1 parent 565bd24 commit efefcc7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ RUN /opt/conda/bin/conda create -n sparkdl python=$PYTHON_VERSION && \
4040

4141
# Install Spark and update env variables.
4242
ENV SCALA_VERSION 2.11.8
43-
ENV SPARK_VERSION 2.4.0
43+
ENV SPARK_VERSION 2.4.3
4444
ENV SPARK_BUILD "spark-${SPARK_VERSION}-bin-hadoop2.7"
45-
ENV SPARK_BUILD_URL "https://dist.apache.org/repos/dist/release/spark/spark-2.4.0/${SPARK_BUILD}.tgz"
45+
ENV SPARK_BUILD_URL "https://dist.apache.org/repos/dist/release/spark/spark-${SPARK_VERSION}/${SPARK_BUILD}.tgz"
4646
RUN wget --quiet $SPARK_BUILD_URL -O /tmp/spark.tgz && \
4747
tar -C /opt -xf /tmp/spark.tgz && \
4848
mv /opt/$SPARK_BUILD /opt/spark && \

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import ReleaseTransformations._
55

6-
val sparkVer = sys.props.getOrElse("spark.version", "2.4.0")
6+
val sparkVer = sys.props.getOrElse("spark.version", "2.4.3")
77
val sparkBranch = sparkVer.substring(0, 3)
88
val defaultScalaVer = sparkBranch match {
99
case "2.3" => "2.11.8"

0 commit comments

Comments
 (0)