anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 1 | #The CC port for Hyracks clients |
| 2 | CC_CLIENTPORT=3099 |
| 3 | |
| 4 | #The CC port for Hyracks cluster management |
| 5 | CC_CLUSTERPORT=1099 |
| 6 | |
| 7 | #The directory of hyracks binaries |
| 8 | HYRACKS_HOME=../../../../hyracks |
| 9 | |
| 10 | #The tmp directory for cc to install jars |
| 11 | CCTMP_DIR=/tmp/t1 |
| 12 | |
| 13 | #The tmp directory for nc to install jars |
| 14 | NCTMP_DIR=/tmp/t2 |
| 15 | |
| 16 | #The directory to put cc logs |
| 17 | CCLOGS_DIR=$CCTMP_DIR/logs |
| 18 | |
| 19 | #The directory to put nc logs |
| 20 | NCLOGS_DIR=$NCTMP_DIR/logs |
| 21 | |
| 22 | #Comma separated I/O directories for the spilling of external sort |
AnbangX | 4b84334 | 2013-05-09 11:49:15 -0700 | [diff] [blame] | 23 | IO_DIRS="/tmp/t3,/tmp/t4,/tmp/t5,/tmp/t6" |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 24 | |
| 25 | #The JAVA_HOME |
| 26 | JAVA_HOME=$JAVA_HOME |
| 27 | |
| 28 | #The frame size of the internal dataflow engine |
AnbangX | eae1289 | 2013-05-01 12:32:05 -0700 | [diff] [blame] | 29 | FRAME_SIZE=131072 |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 30 | |
| 31 | #CC JAVA_OPTS |
| 32 | CCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7001,server=y,suspend=n -Xmx3g -Djava.util.logging.config.file=logging.properties" |
| 33 | # Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001" |
| 34 | |
| 35 | #NC JAVA_OPTS |
AnbangX | 4b84334 | 2013-05-09 11:49:15 -0700 | [diff] [blame] | 36 | NCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7002,server=y,suspend=n -Xmx3g -Djava.util.logging.config.file=genomix-pregelix/src/test/resources/logging.properties" |
anbangx | f61ba4c | 2013-02-14 10:27:36 +0000 | [diff] [blame] | 37 | |