aboutsummaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-07-06 12:43:21 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-07-06 12:43:21 -0700
commit2a36e5449b13de8c2234da983f3ed966720080ca (patch)
tree50e7f10a32287d89e08b24704d325d49271a1965 /conf
parent7ba7fa110bec1047d7b67b1bbb580ead80555311 (diff)
parent6ccfb73ca92a72d5cca6a504d9ee332a16d9293d (diff)
downloadspark-2a36e5449b13de8c2234da983f3ed966720080ca.tar.gz
spark-2a36e5449b13de8c2234da983f3ed966720080ca.tar.bz2
spark-2a36e5449b13de8c2234da983f3ed966720080ca.zip
Merge pull request #673 from xiajunluan/master
Add config template file for fair scheduler feature
Diffstat (limited to 'conf')
-rw-r--r--conf/fairscheduler.xml.template15
1 files changed, 15 insertions, 0 deletions
diff --git a/conf/fairscheduler.xml.template b/conf/fairscheduler.xml.template
new file mode 100644
index 0000000000..04a6b418dc
--- /dev/null
+++ b/conf/fairscheduler.xml.template
@@ -0,0 +1,15 @@
+<?xml version="1.0"?>
+<allocations>
+<pool name="production">
+ <minShare>2</minShare>
+ <weight>1</weight>
+ <schedulingMode>FAIR</schedulingMode>
+</pool>
+<pool name="test">
+ <minShare>3</minShare>
+ <weight>2</weight>
+ <schedulingMode>FIFO</schedulingMode>
+</pool>
+<pool name="data">
+</pool>
+</allocations>