blob: c9907e36607643a99325afffdb9ce166c7941614 [file] [log] [blame]
ramangrover2957ec18e2013-04-16 11:42:30 -07001<asterixConfiguration xmlns="asterixconf">
ramangrover2957ec18e2013-04-16 11:42:30 -07002
Raman Grover27a0c4c2013-04-16 17:29:40 -07003 <property>
zheilbronff6fe592013-05-04 23:11:15 -07004 <name>nc.java.opts</name>
Raman Grover27a0c4c2013-04-16 17:29:40 -07005 <value>-Xmx1024m</value>
zheilbronff6fe592013-05-04 23:11:15 -07006 <description>JVM parameters for each Node Contoller (NC)</description>
Raman Grover27a0c4c2013-04-16 17:29:40 -07007 </property>
8
9 <property>
zheilbronff6fe592013-05-04 23:11:15 -070010 <name>cc.java.opts</name>
Raman Grover27a0c4c2013-04-16 17:29:40 -070011 <value>-Xmx1024m</value>
zheilbronff6fe592013-05-04 23:11:15 -070012 <description>JVM parameters for each Cluster Contoller (CC)
13 </description>
Raman Grover27a0c4c2013-04-16 17:29:40 -070014 </property>
15
16 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070017 <name>storage.buffercache.pagesize</name>
zheilbronff6fe592013-05-04 23:11:15 -070018 <value>32768</value>
zheilbron9c5793c2013-05-07 11:16:07 -070019 <description>The page size in bytes for pages in the buffer cache.
zheilbrone2eb6ef2013-05-09 14:47:52 -070020 (Default = "32768" // 32KB)
zheilbronff6fe592013-05-04 23:11:15 -070021 </description>
ramangrover29911d0ff2013-04-23 12:47:34 -070022 </property>
23
24 <property>
icetindil12781312013-06-04 17:56:04 -070025 <name>storage.buffercache.size</name>
26 <value>33554432</value>
27 <description>The size of memory allocated to the disk buffer cache.
28 The value should be a multiple of the buffer cache page size(Default
29 = "33554432" // 32MB)
zheilbron9c5793c2013-05-07 11:16:07 -070030 </description>
31 </property>
32
33 <property>
34 <name>storage.buffercache.maxopenfiles</name>
35 <value>214748364</value>
36 <description>The maximum number of open files in the buffer cache.
zheilbrone2eb6ef2013-05-09 14:47:52 -070037 (Default = "214748364")
zheilbron9c5793c2013-05-07 11:16:07 -070038 </description>
39 </property>
40
41 <property>
42 <name>storage.memorycomponent.pagesize</name>
43 <value>32768</value>
44 <description>The page size in bytes for pages allocated to memory
zheilbrone2eb6ef2013-05-09 14:47:52 -070045 components. (Default = "32768" // 32KB)
zheilbron9c5793c2013-05-07 11:16:07 -070046 </description>
47 </property>
48
49 <property>
50 <name>storage.memorycomponent.numpages</name>
zheilbronb2844692013-05-28 22:14:27 -070051 <value>1024</value>
zheilbron9c5793c2013-05-07 11:16:07 -070052 <description>The number of pages to allocate for a memory component.
zheilbronb2844692013-05-28 22:14:27 -070053 (Default = 1024)
zheilbron9c5793c2013-05-07 11:16:07 -070054 </description>
55 </property>
56
57 <property>
58 <name>storage.memorycomponent.globalbudget</name>
zheilbrona2c71822013-06-04 01:55:16 -070059 <value>536870192</value>
zheilbron9c5793c2013-05-07 11:16:07 -070060 <description>The total size of memory in bytes that the sum of all
61 open memory
zheilbrona2c71822013-06-04 01:55:16 -070062 components cannot exceed. (Default = "536870192" // 512MB)
zheilbron9c5793c2013-05-07 11:16:07 -070063 </description>
64 </property>
65
66 <property>
67 <name>storage.lsm.mergethreshold</name>
68 <value>3</value>
69 <description>The number of on-disk components an LSM index can have
70 before a merge is triggered. (Default = 3)
71 </description>
72 </property>
73
74 <property>
zheilbrone2eb6ef2013-05-09 14:47:52 -070075 <name>storage.lsm.bloomfilter.falsepositiverate</name>
76 <value>0.01</value>
77 <description>The maximum acceptable false positive rate for bloom
78 filters associated with LSM indexes. (Default = "0.01" // 1%)
79 </description>
80 </property>
81
82 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070083 <name>txn.log.buffer.numpages</name>
ramangrover2991044942013-05-01 23:39:29 -070084 <value>8</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -070085 <description>The number of in-memory log buffer pages. (Default = "8")
86 </description>
zheilbronff6fe592013-05-04 23:11:15 -070087 </property>
88
89 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070090 <name>txn.log.buffer.pagesize</name>
91 <value>131072</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -070092 <description>The size of pages in the in-memory log buffer. (Default =
93 "131072" // 128KB)
94 </description>
zheilbronff6fe592013-05-04 23:11:15 -070095 </property>
96
97 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070098 <name>txn.log.partitionsize</name>
zheilbronff6fe592013-05-04 23:11:15 -070099 <value>2147483648</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700100 <description>The maximum size of a log file partition allowed before
101 rotating the log to the next partition. (Default = "2147483648" //
102 2GB)
103 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700104 </property>
105
106 <property>
icetindil12781312013-06-04 17:56:04 -0700107 <name>txn.log.disksectorsize</name>
108 <value>4096</value>
109 <description>The size of a disk sector. (Default = "4096")
110 </description>
111 </property>
112
113 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700114 <name>txn.log.groupcommitinterval</name>
icetindil91f94b52013-05-31 16:02:23 -0700115 <value>1</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700116 <description>The group commit wait time in milliseconds. (Default =
icetindil12781312013-06-04 17:56:04 -0700117 "10" // 0.1ms)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700118 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700119 </property>
120
121 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700122 <name>txn.log.checkpoint.lsnthreshold</name>
123 <value>67108864</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700124 <description>The size of the window that the maximum LSN is allowed to
125 be ahead of the checkpoint LSN by. (Default = ""67108864" // 64M)
126 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700127 </property>
128
129 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700130 <name>txn.log.checkpoint.pollfrequency</name>
zheilbronff6fe592013-05-04 23:11:15 -0700131 <value>120</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700132 <description>The time in seconds between that the checkpoint thread
133 waits between polls. (Default = "120" // 120s)
134 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700135 </property>
136
137 <property>
icetindil12781312013-06-04 17:56:04 -0700138 <name>txn.log.checkpoint.history</name>
139 <value>0</value>
140 <description>The number of old log partition files to keep before
141 discarding. (Default = "0")
142 </description>
143 </property>
144
145 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700146 <name>txn.lock.escalationthreshold</name>
147 <value>1000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700148 <description>The number of entity level locks that need to be acquired
149 before the locks are coalesced and escalated into a dataset level
150 lock. (Default = "1000")
151 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700152 </property>
153
154 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700155 <name>txn.lock.shrinktimer</name>
icetindil12781312013-06-04 17:56:04 -0700156 <value>5000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700157 <description>The time in milliseconds to wait before deallocating
icetindil12781312013-06-04 17:56:04 -0700158 unused lock manager memory. (Default = "5000" // 5s)
159 </description>
160 </property>
161
162 <property>
163 <name>txn.lock.timeout.waitthreshold</name>
164 <value>60000</value>
165 <description>The time in milliseconds to wait before labeling a
166 transaction which has been waiting for a lock timed-out. (Default =
167 "60000" // 60s)
168 </description>
169 </property>
170
171 <property>
172 <name>txn.lock.timeout.sweepthreshold</name>
173 <value>10000</value>
174 <description>The time in milliseconds the timeout thread waits between
175 sweeps to detect timed-out transactions. (Default = "10000" // 10s)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700176 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700177 </property>
zheilbron9c5793c2013-05-07 11:16:07 -0700178
zheilbronff6fe592013-05-04 23:11:15 -0700179 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700180 <name>compiler.sortmemory</name>
zheilbrona2c71822013-06-04 01:55:16 -0700181 <value>33554432</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700182 <description>The amount of memory in bytes given to sort operations.
zheilbrona2c71822013-06-04 01:55:16 -0700183 (Default = "33554432" // 32mb)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700184 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700185 </property>
186
187 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700188 <name>compiler.joinmemory</name>
zheilbrona2c71822013-06-04 01:55:16 -0700189 <value>33554432</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700190 <description>The amount of memory in bytes given to join operations.
zheilbrona2c71822013-06-04 01:55:16 -0700191 (Default = "33554432" // 32mb)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700192 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700193 </property>
194
195 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700196 <name>compiler.framesize</name>
197 <value>32768</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700198 <description>The Hyracks frame size that the compiler configures per
199 job. (Default = "32768" // 32KB)
200 </description>
zheilbron9c5793c2013-05-07 11:16:07 -0700201 </property>
202
203 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700204 <name>web.port</name>
zheilbronff6fe592013-05-04 23:11:15 -0700205 <value>19001</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700206 <description>The port for the ASTERIX web interface. (Default = 19001)
207 </description>
208 </property>
209
210 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700211 <name>api.port</name>
icetindil12781312013-06-04 17:56:04 -0700212 <value>19002</value>
213 <description>The port for the ASTERIX API server. (Default = 19002)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700214 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700215 </property>
216
217 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700218 <name>log.level</name>
zheilbronff6fe592013-05-04 23:11:15 -0700219 <value>INFO</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700220 <description>The minimum log level to be displayed. (Default = INFO)
221 </description>
ramangrover29911d0ff2013-04-23 12:47:34 -0700222 </property>
ramangrover2957ec18e2013-04-16 11:42:30 -0700223</asterixConfiguration>