blob: ab64caed23293bd8c876e3e2d0bad39934c0e573 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! 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 Westmannea8ab392013-06-05 15:17:08 -070018 !-->
ramangrover2957ec18e2013-04-16 11:42:30 -070019<asterixConfiguration xmlns="asterixconf">
ramangrover2957ec18e2013-04-16 11:42:30 -070020
Raman Grover27a0c4c2013-04-16 17:29:40 -070021 <property>
zheilbronff6fe592013-05-04 23:11:15 -070022 <name>nc.java.opts</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070023 <value>-Xmx1536m</value>
zheilbronff6fe592013-05-04 23:11:15 -070024 <description>JVM parameters for each Node Contoller (NC)</description>
Raman Grover27a0c4c2013-04-16 17:29:40 -070025 </property>
26
27 <property>
zheilbronff6fe592013-05-04 23:11:15 -070028 <name>cc.java.opts</name>
Raman Grover27a0c4c2013-04-16 17:29:40 -070029 <value>-Xmx1024m</value>
zheilbronff6fe592013-05-04 23:11:15 -070030 <description>JVM parameters for each Cluster Contoller (CC)
31 </description>
Raman Grover27a0c4c2013-04-16 17:29:40 -070032 </property>
33
ramangrover299281205b2013-10-29 01:18:18 +053034 <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 Grover27a0c4c2013-04-16 17:29:40 -070042 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070043 <name>storage.buffercache.pagesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070044 <value>131072</value>
zheilbron9c5793c2013-05-07 11:16:07 -070045 <description>The page size in bytes for pages in the buffer cache.
salsubaiee85a78dd2013-09-21 21:30:13 -070046 (Default = "131072" // 128KB)
zheilbronff6fe592013-05-04 23:11:15 -070047 </description>
ramangrover29911d0ff2013-04-23 12:47:34 -070048 </property>
49
50 <property>
icetindil12781312013-06-04 17:56:04 -070051 <name>storage.buffercache.size</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070052 <value>536870912</value>
icetindil12781312013-06-04 17:56:04 -070053 <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
salsubaiee85a78dd2013-09-21 21:30:13 -070055 = "536870912" // 512MB)
zheilbron9c5793c2013-05-07 11:16:07 -070056 </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.
zheilbrone2eb6ef2013-05-09 14:47:52 -070063 (Default = "214748364")
zheilbron9c5793c2013-05-07 11:16:07 -070064 </description>
65 </property>
66
67 <property>
68 <name>storage.memorycomponent.pagesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070069 <value>131072</value>
zheilbron9c5793c2013-05-07 11:16:07 -070070 <description>The page size in bytes for pages allocated to memory
salsubaiee85a78dd2013-09-21 21:30:13 -070071 components. (Default = "131072" // 128KB)
zheilbron9c5793c2013-05-07 11:16:07 -070072 </description>
73 </property>
74
75 <property>
76 <name>storage.memorycomponent.numpages</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070077 <value>256</value>
zheilbron9c5793c2013-05-07 11:16:07 -070078 <description>The number of pages to allocate for a memory component.
salsubaiee85a78dd2013-09-21 21:30:13 -070079 (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)
zheilbron9c5793c2013-05-07 11:16:07 -070088 </description>
89 </property>
90
salsubaiee35119a92013-08-10 13:09:05 -070091 <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
zheilbron9c5793c2013-05-07 11:16:07 -070099 <property>
100 <name>storage.memorycomponent.globalbudget</name>
salsubaiee801bffe2013-09-22 23:42:35 -0700101 <value>536870912</value>
zheilbron9c5793c2013-05-07 11:16:07 -0700102 <description>The total size of memory in bytes that the sum of all
103 open memory
zheilbrona2c71822013-06-04 01:55:16 -0700104 components cannot exceed. (Default = "536870192" // 512MB)
zheilbron9c5793c2013-05-07 11:16:07 -0700105 </description>
106 </property>
107
108 <property>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700109 <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>
salsubaiee85a78dd2013-09-21 21:30:13 -0700115
zheilbrone2eb6ef2013-05-09 14:47:52 -0700116 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700117 <name>txn.log.buffer.numpages</name>
ramangrover2991044942013-05-01 23:39:29 -0700118 <value>8</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700119 <description>The number of in-memory log buffer pages. (Default = "8")
120 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700121 </property>
122
123 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700124 <name>txn.log.buffer.pagesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -0700125 <value>524288</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700126 <description>The size of pages in the in-memory log buffer. (Default =
salsubaiee85a78dd2013-09-21 21:30:13 -0700127 "524288" // 512KB)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700128 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700129 </property>
130
131 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700132 <name>txn.log.partitionsize</name>
zheilbronff6fe592013-05-04 23:11:15 -0700133 <value>2147483648</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700134 <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>
zheilbronff6fe592013-05-04 23:11:15 -0700138 </property>
139
140 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700141 <name>txn.log.checkpoint.lsnthreshold</name>
142 <value>67108864</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700143 <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>
zheilbronff6fe592013-05-04 23:11:15 -0700146 </property>
147
148 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700149 <name>txn.log.checkpoint.pollfrequency</name>
zheilbronff6fe592013-05-04 23:11:15 -0700150 <value>120</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700151 <description>The time in seconds between that the checkpoint thread
152 waits between polls. (Default = "120" // 120s)
153 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700154 </property>
155
156 <property>
icetindil12781312013-06-04 17:56:04 -0700157 <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>
zheilbron9c5793c2013-05-07 11:16:07 -0700165 <name>txn.lock.escalationthreshold</name>
166 <value>1000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700167 <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>
zheilbronff6fe592013-05-04 23:11:15 -0700171 </property>
172
173 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700174 <name>txn.lock.shrinktimer</name>
icetindil12781312013-06-04 17:56:04 -0700175 <value>5000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700176 <description>The time in milliseconds to wait before deallocating
icetindil12781312013-06-04 17:56:04 -0700177 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)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700195 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700196 </property>
zheilbron9c5793c2013-05-07 11:16:07 -0700197
zheilbronff6fe592013-05-04 23:11:15 -0700198 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700199 <name>compiler.sortmemory</name>
zheilbrona2c71822013-06-04 01:55:16 -0700200 <value>33554432</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700201 <description>The amount of memory in bytes given to sort operations.
zheilbrona2c71822013-06-04 01:55:16 -0700202 (Default = "33554432" // 32mb)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700203 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700204 </property>
205
206 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700207 <name>compiler.joinmemory</name>
zheilbrona2c71822013-06-04 01:55:16 -0700208 <value>33554432</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700209 <description>The amount of memory in bytes given to join operations.
zheilbrona2c71822013-06-04 01:55:16 -0700210 (Default = "33554432" // 32mb)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700211 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700212 </property>
213
214 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700215 <name>compiler.framesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -0700216 <value>131072</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700217 <description>The Hyracks frame size that the compiler configures per
salsubaiee85a78dd2013-09-21 21:30:13 -0700218 job. (Default = "131072" // 128KB)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700219 </description>
zheilbron9c5793c2013-05-07 11:16:07 -0700220 </property>
221
222 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700223 <name>web.port</name>
zheilbronff6fe592013-05-04 23:11:15 -0700224 <value>19001</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700225 <description>The port for the ASTERIX web interface. (Default = 19001)
226 </description>
227 </property>
228
229 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700230 <name>api.port</name>
icetindil12781312013-06-04 17:56:04 -0700231 <value>19002</value>
232 <description>The port for the ASTERIX API server. (Default = 19002)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700233 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700234 </property>
235
236 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700237 <name>log.level</name>
zheilbronff6fe592013-05-04 23:11:15 -0700238 <value>INFO</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700239 <description>The minimum log level to be displayed. (Default = INFO)
240 </description>
ramangrover29911d0ff2013-04-23 12:47:34 -0700241 </property>
kerenof13678d2014-07-15 15:57:39 -0700242
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
ramangrover2957ec18e2013-04-16 11:42:30 -0700250</asterixConfiguration>