blob: 8394a96df4d986e5d1e4fad638940a92f582a77b [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>
icetindil12781312013-06-04 17:56:04 -070083 <name>txn.log.directory</name>
84 <value>asterix_logs/</value>
85 <description>The directory location for transaction logs. (Default =
86 "asterix_logs/")
87 </description>
88 </property>
89
90 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070091 <name>txn.log.buffer.numpages</name>
ramangrover2991044942013-05-01 23:39:29 -070092 <value>8</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -070093 <description>The number of in-memory log buffer pages. (Default = "8")
94 </description>
zheilbronff6fe592013-05-04 23:11:15 -070095 </property>
96
97 <property>
zheilbron9c5793c2013-05-07 11:16:07 -070098 <name>txn.log.buffer.pagesize</name>
99 <value>131072</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700100 <description>The size of pages in the in-memory log buffer. (Default =
101 "131072" // 128KB)
102 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700103 </property>
104
105 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700106 <name>txn.log.partitionsize</name>
zheilbronff6fe592013-05-04 23:11:15 -0700107 <value>2147483648</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700108 <description>The maximum size of a log file partition allowed before
109 rotating the log to the next partition. (Default = "2147483648" //
110 2GB)
111 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700112 </property>
113
114 <property>
icetindil12781312013-06-04 17:56:04 -0700115 <name>txn.log.disksectorsize</name>
116 <value>4096</value>
117 <description>The size of a disk sector. (Default = "4096")
118 </description>
119 </property>
120
121 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700122 <name>txn.log.groupcommitinterval</name>
icetindil91f94b52013-05-31 16:02:23 -0700123 <value>1</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700124 <description>The group commit wait time in milliseconds. (Default =
icetindil12781312013-06-04 17:56:04 -0700125 "10" // 0.1ms)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700126 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700127 </property>
128
129 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700130 <name>txn.log.checkpoint.lsnthreshold</name>
131 <value>67108864</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700132 <description>The size of the window that the maximum LSN is allowed to
133 be ahead of the checkpoint LSN by. (Default = ""67108864" // 64M)
134 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700135 </property>
136
137 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700138 <name>txn.log.checkpoint.pollfrequency</name>
zheilbronff6fe592013-05-04 23:11:15 -0700139 <value>120</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700140 <description>The time in seconds between that the checkpoint thread
141 waits between polls. (Default = "120" // 120s)
142 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700143 </property>
144
145 <property>
icetindil12781312013-06-04 17:56:04 -0700146 <name>txn.log.checkpoint.history</name>
147 <value>0</value>
148 <description>The number of old log partition files to keep before
149 discarding. (Default = "0")
150 </description>
151 </property>
152
153 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700154 <name>txn.lock.escalationthreshold</name>
155 <value>1000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700156 <description>The number of entity level locks that need to be acquired
157 before the locks are coalesced and escalated into a dataset level
158 lock. (Default = "1000")
159 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700160 </property>
161
162 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700163 <name>txn.lock.shrinktimer</name>
icetindil12781312013-06-04 17:56:04 -0700164 <value>5000</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700165 <description>The time in milliseconds to wait before deallocating
icetindil12781312013-06-04 17:56:04 -0700166 unused lock manager memory. (Default = "5000" // 5s)
167 </description>
168 </property>
169
170 <property>
171 <name>txn.lock.timeout.waitthreshold</name>
172 <value>60000</value>
173 <description>The time in milliseconds to wait before labeling a
174 transaction which has been waiting for a lock timed-out. (Default =
175 "60000" // 60s)
176 </description>
177 </property>
178
179 <property>
180 <name>txn.lock.timeout.sweepthreshold</name>
181 <value>10000</value>
182 <description>The time in milliseconds the timeout thread waits between
183 sweeps to detect timed-out transactions. (Default = "10000" // 10s)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700184 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700185 </property>
zheilbron9c5793c2013-05-07 11:16:07 -0700186
zheilbronff6fe592013-05-04 23:11:15 -0700187 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700188 <name>compiler.sortmemory</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 sort 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.joinmemory</name>
zheilbrona2c71822013-06-04 01:55:16 -0700197 <value>33554432</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700198 <description>The amount of memory in bytes given to join operations.
zheilbrona2c71822013-06-04 01:55:16 -0700199 (Default = "33554432" // 32mb)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700200 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700201 </property>
202
203 <property>
zheilbron9c5793c2013-05-07 11:16:07 -0700204 <name>compiler.framesize</name>
205 <value>32768</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700206 <description>The Hyracks frame size that the compiler configures per
207 job. (Default = "32768" // 32KB)
208 </description>
zheilbron9c5793c2013-05-07 11:16:07 -0700209 </property>
210
211 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700212 <name>web.port</name>
zheilbronff6fe592013-05-04 23:11:15 -0700213 <value>19001</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700214 <description>The port for the ASTERIX web interface. (Default = 19001)
215 </description>
216 </property>
217
218 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700219 <name>api.port</name>
icetindil12781312013-06-04 17:56:04 -0700220 <value>19002</value>
221 <description>The port for the ASTERIX API server. (Default = 19002)
zheilbrone2eb6ef2013-05-09 14:47:52 -0700222 </description>
zheilbronff6fe592013-05-04 23:11:15 -0700223 </property>
224
225 <property>
zheilbron9a430b22013-05-09 16:49:42 -0700226 <name>log.level</name>
zheilbronff6fe592013-05-04 23:11:15 -0700227 <value>INFO</value>
zheilbrone2eb6ef2013-05-09 14:47:52 -0700228 <description>The minimum log level to be displayed. (Default = INFO)
229 </description>
ramangrover29911d0ff2013-04-23 12:47:34 -0700230 </property>
ramangrover2957ec18e2013-04-16 11:42:30 -0700231</asterixConfiguration>