-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
spark-2.0.1
, spark-2.1.0
and flink-1.1.4
configurations.
- Loading branch information
1 parent
59499a5
commit ca6d7ac
Showing
5 changed files
with
86 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
19 changes: 19 additions & 0 deletions
19
peel-extensions/src/main/resources/reference.flink-1.1.4.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,19 @@ | ||
# include common flink configuration | ||
include "reference.flink.conf" | ||
|
||
system { | ||
flink { | ||
path { | ||
archive.url = "http://archive.apache.org/dist/flink/flink-1.1.4/flink-1.1.4-bin-hadoop2-scala_2.10.tgz" | ||
archive.md5 = "e270a65b0bbaefe5214ac7154b938dc0" | ||
archive.src = ${app.path.downloads}"/flink-1.1.4-bin-hadoop2-scala_2.10.tgz" | ||
home = ${system.flink.path.archive.dst}"/flink-1.1.4" | ||
} | ||
config { | ||
# flink.yaml entries | ||
yaml { | ||
env.pid.dir = "/tmp/flink-1.1.4-pid" | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
peel-extensions/src/main/resources/reference.spark-2.0.2.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.0.2/spark-2.0.2-bin-hadoop2.4.tgz" | ||
archive.md5 = "394853fd3e19239b3fc11e40abba6744" | ||
archive.src = ${app.path.downloads}"/spark-2.0.2-bin-hadoop2.4.tgz" | ||
home = ${system.spark.path.archive.dst}"/spark-2.0.2-bin-hadoop2.4" | ||
} | ||
config { | ||
# spark-env.sh entries | ||
env { | ||
# directory where process IDs are stored | ||
SPARK_PID_DIR = "/tmp/spark-2.0.2-pid" | ||
} | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
peel-extensions/src/main/resources/reference.spark-2.1.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.1.0/spark-2.1.0-bin-hadoop2.4.tgz" | ||
archive.md5 = "eebfc937e0c3c76174617465d1a8b408" | ||
archive.src = ${app.path.downloads}"/spark-2.1.0-bin-hadoop2.4.tgz" | ||
home = ${system.spark.path.archive.dst}"/spark-2.1.0-bin-hadoop2.4" | ||
} | ||
config { | ||
# spark-env.sh entries | ||
env { | ||
# directory where process IDs are stored | ||
SPARK_PID_DIR = "/tmp/spark-2.1.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