blob: cac0aa5b9f574ddc0fa9fdcd05fe3eae1f17e6ce [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#*/
buyingyi1341a162013-06-05 15:07:52 -070015#The CC port for Hyracks clients
16CC_CLIENTPORT=3099
17
18#The CC port for Hyracks cluster management
19CC_CLUSTERPORT=1099
20
21#The tmp directory for cc to install jars
22CCTMP_DIR=/tmp/t1
23
24#The tmp directory for nc to install jars
25NCTMP_DIR=/tmp/t2
26
27#The directory to put cc logs
28CCLOGS_DIR=$CCTMP_DIR/logs
29
30#The directory to put nc logs
31NCLOGS_DIR=$NCTMP_DIR/logs
32
33#Comma separated I/O directories for the spilling of external sort
34IO_DIRS="/tmp/t3,/tmp/t4"
35
36#The JAVA_HOME
37JAVA_HOME=$JAVA_HOME
38
39#The frame size of the internal dataflow engine
40FRAME_SIZE=65536
41
42#CC JAVA_OPTS
Yingyi Bu497da872013-12-01 14:46:28 -080043CCJAVA_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"
buyingyi1341a162013-06-05 15:07:52 -070045# 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 Bu497da872013-12-01 14:46:28 -080048NCJAVA_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"
buyingyi1341a162013-06-05 15:07:52 -070050# Yourkit option: -agentpath:/grid/0/dev/vborkar/tools/yjp-10.0.4/bin/linux-x86-64/libyjpagent.so=port=20001"