blob: c75e65cf14aeb4b748ee2aa9ba7c080b48fb5a68 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001#/*
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#*/
buyingyid3c20332012-10-14 05:09:55 +000015#The CC port for Hyracks clients
16CC_CLIENTPORT=3099
17
18#The CC port for Hyracks cluster management
19CC_CLUSTERPORT=1099
20
21#The directory of hyracks binaries
22HYRACKS_HOME=../../../../hyracks
23
24#The tmp directory for cc to install jars
25CCTMP_DIR=/tmp/t1
26
27#The tmp directory for nc to install jars
28NCTMP_DIR=/tmp/t2
29
30#The directory to put cc logs
31CCLOGS_DIR=$CCTMP_DIR/logs
32
33#The directory to put nc logs
34NCLOGS_DIR=$NCTMP_DIR/logs
35
36#Comma separated I/O directories for the spilling of external sort
37IO_DIRS="/tmp/t3,/tmp/t4"
38
39#The JAVA_HOME
40JAVA_HOME=$JAVA_HOME
41
42#The frame size of the internal dataflow engine
43FRAME_SIZE=65536
44
Yingyi Bu396c18b2014-06-12 21:02:27 -070045#The frame size of the internal vertex storage
46VFRAME_SIZE=65536
47
buyingyid3c20332012-10-14 05:09:55 +000048#CC JAVA_OPTS
49CCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7001,server=y,suspend=n -Xmx3g -Djava.util.logging.config.file=logging.properties"
50# Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001"
51
52#NC JAVA_OPTS
53NCJAVA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=7002,server=y,suspend=n -Xmx1g -Djava.util.logging.config.file=logging.properties"
54