blob: 4972bfde28b196818ba557ef2b5157c14c31caa4 [file] [log] [blame]
Ian Maxonf7b64532015-12-09 17:28:18 -08001<!--
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.
18 !-->
19<asterixConfiguration xmlns="asterixconf">
20
21 <property>
22 <name>nc.java.opts</name>
23 <value>-Xmx3096m -Dnode.Resolver="org.apache.asterix.external.util.IdentitiyResolverFactory"</value>
24 <description>JVM parameters for each Node Contoller (NC)</description>
25 </property>
26
27 <property>
28 <name>cc.java.opts</name>
29 <value>-Xmx1024m -Dnode.Resolver="org.apache.asterix.external.util.IdentitiyResolverFactory"</value>
30 <description>JVM parameters for each Cluster Contoller (CC)
31 </description>
32 </property>
33
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
42 <property>
43 <name>storage.buffercache.pagesize</name>
44 <value>131072</value>
45 <description>The page size in bytes for pages in the buffer cache.
46 (Default = "131072" // 128KB)
47 </description>
48 </property>
49
50 <property>
51 <name>storage.buffercache.size</name>
52 <value>536870912</value>
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
55 = "536870912" // 512MB)
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.
63 (Default = "214748364")
64 </description>
65 </property>
66
67 <property>
68 <name>storage.memorycomponent.pagesize</name>
69 <value>131072</value>
70 <description>The page size in bytes for pages allocated to memory
71 components. (Default = "131072" // 128KB)
72 </description>
73 </property>
74
75 <property>
76 <name>storage.memorycomponent.numpages</name>
77 <value>256</value>
78 <description>The number of pages to allocate for a memory component.
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)
88 </description>
89 </property>
90
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
99 <property>
100 <name>storage.memorycomponent.globalbudget</name>
101 <value>1073741824</value>
102 <description>The total size of memory in bytes that the sum of all
103 open memory
104 components cannot exceed. (Default = "536870192" // 512MB)
105 </description>
106 </property>
107
108 <property>
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>
115
116 <property>
117 <name>txn.log.buffer.numpages</name>
118 <value>8</value>
119 <description>The number of in-memory log buffer pages. (Default = "8")
120 </description>
121 </property>
122
123 <property>
124 <name>txn.log.buffer.pagesize</name>
125 <value>524288</value>
126 <description>The size of pages in the in-memory log buffer. (Default =
127 "524288" // 512KB)
128 </description>
129 </property>
130
131 <property>
132 <name>txn.log.partitionsize</name>
133 <value>2147483648</value>
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>
138 </property>
139
140 <property>
141 <name>txn.log.checkpoint.lsnthreshold</name>
142 <value>67108864</value>
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>
146 </property>
147
148 <property>
149 <name>txn.log.checkpoint.pollfrequency</name>
150 <value>120</value>
151 <description>The time in seconds between that the checkpoint thread
152 waits between polls. (Default = "120" // 120s)
153 </description>
154 </property>
155
156 <property>
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>
165 <name>txn.lock.escalationthreshold</name>
166 <value>1000</value>
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>
171 </property>
172
173 <property>
174 <name>txn.lock.shrinktimer</name>
175 <value>5000</value>
176 <description>The time in milliseconds to wait before deallocating
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)
195 </description>
196 </property>
197
198 <property>
199 <name>compiler.sortmemory</name>
200 <value>33554432</value>
201 <description>The amount of memory in bytes given to sort operations.
202 (Default = "33554432" // 32mb)
203 </description>
204 </property>
205
206 <property>
207 <name>compiler.joinmemory</name>
208 <value>33554432</value>
209 <description>The amount of memory in bytes given to join operations.
210 (Default = "33554432" // 32mb)
211 </description>
212 </property>
213
214 <property>
215 <name>compiler.framesize</name>
216 <value>131072</value>
217 <description>The Hyracks frame size that the compiler configures per
218 job. (Default = "131072" // 128KB)
219 </description>
220 </property>
221
222 <property>
223 <name>compiler.pregelix.home</name>
224 <value>~/pregelix</value>
225 </property>
226
227 <property>
228 <name>web.port</name>
229 <value>19001</value>
230 <description>The port for the ASTERIX web interface. (Default = 19001)
231 </description>
232 </property>
233
234 <property>
235 <name>api.port</name>
236 <value>19002</value>
237 <description>The port for the ASTERIX API server. (Default = 19002)
238 </description>
239 </property>
240
241 <property>
242 <name>log.level</name>
243 <value>INFO</value>
244 <description>The minimum log level to be displayed. (Default = INFO)
245 </description>
246 </property>
247
248 <property>
249 <name>plot.activate</name>
250 <value>false</value>
251 <description>Enabling plot of Algebricks plan to tmp folder. (Default = false)
252 </description>
253 </property>
254
255</asterixConfiguration>