forked from peelframework/peel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds new Spark versions 2.1.1 and 2.2.0
Note that version 2.2.0 does not have a version for hadoop 2.4, thus, we use the version for hadoop 2.7. On cluster tests, it successfully ran on hadoop 2.4
- Loading branch information
Showing
4 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
peel-extensions/src/main/resources/reference.spark-2.1.1.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# include common spark configuration | ||
include "reference.spark.conf" | ||
|
||
system { | ||
spark { | ||
path { | ||
archive.url = "http://archive.apache.org/dist/spark/spark-2.1.1/spark-2.1.1-bin-hadoop2.4.tgz" | ||
archive.md5 = "7219c856c889e5f90fe1dd698e71069c" | ||
archive.src = ${app.path.downloads}"/spark-2.1.1-bin-hadoop2.4.tgz" | ||
home = ${system.spark.path.archive.dst}"/spark-2.1.1-bin-hadoop2.4" | ||
} | ||
config { | ||
# spark-env.sh entries | ||
env { | ||
# directory where process IDs are stored | ||
SPARK_PID_DIR = "/tmp/spark-2.1.1-pid" | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
peel-extensions/src/main/resources/reference.spark-2.2.0.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# include common spark configuration | ||
include "reference.spark.conf" | ||
|
||
system { | ||
spark { | ||
path { | ||
archive.url = "http://archive.apache.org/dist/spark/spark-2.2.0/spark-2.2.0-bin-hadoop2.7.tgz" | ||
archive.md5 = "1715b661bdf33b40c98b3daa7837f690" | ||
archive.src = ${app.path.downloads}"/spark-2.2.0-bin-hadoop2.7.tgz" | ||
home = ${system.spark.path.archive.dst}"/spark-2.2.0-bin-hadoop2.7" | ||
} | ||
config { | ||
# spark-env.sh entries | ||
env { | ||
# directory where process IDs are stored | ||
SPARK_PID_DIR = "/tmp/spark-2.2.0-pid" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters