Young-Seok | 5eba6a0 | 2013-08-29 17:30:40 -0700 | [diff] [blame] | 1 | <!-- ! Copyright 2009-2013 by The Regents of the University of California |
| 2 | ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may |
| 3 | not use this file except in compliance with the License. ! you may obtain |
| 4 | a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0 |
| 5 | ! ! Unless required by applicable law or agreed to in writing, software ! |
| 6 | distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT |
| 7 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the |
| 8 | License for the specific language governing permissions and ! limitations |
| 9 | under the License. ! --> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 10 | <asterixConfiguration xmlns="asterixconf"> |
Young-Seok | 5eba6a0 | 2013-08-29 17:30:40 -0700 | [diff] [blame] | 11 | <metadataNode>nc1</metadataNode> |
| 12 | <store> |
| 13 | <ncId>nc1</ncId> |
| 14 | <storeDirs>nc1data</storeDirs> |
| 15 | </store> |
| 16 | <store> |
| 17 | <ncId>nc2</ncId> |
| 18 | <storeDirs>nc2data</storeDirs> |
| 19 | </store> |
| 20 | <transactionLogDir> |
| 21 | <ncId>nc1</ncId> |
| 22 | <txnLogDirPath>target/txnLogDir/nc1</txnLogDirPath> |
| 23 | </transactionLogDir> |
| 24 | <transactionLogDir> |
| 25 | <ncId>nc2</ncId> |
| 26 | <txnLogDirPath>target/txnLogDir/nc2</txnLogDirPath> |
| 27 | </transactionLogDir> |
ramangrover29 | 9281205b | 2013-10-29 01:18:18 +0530 | [diff] [blame] | 28 | |
Yingyi Bu | 362b884 | 2014-05-26 00:01:18 -0700 | [diff] [blame] | 29 | <property> |
| 30 | <name>max.wait.active.cluster</name> |
| 31 | <value>60</value> |
| 32 | <description>Maximum wait (in seconds) for a cluster to be ACTIVE (all |
| 33 | nodes are available) |
| 34 | before a submitted query/statement can be |
| 35 | executed. (Default = 60 seconds) |
| 36 | </description> |
| 37 | </property> |
ramangrover29 | 9281205b | 2013-10-29 01:18:18 +0530 | [diff] [blame] | 38 | |
Young-Seok | 5eba6a0 | 2013-08-29 17:30:40 -0700 | [diff] [blame] | 39 | <property> |
| 40 | <name>log.level</name> |
| 41 | <value>WARNING</value> |
| 42 | <description>Log level for running tests/build</description> |
| 43 | </property> |
| 44 | <property> |
Yingyi Bu | 362b884 | 2014-05-26 00:01:18 -0700 | [diff] [blame] | 45 | <name>compiler.framesize</name> |
| 46 | <value>32768</value> |
| 47 | </property> |
| 48 | <property> |
| 49 | <name>compiler.sortmemory</name> |
JavierJia | 6510072 | 2015-06-17 16:19:25 -0700 | [diff] [blame] | 50 | <value>163840</value> |
Yingyi Bu | 362b884 | 2014-05-26 00:01:18 -0700 | [diff] [blame] | 51 | </property> |
| 52 | <property> |
| 53 | <name>compiler.groupmemory</name> |
JavierJia | 6510072 | 2015-06-17 16:19:25 -0700 | [diff] [blame] | 54 | <value>163840</value> |
Yingyi Bu | 362b884 | 2014-05-26 00:01:18 -0700 | [diff] [blame] | 55 | </property> |
| 56 | <property> |
| 57 | <name>compiler.joinmemory</name> |
JavierJia | 6510072 | 2015-06-17 16:19:25 -0700 | [diff] [blame] | 58 | <value>163840</value> |
Yingyi Bu | 362b884 | 2014-05-26 00:01:18 -0700 | [diff] [blame] | 59 | </property> |
| 60 | <property> |
salsubaiee | 801bffe | 2013-09-22 23:42:35 -0700 | [diff] [blame] | 61 | <name>storage.buffercache.pagesize</name> |
| 62 | <value>32768</value> |
| 63 | <description>The page size in bytes for pages in the buffer cache. |
| 64 | (Default = "32768" // 32KB) |
| 65 | </description> |
| 66 | </property> |
| 67 | <property> |
| 68 | <name>storage.buffercache.size</name> |
| 69 | <value>33554432</value> |
| 70 | <description>The size of memory allocated to the disk buffer cache. |
| 71 | The value should be a multiple of the buffer cache page size(Default |
| 72 | = "33554432" // 32MB) |
| 73 | </description> |
| 74 | </property> |
| 75 | <property> |
zheilbron | 5287c4a | 2013-06-05 00:09:29 -0700 | [diff] [blame] | 76 | <name>storage.memorycomponent.numpages</name> |
| 77 | <value>8</value> |
| 78 | <description>The number of pages to allocate for a memory component. |
| 79 | (Default = 8) |
| 80 | </description> |
| 81 | </property> |
kereno | f13678d | 2014-07-15 15:57:39 -0700 | [diff] [blame] | 82 | <property> |
| 83 | <name>plot.activate</name> |
| 84 | <value>false</value> |
| 85 | <description>Enabling plot of Algebricks plan to tmp folder. (Default = false) |
| 86 | </description> |
| 87 | </property> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 88 | </asterixConfiguration> |