Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 15 | <asterixConfiguration xmlns="asterixconf"> |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 16 | |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 17 | <property> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 18 | <name>nc.java.opts</name> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 19 | <value>-Xmx1024m</value> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 20 | <description>JVM parameters for each Node Contoller (NC)</description> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 21 | </property> |
| 22 | |
| 23 | <property> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 24 | <name>cc.java.opts</name> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 25 | <value>-Xmx1024m</value> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 26 | <description>JVM parameters for each Cluster Contoller (CC) |
| 27 | </description> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 28 | </property> |
| 29 | |
| 30 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 31 | <name>storage.buffercache.pagesize</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 32 | <value>32768</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 33 | <description>The page size in bytes for pages in the buffer cache. |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 34 | (Default = "32768" // 32KB) |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 35 | </description> |
ramangrover29 | 911d0ff | 2013-04-23 12:47:34 -0700 | [diff] [blame] | 36 | </property> |
| 37 | |
| 38 | <property> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 39 | <name>storage.buffercache.size</name> |
| 40 | <value>33554432</value> |
| 41 | <description>The size of memory allocated to the disk buffer cache. |
| 42 | The value should be a multiple of the buffer cache page size(Default |
| 43 | = "33554432" // 32MB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 44 | </description> |
| 45 | </property> |
| 46 | |
| 47 | <property> |
| 48 | <name>storage.buffercache.maxopenfiles</name> |
| 49 | <value>214748364</value> |
| 50 | <description>The maximum number of open files in the buffer cache. |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 51 | (Default = "214748364") |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 52 | </description> |
| 53 | </property> |
| 54 | |
| 55 | <property> |
| 56 | <name>storage.memorycomponent.pagesize</name> |
| 57 | <value>32768</value> |
| 58 | <description>The page size in bytes for pages allocated to memory |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 59 | components. (Default = "32768" // 32KB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 60 | </description> |
| 61 | </property> |
| 62 | |
| 63 | <property> |
| 64 | <name>storage.memorycomponent.numpages</name> |
zheilbron | b284469 | 2013-05-28 22:14:27 -0700 | [diff] [blame] | 65 | <value>1024</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 66 | <description>The number of pages to allocate for a memory component. |
zheilbron | b284469 | 2013-05-28 22:14:27 -0700 | [diff] [blame] | 67 | (Default = 1024) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 68 | </description> |
| 69 | </property> |
| 70 | |
| 71 | <property> |
| 72 | <name>storage.memorycomponent.globalbudget</name> |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 73 | <value>536870192</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 74 | <description>The total size of memory in bytes that the sum of all |
| 75 | open memory |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 76 | components cannot exceed. (Default = "536870192" // 512MB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 77 | </description> |
| 78 | </property> |
| 79 | |
| 80 | <property> |
| 81 | <name>storage.lsm.mergethreshold</name> |
| 82 | <value>3</value> |
| 83 | <description>The number of on-disk components an LSM index can have |
| 84 | before a merge is triggered. (Default = 3) |
| 85 | </description> |
| 86 | </property> |
| 87 | |
| 88 | <property> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 89 | <name>storage.lsm.bloomfilter.falsepositiverate</name> |
| 90 | <value>0.01</value> |
| 91 | <description>The maximum acceptable false positive rate for bloom |
| 92 | filters associated with LSM indexes. (Default = "0.01" // 1%) |
| 93 | </description> |
| 94 | </property> |
| 95 | |
| 96 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 97 | <name>txn.log.buffer.numpages</name> |
ramangrover29 | 9104494 | 2013-05-01 23:39:29 -0700 | [diff] [blame] | 98 | <value>8</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 99 | <description>The number of in-memory log buffer pages. (Default = "8") |
| 100 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 101 | </property> |
| 102 | |
| 103 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 104 | <name>txn.log.buffer.pagesize</name> |
| 105 | <value>131072</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 106 | <description>The size of pages in the in-memory log buffer. (Default = |
| 107 | "131072" // 128KB) |
| 108 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 109 | </property> |
| 110 | |
| 111 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 112 | <name>txn.log.partitionsize</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 113 | <value>2147483648</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 114 | <description>The maximum size of a log file partition allowed before |
| 115 | rotating the log to the next partition. (Default = "2147483648" // |
| 116 | 2GB) |
| 117 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 118 | </property> |
| 119 | |
| 120 | <property> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 121 | <name>txn.log.disksectorsize</name> |
| 122 | <value>4096</value> |
| 123 | <description>The size of a disk sector. (Default = "4096") |
| 124 | </description> |
| 125 | </property> |
| 126 | |
| 127 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 128 | <name>txn.log.groupcommitinterval</name> |
icetindil | 91f94b5 | 2013-05-31 16:02:23 -0700 | [diff] [blame] | 129 | <value>1</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 130 | <description>The group commit wait time in milliseconds. (Default = |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 131 | "10" // 0.1ms) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 132 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 133 | </property> |
| 134 | |
| 135 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 136 | <name>txn.log.checkpoint.lsnthreshold</name> |
| 137 | <value>67108864</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 138 | <description>The size of the window that the maximum LSN is allowed to |
| 139 | be ahead of the checkpoint LSN by. (Default = ""67108864" // 64M) |
| 140 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 141 | </property> |
| 142 | |
| 143 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 144 | <name>txn.log.checkpoint.pollfrequency</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 145 | <value>120</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 146 | <description>The time in seconds between that the checkpoint thread |
| 147 | waits between polls. (Default = "120" // 120s) |
| 148 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 149 | </property> |
| 150 | |
| 151 | <property> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 152 | <name>txn.log.checkpoint.history</name> |
| 153 | <value>0</value> |
| 154 | <description>The number of old log partition files to keep before |
| 155 | discarding. (Default = "0") |
| 156 | </description> |
| 157 | </property> |
| 158 | |
| 159 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 160 | <name>txn.lock.escalationthreshold</name> |
| 161 | <value>1000</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 162 | <description>The number of entity level locks that need to be acquired |
| 163 | before the locks are coalesced and escalated into a dataset level |
| 164 | lock. (Default = "1000") |
| 165 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 166 | </property> |
| 167 | |
| 168 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 169 | <name>txn.lock.shrinktimer</name> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 170 | <value>5000</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 171 | <description>The time in milliseconds to wait before deallocating |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 172 | unused lock manager memory. (Default = "5000" // 5s) |
| 173 | </description> |
| 174 | </property> |
| 175 | |
| 176 | <property> |
| 177 | <name>txn.lock.timeout.waitthreshold</name> |
| 178 | <value>60000</value> |
| 179 | <description>The time in milliseconds to wait before labeling a |
| 180 | transaction which has been waiting for a lock timed-out. (Default = |
| 181 | "60000" // 60s) |
| 182 | </description> |
| 183 | </property> |
| 184 | |
| 185 | <property> |
| 186 | <name>txn.lock.timeout.sweepthreshold</name> |
| 187 | <value>10000</value> |
| 188 | <description>The time in milliseconds the timeout thread waits between |
| 189 | sweeps to detect timed-out transactions. (Default = "10000" // 10s) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 190 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 191 | </property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 192 | |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 193 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 194 | <name>compiler.sortmemory</name> |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 195 | <value>33554432</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 196 | <description>The amount of memory in bytes given to sort operations. |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 197 | (Default = "33554432" // 32mb) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 198 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 199 | </property> |
| 200 | |
| 201 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 202 | <name>compiler.joinmemory</name> |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 203 | <value>33554432</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 204 | <description>The amount of memory in bytes given to join operations. |
zheilbron | a2c7182 | 2013-06-04 01:55:16 -0700 | [diff] [blame] | 205 | (Default = "33554432" // 32mb) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 206 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 207 | </property> |
| 208 | |
| 209 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 210 | <name>compiler.framesize</name> |
| 211 | <value>32768</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 212 | <description>The Hyracks frame size that the compiler configures per |
| 213 | job. (Default = "32768" // 32KB) |
| 214 | </description> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 215 | </property> |
| 216 | |
| 217 | <property> |
zheilbron | 9a430b2 | 2013-05-09 16:49:42 -0700 | [diff] [blame] | 218 | <name>web.port</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 219 | <value>19001</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 220 | <description>The port for the ASTERIX web interface. (Default = 19001) |
| 221 | </description> |
| 222 | </property> |
| 223 | |
| 224 | <property> |
zheilbron | 9a430b2 | 2013-05-09 16:49:42 -0700 | [diff] [blame] | 225 | <name>api.port</name> |
icetindil | 1278131 | 2013-06-04 17:56:04 -0700 | [diff] [blame] | 226 | <value>19002</value> |
| 227 | <description>The port for the ASTERIX API server. (Default = 19002) |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 228 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 229 | </property> |
| 230 | |
| 231 | <property> |
zheilbron | 9a430b2 | 2013-05-09 16:49:42 -0700 | [diff] [blame] | 232 | <name>log.level</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 233 | <value>INFO</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame] | 234 | <description>The minimum log level to be displayed. (Default = INFO) |
| 235 | </description> |
ramangrover29 | 911d0ff | 2013-04-23 12:47:34 -0700 | [diff] [blame] | 236 | </property> |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 237 | </asterixConfiguration> |