-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasterix-configuration.xml
254 lines (222 loc) · 6.83 KB
/
asterix-configuration.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<asterixConfiguration xmlns="asterixconf">
<instanceName>asterix</instanceName>
<metadataNode>nc1</metadataNode>
<store>
<ncId>nc1</ncId>
<storeDirs>storage1/</storeDirs>
</store>
<store>
<ncId>nc2</ncId>
<storeDirs>storage2</storeDirs>
</store>
<coredump>
<ncId>nc1</ncId>
<coredumpPath>cores1</coredumpPath>
</coredump>
<coredump>
<ncId>nc2</ncId>
<coredumpPath>cores2</coredumpPath>
</coredump>
<transactionLogDir>
<ncId>nc1</ncId>
<txnLogDirPath>txnLogs1</txnLogDirPath>
</transactionLogDir>
<transactionLogDir>
<ncId>nc2</ncId>
<txnLogDirPath>txnLogs2</txnLogDirPath>
</transactionLogDir>
<property>
<name>nc.java.opts</name>
<value>-Xmx1536m</value>
<description>JVM parameters for each Node Contoller (NC)</description>
</property>
<property>
<name>cc.java.opts</name>
<value>-Xmx1024m</value>
<description>JVM parameters for each Cluster Contoller (CC)
</description>
</property>
<property>
<name>max.wait.active.cluster</name>
<value>60</value>
<description>Maximum wait (in seconds) for a cluster to be ACTIVE (all nodes are available)
before a submitted query/statement can be executed. (Default = 60 seconds)
</description>
</property>
<property>
<name>storage.buffercache.pagesize</name>
<value>131072</value>
<description>The page size in bytes for pages in the buffer cache.
(Default = "131072" // 128KB)
</description>
</property>
<property>
<name>storage.buffercache.size</name>
<value>536870912</value>
<description>The size of memory allocated to the disk buffer cache.
The value should be a multiple of the buffer cache page size(Default
= "536870912" // 512MB)
</description>
</property>
<property>
<name>storage.buffercache.maxopenfiles</name>
<value>214748364</value>
<description>The maximum number of open files in the buffer cache.
(Default = "214748364")
</description>
</property>
<property>
<name>storage.memorycomponent.pagesize</name>
<value>131072</value>
<description>The page size in bytes for pages allocated to memory
components. (Default = "131072" // 128KB)
</description>
</property>
<property>
<name>storage.memorycomponent.numpages</name>
<value>256</value>
<description>The number of pages to allocate for a memory component.
(Default = 256)
</description>
</property>
<property>
<name>storage.metadata.memorycomponent.numpages</name>
<value>64</value>
<description>The number of pages to allocate for a memory component.
(Default = 64)
</description>
</property>
<property>
<name>storage.memorycomponent.numcomponents</name>
<value>2</value>
<description>The number of memory components to be used per lsm index.
(Default = 2)
</description>
</property>
<property>
<name>storage.memorycomponent.globalbudget</name>
<value>536870912</value>
<description>The total size of memory in bytes that the sum of all
open memory
components cannot exceed. (Default = "536870192" // 512MB)
</description>
</property>
<property>
<name>storage.lsm.bloomfilter.falsepositiverate</name>
<value>0.01</value>
<description>The maximum acceptable false positive rate for bloom
filters associated with LSM indexes. (Default = "0.01" // 1%)
</description>
</property>
<property>
<name>txn.log.buffer.numpages</name>
<value>8</value>
<description>The number of in-memory log buffer pages. (Default = "8")
</description>
</property>
<property>
<name>txn.log.buffer.pagesize</name>
<value>524288</value>
<description>The size of pages in the in-memory log buffer. (Default =
"524288" // 512KB)
</description>
</property>
<property>
<name>txn.log.partitionsize</name>
<value>2147483648</value>
<description>The maximum size of a log file partition allowed before
rotating the log to the next partition. (Default = "2147483648" //
2GB)
</description>
</property>
<property>
<name>txn.log.checkpoint.lsnthreshold</name>
<value>67108864</value>
<description>The size of the window that the maximum LSN is allowed to
be ahead of the checkpoint LSN by. (Default = ""67108864" // 64M)
</description>
</property>
<property>
<name>txn.log.checkpoint.pollfrequency</name>
<value>120</value>
<description>The time in seconds between that the checkpoint thread
waits between polls. (Default = "120" // 120s)
</description>
</property>
<property>
<name>txn.log.checkpoint.history</name>
<value>0</value>
<description>The number of old log partition files to keep before
discarding. (Default = "0")
</description>
</property>
<property>
<name>txn.lock.escalationthreshold</name>
<value>1000</value>
<description>The number of entity level locks that need to be acquired
before the locks are coalesced and escalated into a dataset level
lock. (Default = "1000")
</description>
</property>
<property>
<name>txn.lock.shrinktimer</name>
<value>5000</value>
<description>The time in milliseconds to wait before deallocating
unused lock manager memory. (Default = "5000" // 5s)
</description>
</property>
<property>
<name>txn.lock.timeout.waitthreshold</name>
<value>60000</value>
<description>The time in milliseconds to wait before labeling a
transaction which has been waiting for a lock timed-out. (Default =
"60000" // 60s)
</description>
</property>
<property>
<name>txn.lock.timeout.sweepthreshold</name>
<value>10000</value>
<description>The time in milliseconds the timeout thread waits between
sweeps to detect timed-out transactions. (Default = "10000" // 10s)
</description>
</property>
<property>
<name>compiler.sortmemory</name>
<value>33554432</value>
<description>The amount of memory in bytes given to sort operations.
(Default = "33554432" // 32mb)
</description>
</property>
<property>
<name>compiler.joinmemory</name>
<value>33554432</value>
<description>The amount of memory in bytes given to join operations.
(Default = "33554432" // 32mb)
</description>
</property>
<property>
<name>compiler.framesize</name>
<value>131072</value>
<description>The Hyracks frame size that the compiler configures per
job. (Default = "131072" // 128KB)
</description>
</property>
<property>
<name>web.port</name>
<value>19001</value>
<description>The port for the ASTERIX web interface. (Default = 19001)
</description>
</property>
<property>
<name>api.port</name>
<value>19002</value>
<description>The port for the ASTERIX API server. (Default = 19002)
</description>
</property>
<property>
<name>log.level</name>
<value>INFO</value>
<description>The minimum log level to be displayed. (Default = INFO)
</description>
</property>
</asterixConfiguration>