Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
[DCOS-51453] Added Hadoop 2.9 as the default distribution (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
akirillov authored Apr 10, 2019
1 parent 9b9cd80 commit 7544f58
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bin/jenkins-dist-publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function upload_to_s3 {
}

function set_hadoop_versions {
HADOOP_VERSIONS=( "2.6" "2.7" )
HADOOP_VERSIONS=( "2.7" "2.9" )
}

# rename build/dist/spark-*.tgz to build/dist/spark-<TAG>.tgz
Expand Down
12 changes: 6 additions & 6 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"spark_version": "2.4.0",
"default_spark_dist": {
"hadoop_version": "2.7",
"uri": "https://downloads.mesosphere.com/spark/assets/spark-2.4.0-bin-hadoop2.7.7-SNAPSHOT-20190402.tgz"
"hadoop_version": "2.9",
"uri": "https://downloads.mesosphere.com/spark/assets/spark-2.4.0-bin-hadoop2.9.2-SNAPSHOT-20190408.tgz"
},
"spark_dist": [
{
"hadoop_version": "2.7",
"uri": "https://downloads.mesosphere.com/spark/assets/spark-2.4.0-bin-hadoop2.7.7-SNAPSHOT-20190402.tgz"
"hadoop_version": "2.9",
"uri": "https://downloads.mesosphere.com/spark/assets/spark-2.4.0-bin-hadoop2.9.2-SNAPSHOT-20190408.tgz"
},
{
"hadoop_version": "2.6",
"uri": "https://downloads.mesosphere.com/spark/assets/spark-2.4.0-bin-hadoop2.6.5-SNAPSHOT-20190402.tgz"
"hadoop_version": "2.7",
"uri": "https://downloads.mesosphere.com/spark/assets/spark-2.4.0-bin-hadoop2.7.7-SNAPSHOT-20190408.tgz"
}
]
}
2 changes: 1 addition & 1 deletion publish_local_spark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

SPARK_DIST_DIR=""
HADOOP_VERSION="2.7"
HADOOP_VERSION="2.9"
DOCKER_DIST_IMAGE=""
REBUILD_DOCKER=false
REBUILD_SPARK=false
Expand Down

0 comments on commit 7544f58

Please sign in to comment.