blob: 6f96191a1551538f488273d553982f1fd738b585 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
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 !-->
ramangrover2957ec18e2013-04-16 11:42:30 -070015<asterixConfiguration xmlns="asterixconf">
ramangrover2957ec18e2013-04-16 11:42:30 -070016
Raman Grover27a0c4c2013-04-16 17:29:40 -070017 <property>
zheilbronff6fe592013-05-04 23:11:15 -070018 <name>nc.java.opts</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070019 <value>-Xmx1536m</value>
zheilbronff6fe592013-05-04 23:11:15 -070020 <description>JVM parameters for each Node Contoller (NC)</description>
Raman Grover27a0c4c2013-04-16 17:29:40 -070021 </property>
22
23 <property>
zheilbronff6fe592013-05-04 23:11:15 -070024 <name>cc.java.opts</name>
Raman Grover27a0c4c2013-04-16 17:29:40 -070025 <value>-Xmx1024m</value>
zheilbronff6fe592013-05-04 23:11:15 -070026 <description>JVM parameters for each Cluster Contoller (CC)
27 </description>
Raman Grover27a0c4c2013-04-16 17:29:40 -070028 </property>
29
ramangrover299281205b2013-10-29 01:18:18 +053030 <property>
31 <name>max.wait.active.cluster</name>
32 <value>60</value>
33 <description>Maximum wait (in seconds) for a cluster to be ACTIVE (all nodes are available)
34 before a submitted query/statement can be executed. (Default = 60 seconds)
35 </description>
36 </property>
37
Raman Grover27a0c4c2013-04-16 17:29:40 -070038 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070039 <name>storage.buffercache.pagesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070040 <value>131072</value>
zheilbron9c5793c2013-05-07 11:16:07 -070041 <description>The page size in bytes for pages in the buffer cache.
salsubaiee85a78dd2013-09-21 21:30:13 -070042 (Default = "131072" // 128KB)
zheilbronff6fe592013-05-04 23:11:15 -070043 </description>
ramangrover29911d0ff2013-04-23 12:47:34 -070044 </property>
45
46 <property>
icetindil12781312013-06-04 17:56:04 -070047 <name>storage.buffercache.size</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070048 <value>536870912</value>
icetindil12781312013-06-04 17:56:04 -070049 <description>The size of memory allocated to the disk buffer cache.
50 The value should be a multiple of the buffer cache page size(Default
salsubaiee85a78dd2013-09-21 21:30:13 -070051 = "536870912" // 512MB)
zheilbron9c5793c2013-05-07 11:16:07 -070052 </description>
53 </property>
54
55 <property>
56 <name>storage.buffercache.maxopenfiles</name>
57 <value>214748364</value>
58 <description>The maximum number of open files in the buffer cache.
zheilbrone2eb6ef2013-05-09 14:47:52 -070059 (Default = "214748364")
zheilbron9c5793c2013-05-07 11:16:07 -070060 </description>
61 </property>
62
63 <property>
64 <name>storage.memorycomponent.pagesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070065 <value>131072</value>
zheilbron9c5793c2013-05-07 11:16:07 -070066 <description>The page size in bytes for pages allocated to memory
salsubaiee85a78dd2013-09-21 21:30:13 -070067 components. (Default = "131072" // 128KB)
zheilbron9c5793c2013-05-07 11:16:07 -070068 </description>
69 </property>
70
71 <property>
72 <name>storage.memorycomponent.numpages</name>
salsubaiee85a78dd2013-09-21 21:30:13 -070073 <value>256</value>
zheilbron9c5793c2013-05-07 11:16:07 -070074 <description>The number of pages to allocate for a memory component.
salsubaiee85a78dd2013-09-21 21:30:13 -070075 (Default = 256)
76 </description>
77 </property>
78
79 <property>
80 <name>storage.metadata.memorycomponent.numpages</name>
81 <value>64</value>
82 <description>The number of pages to allocate for a memory component.
83 (Default = 64)
zheilbron9c5793c2013-05-07 11:16:07 -070084 </description>
85 </property>
86
salsubaiee35119a92013-08-10 13:09:05 -070087 <property>
88 <name>storage.memorycomponent.numcomponents</name>
89 <value>2</value>
90 <description>The number of memory components to be used per lsm index.
91 (Default = 2)
92 </description>
93 </property>
94
zheilbron9c5793c2013-05-07 11:16:07 -070095 <property>
96 <name>storage.memorycomponent.globalbudget</name>
salsubaiee801bffe2013-09-22 23:42:35 -070097 <value>536870912</value>
zheilbron9c5793c2013-05-07 11:16:07 -070098 <description>The total size of memory in bytes that the sum of all
99 open memory
zheilbrona2c71822013-06-04 01:55:16 -0700100 components cannot exceed. (Default = "536870192" // 512MB)
zheilbron9c5793c2013-05-07 11:16:07 -0700101 </description>
102 </property>
103
104 <property>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700105 <name>storage.lsm.bloomfilter.falsepositiverate</name>
106 <value>0.01</value>
107 <description>The maximum acceptable false positive rate for bloom
108 filters associated with LSM indexes. (Default = "0.01" // 1%)
109 </description>
110 </property>
salsubaiee85a78dd2013-09-21 21:30:13 -0700111
zheilbrone2eb6ef2013-05-09 14:47:52 -0700112 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700113 <name>txn.log.buffer.numpages</name>
ramangrover2991044942013-05-01 23:39:29 -0700114 <value>8</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700115 <description>The number of in-memory log buffer pages. (Default = "8")
116 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700117 </property>
118
119 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700120 <name>txn.log.buffer.pagesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -0700121 <value>524288</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700122 <description>The size of pages in the in-memory log buffer. (Default =
salsubaiee85a78dd2013-09-21 21:30:13 -0700123 "524288" // 512KB)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700124 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700125 </property>
126
127 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700128 <name>txn.log.partitionsize</name>
zheilbronff6fe592013-05-04 23:11:15 -0700129 <value>2147483648</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700130 <description>The maximum size of a log file partition allowed before
131 rotating the log to the next partition. (Default = "2147483648" //
132 2GB)
133 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700134 </property>
135
136 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700137 <name>txn.log.checkpoint.lsnthreshold</name>
138 <value>67108864</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700139 <description>The size of the window that the maximum LSN is allowed to
140 be ahead of the checkpoint LSN by. (Default = ""67108864" // 64M)
141 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700142 </property>
143
144 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700145 <name>txn.log.checkpoint.pollfrequency</name>
zheilbronff6fe592013-05-04 23:11:15 -0700146 <value>120</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700147 <description>The time in seconds between that the checkpoint thread
148 waits between polls. (Default = "120" // 120s)
149 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700150 </property>
151
152 <property>
icetindil12781312013-06-04 17:56:04 -0700153 <name>txn.log.checkpoint.history</name>
154 <value>0</value>
155 <description>The number of old log partition files to keep before
156 discarding. (Default = "0")
157 </description>
158 </property>
159
160 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700161 <name>txn.lock.escalationthreshold</name>
162 <value>1000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700163 <description>The number of entity level locks that need to be acquired
164 before the locks are coalesced and escalated into a dataset level
165 lock. (Default = "1000")
166 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700167 </property>
168
169 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700170 <name>txn.lock.shrinktimer</name>
icetindil12781312013-06-04 17:56:04 -0700171 <value>5000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700172 <description>The time in milliseconds to wait before deallocating
icetindil12781312013-06-04 17:56:04 -0700173 unused lock manager memory. (Default = "5000" // 5s)
174 </description>
175 </property>
176
177 <property>
178 <name>txn.lock.timeout.waitthreshold</name>
179 <value>60000</value>
180 <description>The time in milliseconds to wait before labeling a
181 transaction which has been waiting for a lock timed-out. (Default =
182 "60000" // 60s)
183 </description>
184 </property>
185
186 <property>
187 <name>txn.lock.timeout.sweepthreshold</name>
188 <value>10000</value>
189 <description>The time in milliseconds the timeout thread waits between
190 sweeps to detect timed-out transactions. (Default = "10000" // 10s)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700191 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700192 </property>
zheilbron9c5793c2013-05-07 11:16:07 -0700193
zheilbronff6fe592013-05-04 23:11:15 -0700194 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700195 <name>compiler.sortmemory</name>
zheilbrona2c71822013-06-04 01:55:16 -0700196 <value>33554432</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700197 <description>The amount of memory in bytes given to sort operations.
zheilbrona2c71822013-06-04 01:55:16 -0700198 (Default = "33554432" // 32mb)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700199 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700200 </property>
201
202 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700203 <name>compiler.joinmemory</name>
zheilbrona2c71822013-06-04 01:55:16 -0700204 <value>33554432</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700205 <description>The amount of memory in bytes given to join operations.
zheilbrona2c71822013-06-04 01:55:16 -0700206 (Default = "33554432" // 32mb)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700207 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700208 </property>
209
210 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700211 <name>compiler.framesize</name>
salsubaiee85a78dd2013-09-21 21:30:13 -0700212 <value>131072</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700213 <description>The Hyracks frame size that the compiler configures per
salsubaiee85a78dd2013-09-21 21:30:13 -0700214 job. (Default = "131072" // 128KB)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700215 </description>
zheilbron9c5793c2013-05-07 11:16:07 -0700216 </property>
217
218 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700219 <name>web.port</name>
zheilbronff6fe592013-05-04 23:11:15 -0700220 <value>19001</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700221 <description>The port for the ASTERIX web interface. (Default = 19001)
222 </description>
223 </property>
224
225 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700226 <name>api.port</name>
icetindil12781312013-06-04 17:56:04 -0700227 <value>19002</value>
228 <description>The port for the ASTERIX API server. (Default = 19002)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700229 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700230 </property>
231
232 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700233 <name>log.level</name>
zheilbronff6fe592013-05-04 23:11:15 -0700234 <value>INFO</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700235 <description>The minimum log level to be displayed. (Default = INFO)
236 </description>
ramangrover29911d0ff2013-04-23 12:47:34 -0700237 </property>
ramangrover2957ec18e2013-04-16 11:42:30 -0700238</asterixConfiguration>