Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | #/* |
| 2 | # Copyright 2009-2013 by The Regents of the University of California |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # you may obtain a copy of the License from |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | #*/ |
buyingyi | 1341a16 | 2013-06-05 15:07:52 -0700 | [diff] [blame] | 15 | #The CC port for Hyracks clients |
| 16 | CC_CLIENTPORT=3099 |
| 17 | |
| 18 | #The CC port for Hyracks cluster management |
Yingyi Bu | 26c6bb6 | 2014-06-06 20:48:32 -0700 | [diff] [blame] | 19 | CC_CLUSTERPORT=4099 |
buyingyi | 1341a16 | 2013-06-05 15:07:52 -0700 | [diff] [blame] | 20 | |
Jake Biesinger | 0b5368c | 2013-12-02 17:23:37 -0800 | [diff] [blame] | 21 | #The CC port for REST communication |
| 22 | CC_HTTPPORT=16001 |
| 23 | |
buyingyi | 1341a16 | 2013-06-05 15:07:52 -0700 | [diff] [blame] | 24 | #The tmp directory for cc to install jars |
| 25 | CCTMP_DIR=/tmp/t1 |
| 26 | |
| 27 | #The tmp directory for nc to install jars |
| 28 | NCTMP_DIR=/tmp/t2 |
| 29 | |
| 30 | #The directory to put cc logs |
| 31 | CCLOGS_DIR=$CCTMP_DIR/logs |
| 32 | |
| 33 | #The directory to put nc logs |
| 34 | NCLOGS_DIR=$NCTMP_DIR/logs |
| 35 | |
| 36 | #Comma separated I/O directories for the spilling of external sort |
| 37 | IO_DIRS="/tmp/t3,/tmp/t4" |
| 38 | |
| 39 | #The JAVA_HOME |
| 40 | JAVA_HOME=$JAVA_HOME |
| 41 | |
| 42 | #The frame size of the internal dataflow engine |
| 43 | FRAME_SIZE=65536 |
| 44 | |
Yingyi Bu | 26c6bb6 | 2014-06-06 20:48:32 -0700 | [diff] [blame] | 45 | #The frame size of the vertex storage, it should be larger than the largest vertex byte size |
| 46 | VFRAME_SIZE=65536 |
| 47 | |
Jake Biesinger | 0b5368c | 2013-12-02 17:23:37 -0800 | [diff] [blame] | 48 | #The number of jobs whose logs are kept in-memory on the CC |
| 49 | JOB_HISTORY_SIZE=0 |
| 50 | |
buyingyi | 1341a16 | 2013-06-05 15:07:52 -0700 | [diff] [blame] | 51 | #CC JAVA_OPTS |
Yingyi Bu | 497da87 | 2013-12-01 14:46:28 -0800 | [diff] [blame] | 52 | CCJAVA_OPTS="-Djava.util.logging.config.file=logging.properties" |
| 53 | # debug option: CCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7001,server=y,suspend=n -Djava.util.logging.config.file=logging.properties" |
buyingyi | 1341a16 | 2013-06-05 15:07:52 -0700 | [diff] [blame] | 54 | # Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001" |
| 55 | |
| 56 | #NC JAVA_OPTS |
Yingyi Bu | 497da87 | 2013-12-01 14:46:28 -0800 | [diff] [blame] | 57 | NCJAVA_OPTS="-Djava.util.logging.config.file=logging.properties" |
| 58 | # debug option: NCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7002,server=y,suspend=n -Djava.util.logging.config.file=logging.properties" |
buyingyi | 1341a16 | 2013-06-05 15:07:52 -0700 | [diff] [blame] | 59 | # Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001" |