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 | #*/ |
vinayakb | 5d8a2f2 | 2013-01-29 19:45:44 +0000 | [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 directory of hyracks binaries |
| 22 | HYRACKS_HOME=../../../ |
| 23 | |
| 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 | |
| 45 | #CC JAVA_OPTS |
| 46 | CCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7001,server=y,suspend=n -Xmx1g -Djava.util.logging.config.file=logging.properties" |
| 47 | # Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001" |
| 48 | |
| 49 | #NC JAVA_OPTS |
| 50 | NCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7002,server=y,suspend=n -Xmx1g -Djava.util.logging.config.file=logging.properties" |
| 51 | |