-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapplication.conf
41 lines (37 loc) · 1.06 KB
/
application.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
################################################################################
# Host-specific Peel configuration
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Customize Peel configuration values appearing in
#
# https://github.com/stratosphere/peel/blob/master/peel-core/src/main/resources/reference.peel.conf
#
# here.
#
# include environment hosts lists
include "hosts.conf"
app {
# custom bundle paths
path {
# shared downloads path
downloads = "/home/hadoop/Downloads/systems"
# shared systems path
systems = "/share/hadoop/peel/systems"
}
}
system {
default {
# user & group on this environment
user = ${user.name}
group = "hadoop"
config {
masters = ${env.masters}
slaves = ${env.slaves.all.hosts}
java = {
home = "/usr/lib/jvm/java-8-oracle"
}
# nodes have 8 real cores (16 with hyper-threading)
parallelism.per-node = ${env.per-node.parallelism}
}
}
}