Skip to content

Commit

Permalink
use Spark 2.4.3 release (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
mengxr authored Jul 16, 2019
1 parent 565bd24 commit efefcc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ RUN /opt/conda/bin/conda create -n sparkdl python=$PYTHON_VERSION && \

# Install Spark and update env variables.
ENV SCALA_VERSION 2.11.8
ENV SPARK_VERSION 2.4.0
ENV SPARK_VERSION 2.4.3
ENV SPARK_BUILD "spark-${SPARK_VERSION}-bin-hadoop2.7"
ENV SPARK_BUILD_URL "https://dist.apache.org/repos/dist/release/spark/spark-2.4.0/${SPARK_BUILD}.tgz"
ENV SPARK_BUILD_URL "https://dist.apache.org/repos/dist/release/spark/spark-${SPARK_VERSION}/${SPARK_BUILD}.tgz"
RUN wget --quiet $SPARK_BUILD_URL -O /tmp/spark.tgz && \
tar -C /opt -xf /tmp/spark.tgz && \
mv /opt/$SPARK_BUILD /opt/spark && \
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import ReleaseTransformations._

val sparkVer = sys.props.getOrElse("spark.version", "2.4.0")
val sparkVer = sys.props.getOrElse("spark.version", "2.4.3")
val sparkBranch = sparkVer.substring(0, 3)
val defaultScalaVer = sparkBranch match {
case "2.3" => "2.11.8"
Expand Down

0 comments on commit efefcc7

Please sign in to comment.