blob: d982257cdf88ec87832cd45bc2eccff937002ff0 [file] [log] [blame]
Till Westmann5b431ca2015-10-01 19:16:11 -07001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
Ian Maxon69375a12015-06-29 16:12:53 -070019 <cluster xmlns="yarn_cluster">
20
21 <!-- Name of the cluster -->
22 <name>local</name>
23
24 <log_dir>/tmp/</log_dir>
25 <txn_log_dir>/tmp/</txn_log_dir>
26
27 <!-- Mount point of an iodevice. Use a comma separated list for a machine that
28 has multiple iodevices (disks).
29 This property can be overriden for a node by redefining at the node level. -->
30 <iodevices>/tmp</iodevices>
31
32 <!-- Path on each iodevice where Asterix will store its data -->
33 <store>storage</store>
34
35 <!-- IP addresses of the master machine A -->
36 <master_node>
37 <id>cc</id>
38 <client_ip>localhost</client_ip>
39 <cluster_ip>localhost</cluster_ip>
40 <client_port>1098</client_port>
41 <cluster_port>1099</cluster_port>
42 <http_port>8888</http_port>
43 </master_node>
44 <node>
45 <id>nc1</id>
46 <cluster_ip>127.0.0.1</cluster_ip>
47 </node>
48 <metadata_node>nc1</metadata_node>
49</cluster>