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 |
| 19 | CC_CLUSTERPORT=1099 |
| 20 | |
| 21 | #The tmp directory for cc to install jars |
| 22 | CCTMP_DIR=/tmp/t1 |
| 23 | |
| 24 | #The tmp directory for nc to install jars |
| 25 | NCTMP_DIR=/tmp/t2 |
| 26 | |
| 27 | #The directory to put cc logs |
| 28 | CCLOGS_DIR=$CCTMP_DIR/logs |
| 29 | |
| 30 | #The directory to put nc logs |
| 31 | NCLOGS_DIR=$NCTMP_DIR/logs |
| 32 | |
| 33 | #Comma separated I/O directories for the spilling of external sort |
| 34 | IO_DIRS="/tmp/t3,/tmp/t4" |
| 35 | |
| 36 | #The JAVA_HOME |
| 37 | JAVA_HOME=$JAVA_HOME |
| 38 | |
| 39 | #The frame size of the internal dataflow engine |
| 40 | FRAME_SIZE=65536 |
| 41 | |
| 42 | #CC JAVA_OPTS |
Yingyi Bu | 497da87 | 2013-12-01 14:46:28 -0800 | [diff] [blame^] | 43 | CCJAVA_OPTS="-Djava.util.logging.config.file=logging.properties" |
| 44 | # 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] | 45 | # Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001" |
| 46 | |
| 47 | #NC JAVA_OPTS |
Yingyi Bu | 497da87 | 2013-12-01 14:46:28 -0800 | [diff] [blame^] | 48 | NCJAVA_OPTS="-Djava.util.logging.config.file=logging.properties" |
| 49 | # 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] | 50 | # Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001" |