ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 1 | <asterixConfiguration xmlns="asterixconf"> |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 2 | |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 3 | <property> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 4 | <name>nc.java.opts</name> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 5 | <value>-Xmx1024m</value> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 6 | <description>JVM parameters for each Node Contoller (NC)</description> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 7 | </property> |
| 8 | |
| 9 | <property> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 10 | <name>cc.java.opts</name> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 11 | <value>-Xmx1024m</value> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 12 | <description>JVM parameters for each Cluster Contoller (CC) |
| 13 | </description> |
Raman Grover | 27a0c4c | 2013-04-16 17:29:40 -0700 | [diff] [blame] | 14 | </property> |
| 15 | |
| 16 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 17 | <name>storage.buffercache.pagesize</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 18 | <value>32768</value> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 19 | <description>The page size in bytes for pages in the buffer cache. |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 20 | (Default = "32768" // 32KB) |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 21 | </description> |
ramangrover29 | 911d0ff | 2013-04-23 12:47:34 -0700 | [diff] [blame] | 22 | </property> |
| 23 | |
| 24 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 25 | <name>storage.buffercache.numpages</name> |
| 26 | <value>1024</value> |
| 27 | <description>The number of pages allocated to the disk buffer cache. |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 28 | (Default = "1024") |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 29 | </description> |
| 30 | </property> |
| 31 | |
| 32 | <property> |
| 33 | <name>storage.buffercache.maxopenfiles</name> |
| 34 | <value>214748364</value> |
| 35 | <description>The maximum number of open files in the buffer cache. |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 36 | (Default = "214748364") |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 37 | </description> |
| 38 | </property> |
| 39 | |
| 40 | <property> |
| 41 | <name>storage.memorycomponent.pagesize</name> |
| 42 | <value>32768</value> |
| 43 | <description>The page size in bytes for pages allocated to memory |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 44 | components. (Default = "32768" // 32KB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 45 | </description> |
| 46 | </property> |
| 47 | |
| 48 | <property> |
| 49 | <name>storage.memorycomponent.numpages</name> |
| 50 | <value>4096</value> |
| 51 | <description>The number of pages to allocate for a memory component. |
| 52 | (Default = 4096) |
| 53 | </description> |
| 54 | </property> |
| 55 | |
| 56 | <property> |
| 57 | <name>storage.memorycomponent.globalbudget</name> |
| 58 | <value>1073741824</value> |
| 59 | <description>The total size of memory in bytes that the sum of all |
| 60 | open memory |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 61 | components cannot exceed. (Default = "1073741824" // 1GB) |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 62 | </description> |
| 63 | </property> |
| 64 | |
| 65 | <property> |
| 66 | <name>storage.lsm.mergethreshold</name> |
| 67 | <value>3</value> |
| 68 | <description>The number of on-disk components an LSM index can have |
| 69 | before a merge is triggered. (Default = 3) |
| 70 | </description> |
| 71 | </property> |
| 72 | |
| 73 | <property> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 74 | <name>storage.lsm.bloomfilter.falsepositiverate</name> |
| 75 | <value>0.01</value> |
| 76 | <description>The maximum acceptable false positive rate for bloom |
| 77 | filters associated with LSM indexes. (Default = "0.01" // 1%) |
| 78 | </description> |
| 79 | </property> |
| 80 | |
| 81 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 82 | <name>txn.log.buffer.numpages</name> |
ramangrover29 | 9104494 | 2013-05-01 23:39:29 -0700 | [diff] [blame] | 83 | <value>8</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 84 | <description>The number of in-memory log buffer pages. (Default = "8") |
| 85 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 86 | </property> |
| 87 | |
| 88 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 89 | <name>txn.log.buffer.pagesize</name> |
| 90 | <value>131072</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 91 | <description>The size of pages in the in-memory log buffer. (Default = |
| 92 | "131072" // 128KB) |
| 93 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 94 | </property> |
| 95 | |
| 96 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 97 | <name>txn.log.partitionsize</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 98 | <value>2147483648</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 99 | <description>The maximum size of a log file partition allowed before |
| 100 | rotating the log to the next partition. (Default = "2147483648" // |
| 101 | 2GB) |
| 102 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 103 | </property> |
| 104 | |
| 105 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 106 | <name>txn.log.groupcommitinterval</name> |
| 107 | <value>200</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 108 | <description>The group commit wait time in milliseconds. (Default = |
| 109 | "200" // 2ms) |
| 110 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 111 | </property> |
| 112 | |
| 113 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 114 | <name>txn.log.checkpoint.lsnthreshold</name> |
| 115 | <value>67108864</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 116 | <description>The size of the window that the maximum LSN is allowed to |
| 117 | be ahead of the checkpoint LSN by. (Default = ""67108864" // 64M) |
| 118 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 119 | </property> |
| 120 | |
| 121 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 122 | <name>txn.log.checkpoint.pollfrequency</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 123 | <value>120</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 124 | <description>The time in seconds between that the checkpoint thread |
| 125 | waits between polls. (Default = "120" // 120s) |
| 126 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 127 | </property> |
| 128 | |
| 129 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 130 | <name>txn.lock.escalationthreshold</name> |
| 131 | <value>1000</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 132 | <description>The number of entity level locks that need to be acquired |
| 133 | before the locks are coalesced and escalated into a dataset level |
| 134 | lock. (Default = "1000") |
| 135 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 136 | </property> |
| 137 | |
| 138 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 139 | <name>txn.lock.shrinktimer</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 140 | <value>120000</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 141 | <description>The time in milliseconds to wait before deallocating |
| 142 | unused lock manager memory. (Default = "120000" // 120s) |
| 143 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 144 | </property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 145 | |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 146 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 147 | <name>compiler.sortmemory</name> |
| 148 | <value>536870912</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 149 | <description>The amount of memory in bytes given to sort operations. |
| 150 | (Default = "536870912" // 512mb) |
| 151 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 152 | </property> |
| 153 | |
| 154 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 155 | <name>compiler.joinmemory</name> |
| 156 | <value>536870912</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 157 | <description>The amount of memory in bytes given to join operations. |
| 158 | (Default = "536870912" // 512mb) |
| 159 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 160 | </property> |
| 161 | |
| 162 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 163 | <name>compiler.framesize</name> |
| 164 | <value>32768</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 165 | <description>The Hyracks frame size that the compiler configures per |
| 166 | job. (Default = "32768" // 32KB) |
| 167 | </description> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 168 | </property> |
| 169 | |
| 170 | <property> |
| 171 | <name>external.webport</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 172 | <value>19001</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 173 | <description>The port for the ASTERIX web interface. (Default = 19001) |
| 174 | </description> |
| 175 | </property> |
| 176 | |
| 177 | <property> |
| 178 | <name>external.apiserver</name> |
| 179 | <value>19101</value> |
| 180 | <description>The port for the ASTERIX API server. (Default = 19101) |
| 181 | </description> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 182 | </property> |
| 183 | |
| 184 | <property> |
zheilbron | 9c5793c | 2013-05-07 11:16:07 -0700 | [diff] [blame] | 185 | <name>external.loglevel</name> |
zheilbron | ff6fe59 | 2013-05-04 23:11:15 -0700 | [diff] [blame] | 186 | <value>INFO</value> |
zheilbron | e2eb6ef | 2013-05-09 14:47:52 -0700 | [diff] [blame^] | 187 | <description>The minimum log level to be displayed. (Default = INFO) |
| 188 | </description> |
ramangrover29 | 911d0ff | 2013-04-23 12:47:34 -0700 | [diff] [blame] | 189 | </property> |
ramangrover29 | 57ec18e | 2013-04-16 11:42:30 -0700 | [diff] [blame] | 190 | </asterixConfiguration> |