Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 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. |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 18 | !--> |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 19 | <asterixConfiguration xmlns="asterixconf"> |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 20 | |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 21 | <property> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 22 | <name>nc.java.opts</name> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 23 | <value>-Xmx1536m</value> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 24 | <description>JVM parameters for each Node Contoller (NC)</description> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 25 | </property> |
| 26 | |
| 27 | <property> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 28 | <name>cc.java.opts</name> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 29 | <value>-Xmx1024m</value> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 30 | <description>JVM parameters for each Cluster Contoller (CC) |
| 31 | </description> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 32 | </property> |
| 33 | |
ramangrover29 | 9281205b | 2013-10-29 01:18:18 +0530 | [diff] [blame] | 34 | <property> |
| 35 | <name>max.wait.active.cluster</name> |
| 36 | <value>60</value> |
| 37 | <description>Maximum wait (in seconds) for a cluster to be ACTIVE (all nodes are available) |
| 38 | before a submitted query/statement can be executed. (Default = 60 seconds) |
| 39 | </description> |
| 40 | </property> |
| 41 | |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 42 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 43 | <name>storage.buffercache.pagesize</name> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 44 | <value>131072</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 45 | <description>The page size in bytes for pages in the buffer cache. |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 46 | (Default = "131072" // 128KB) |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 47 | </description> |
ramangrover29 | 911d0ff | 2013-04-23 12:47:34 -0700 | [diff] [blame] | 48 | </property> |
| 49 | |
| 50 | <property> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 51 | <name>storage.buffercache.size</name> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 52 | <value>536870912</value> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 53 | <description>The size of memory allocated to the disk buffer cache. |
| 54 | The value should be a multiple of the buffer cache page size(Default |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 55 | = "536870912" // 512MB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 56 | </description> |
| 57 | </property> |
| 58 | |
| 59 | <property> |
| 60 | <name>storage.buffercache.maxopenfiles</name> |
| 61 | <value>214748364</value> |
| 62 | <description>The maximum number of open files in the buffer cache. |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 63 | (Default = "214748364") |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 64 | </description> |
| 65 | </property> |
| 66 | |
| 67 | <property> |
| 68 | <name>storage.memorycomponent.pagesize</name> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 69 | <value>131072</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 70 | <description>The page size in bytes for pages allocated to memory |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 71 | components. (Default = "131072" // 128KB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 72 | </description> |
| 73 | </property> |
| 74 | |
| 75 | <property> |
| 76 | <name>storage.memorycomponent.numpages</name> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 77 | <value>256</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 78 | <description>The number of pages to allocate for a memory component. |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 79 | (Default = 256) |
| 80 | </description> |
| 81 | </property> |
| 82 | |
| 83 | <property> |
| 84 | <name>storage.metadata.memorycomponent.numpages</name> |
| 85 | <value>64</value> |
| 86 | <description>The number of pages to allocate for a memory component. |
| 87 | (Default = 64) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 88 | </description> |
| 89 | </property> |
| 90 | |
salsubaiee | 35119a9 | 2013-08-10 13:09:05 -0700 | [diff] [blame] | 91 | <property> |
| 92 | <name>storage.memorycomponent.numcomponents</name> |
| 93 | <value>2</value> |
| 94 | <description>The number of memory components to be used per lsm index. |
| 95 | (Default = 2) |
| 96 | </description> |
| 97 | </property> |
| 98 | |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 99 | <property> |
| 100 | <name>storage.memorycomponent.globalbudget</name> |
salsubaiee | 801bffe | 2013-09-22 23:42:35 -0700 | [diff] [blame] | 101 | <value>536870912</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 102 | <description>The total size of memory in bytes that the sum of all |
| 103 | open memory |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 104 | components cannot exceed. (Default = "536870192" // 512MB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 105 | </description> |
| 106 | </property> |
| 107 | |
| 108 | <property> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 109 | <name>storage.lsm.bloomfilter.falsepositiverate</name> |
| 110 | <value>0.01</value> |
| 111 | <description>The maximum acceptable false positive rate for bloom |
| 112 | filters associated with LSM indexes. (Default = "0.01" // 1%) |
| 113 | </description> |
| 114 | </property> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 115 | |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 116 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 117 | <name>txn.log.buffer.numpages</name> |
ramangrover29 | 9104494 | 2013-05-01 23:39:29 -0700 | [diff] [blame] | 118 | <value>8</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 119 | <description>The number of in-memory log buffer pages. (Default = "8") |
| 120 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 121 | </property> |
| 122 | |
| 123 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 124 | <name>txn.log.buffer.pagesize</name> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 125 | <value>524288</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 126 | <description>The size of pages in the in-memory log buffer. (Default = |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 127 | "524288" // 512KB) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 128 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 129 | </property> |
| 130 | |
| 131 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 132 | <name>txn.log.partitionsize</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 133 | <value>2147483648</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 134 | <description>The maximum size of a log file partition allowed before |
| 135 | rotating the log to the next partition. (Default = "2147483648" // |
| 136 | 2GB) |
| 137 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 138 | </property> |
| 139 | |
| 140 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 141 | <name>txn.log.checkpoint.lsnthreshold</name> |
| 142 | <value>67108864</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 143 | <description>The size of the window that the maximum LSN is allowed to |
| 144 | be ahead of the checkpoint LSN by. (Default = ""67108864" // 64M) |
| 145 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 146 | </property> |
| 147 | |
| 148 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 149 | <name>txn.log.checkpoint.pollfrequency</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 150 | <value>120</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 151 | <description>The time in seconds between that the checkpoint thread |
| 152 | waits between polls. (Default = "120" // 120s) |
| 153 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 154 | </property> |
| 155 | |
| 156 | <property> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 157 | <name>txn.log.checkpoint.history</name> |
| 158 | <value>0</value> |
| 159 | <description>The number of old log partition files to keep before |
| 160 | discarding. (Default = "0") |
| 161 | </description> |
| 162 | </property> |
| 163 | |
| 164 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 165 | <name>txn.lock.escalationthreshold</name> |
| 166 | <value>1000</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 167 | <description>The number of entity level locks that need to be acquired |
| 168 | before the locks are coalesced and escalated into a dataset level |
| 169 | lock. (Default = "1000") |
| 170 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 171 | </property> |
| 172 | |
| 173 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 174 | <name>txn.lock.shrinktimer</name> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 175 | <value>5000</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 176 | <description>The time in milliseconds to wait before deallocating |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 177 | unused lock manager memory. (Default = "5000" // 5s) |
| 178 | </description> |
| 179 | </property> |
| 180 | |
| 181 | <property> |
| 182 | <name>txn.lock.timeout.waitthreshold</name> |
| 183 | <value>60000</value> |
| 184 | <description>The time in milliseconds to wait before labeling a |
| 185 | transaction which has been waiting for a lock timed-out. (Default = |
| 186 | "60000" // 60s) |
| 187 | </description> |
| 188 | </property> |
| 189 | |
| 190 | <property> |
| 191 | <name>txn.lock.timeout.sweepthreshold</name> |
| 192 | <value>10000</value> |
| 193 | <description>The time in milliseconds the timeout thread waits between |
| 194 | sweeps to detect timed-out transactions. (Default = "10000" // 10s) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 195 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 196 | </property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 197 | |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 198 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 199 | <name>compiler.sortmemory</name> |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 200 | <value>33554432</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 201 | <description>The amount of memory in bytes given to sort operations. |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 202 | (Default = "33554432" // 32mb) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 203 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 204 | </property> |
| 205 | |
| 206 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 207 | <name>compiler.joinmemory</name> |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 208 | <value>33554432</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 209 | <description>The amount of memory in bytes given to join operations. |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 210 | (Default = "33554432" // 32mb) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 211 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 212 | </property> |
| 213 | |
| 214 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 215 | <name>compiler.framesize</name> |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 216 | <value>131072</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 217 | <description>The Hyracks frame size that the compiler configures per |
salsubaiee | 85a78dd | 2013-09-21 21:30:13 -0700 | [diff] [blame] | 218 | job. (Default = "131072" // 128KB) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 219 | </description> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 220 | </property> |
| 221 | |
| 222 | <property> |
zheilbron | 9a430b2 | 2013-05-09 16:49:42 -0700 | [diff] [blame] | 223 | <name>web.port</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 224 | <value>19001</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 225 | <description>The port for the ASTERIX web interface. (Default = 19001) |
| 226 | </description> |
| 227 | </property> |
| 228 | |
| 229 | <property> |
zheilbron | 9a430b2 | 2013-05-09 16:49:42 -0700 | [diff] [blame] | 230 | <name>api.port</name> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 231 | <value>19002</value> |
| 232 | <description>The port for the ASTERIX API server. (Default = 19002) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 233 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 234 | </property> |
| 235 | |
| 236 | <property> |
zheilbron | 9a430b2 | 2013-05-09 16:49:42 -0700 | [diff] [blame] | 237 | <name>log.level</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 238 | <value>INFO</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 239 | <description>The minimum log level to be displayed. (Default = INFO) |
| 240 | </description> |
ramangrover29 | 911d0ff | 2013-04-23 12:47:34 -0700 | [diff] [blame] | 241 | </property> |
kereno | f13678d | 2014-07-15 15:57:39 -0700 | [diff] [blame] | 242 | |
| 243 | <property> |
| 244 | <name>plot.activate</name> |
| 245 | <value>false</value> |
| 246 | <description>Enabling plot of Algebricks plan to tmp folder. (Default = false) |
| 247 | </description> |
| 248 | </property> |
| 249 | |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 250 | </asterixConfiguration> |