|
From: <tho...@us...> - 2010-09-28 12:29:21
|
Revision: 3657
http://bigdata.svn.sourceforge.net/bigdata/?rev=3657&view=rev
Author: thompsonbry
Date: 2010-09-28 12:29:15 +0000 (Tue, 28 Sep 2010)
Log Message:
-----------
Imposing my local settings on build.properties and bigdataStandalone.config for use in testing quads query on a single node.
The build.properties changes turn off snapshots and specify a specific machine name, etc.
The bigdataStandalone.config changes specifies two data services and no client services.
Modified Paths:
--------------
branches/QUADS_QUERY_BRANCH/build.properties
branches/QUADS_QUERY_BRANCH/src/resources/config/bigdataStandalone.config
Modified: branches/QUADS_QUERY_BRANCH/build.properties
===================================================================
--- branches/QUADS_QUERY_BRANCH/build.properties 2010-09-28 12:18:37 UTC (rev 3656)
+++ branches/QUADS_QUERY_BRANCH/build.properties 2010-09-28 12:29:15 UTC (rev 3657)
@@ -41,7 +41,7 @@
# Set true to do a snapshot build. This changes the value of ${version} to
# include the date.
-snapshot=true
+snapshot=false
# Javadoc build may be disabled using this property. The javadoc target will
# not be executed unless this property is defined (its value does not matter).
@@ -84,7 +84,7 @@
# files on this path on each host. Therefore, if you are not installing as root
# this will need to be a file within the user's home directory or some directory
# which exists on each host and is writable by that user.
-LAS=/var/bigdata/${FED}
+LAS=/data/bigdata/${FED}
#LAS=~/bigdata/${FED}
# The location of the installed JDK that will be used to build / run bigdata.
@@ -94,7 +94,7 @@
# dumps with Sun jdk1.6.0_07 and FC6 on a 32-bit platform.
#
#JAVA_HOME=C:\\Program Files\\Java\\jdk1.6.0_10
-JAVA_HOME=/usr/java/jdk1.6.0_07
+JAVA_HOME=/usr/java/jdk1.6.0_17
#JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64
#JAVA_HOME=/usr/java/jrockit-R27.3.0-jdk1.6.0_01
@@ -110,8 +110,8 @@
LOAD_BALANCER_PORT=8080
# Where the sysstat utilities are found (performance counter reporting for un*x).
-#SYSSTAT_HOME=/usr/local/bin
-SYSSTAT_HOME=/usr/bin
+SYSSTAT_HOME=/usr/local/bin
+#SYSSTAT_HOME=/usr/bin
# Specifies the value of com.sun.jini.jeri.tcp.useNIO. When true, use NIO for RMI.
USE_NIO=true
@@ -145,8 +145,9 @@
# This can be 'users' when trying to share across the hosts when running bigdata
# using a normal user login. It can be 'wheel' when trying to share across hosts
# using a root login.
-install.group=users
+#install.group=users
#install.group=wheel
+install.group=${user.name}
# The file permissions mask used for files that must be read/write for all hosts.
#
@@ -176,7 +177,7 @@
LOCK_FILE=${LAS}/lockFile
# The main bigdata configuration file.
-bigdata.config=${install.config.dir}/bigdataCluster.config
+bigdata.config=${install.config.dir}/bigdataStandalone.config
# The main jini configuration file.
jini.config=${install.config.dir}/jini/startAll.config
@@ -199,7 +200,7 @@
# Note: java.util.logging messages DO NOT get written onto this logger -- only
# log4j messages.
#
-LOG4J_SOCKET_LOGGER_HOST = XXX
+LOG4J_SOCKET_LOGGER_HOST = bigdata01.systap.com
LOG4J_SOCKET_LOGGER_PORT = 4445
# The socket logger uses a DailyRollingFileAppender by default and this
@@ -369,9 +370,9 @@
#
# The top-level directory above the various data files to be used.
-perf.data.dir=/usr/bigdata/data
+perf.data.dir=/nas/data
# The directory in which the performance tests will be run. This directory needs to be
# on a volume with a lot of room. The directory may be destroyed (by the test harness)
# after the performance tests have run their course.
-perf.run.dir=/usr/bigdata/runs
+perf.run.dir=/nas/perfruns
Modified: branches/QUADS_QUERY_BRANCH/src/resources/config/bigdataStandalone.config
===================================================================
--- branches/QUADS_QUERY_BRANCH/src/resources/config/bigdataStandalone.config 2010-09-28 12:18:37 UTC (rev 3656)
+++ branches/QUADS_QUERY_BRANCH/src/resources/config/bigdataStandalone.config 2010-09-28 12:29:15 UTC (rev 3657)
@@ -168,7 +168,7 @@
};
// The target #of client servers.
- static private clientServiceCount = 1;
+ static private clientServiceCount = 0;
static private maxClientServicePerHost = 1;
// data servers
@@ -177,10 +177,10 @@
};
// The target #of data services.
- static private dataServiceCount = 1;
+ static private dataServiceCount = 2;
// Maximum #of data services per host.
- static private maxDataServicesPerHost = 1;
+ static private maxDataServicesPerHost = 2;
// @todo also specify k (replicationCount)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|