You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2012/03/13 13:31:16 UTC

svn commit: r1300095 [2/2] - in /incubator/accumulo/branches/1.4: ./ bin/ conf/ conf/examples/ conf/examples/1GB/ conf/examples/1GB/native-standalone/ conf/examples/1GB/standalone/ conf/examples/2GB/ conf/examples/2GB/native-standalone/ conf/examples/2...

Added: incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/masters
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/masters?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/masters (added)
+++ incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/masters Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/monitor
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/monitor?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/monitor (added)
+++ incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/monitor Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/slaves
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/slaves?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/slaves (added)
+++ incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/slaves Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/tracers
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/tracers?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/tracers (added)
+++ incubator/accumulo/branches/1.4/conf/examples/3GB/standalone/tracers Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-env.sh
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-env.sh?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-env.sh (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-env.sh Tue Mar 13 12:31:13 2012
@@ -0,0 +1,46 @@
+#! /usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+###
+### Configure these environment variables to point to your local installations.
+###
+### The functional tests require conditional values, so keep this style:
+###
+### test -z "$JAVA_HOME" && export JAVA_HOME=/usr/local/lib/jdk-1.6.0
+###
+###
+### Note that the -Xmx -Xms settings below require substantial free memory: 
+### you may want to use smaller values, especially when running everything
+### on a single machine.
+###
+
+test -z "$JAVA_HOME"             && export JAVA_HOME=/path/to/java
+test -z "$HADOOP_HOME"           && export HADOOP_HOME=/path/to/hadoop
+test -z "$ZOOKEEPER_HOME"        && export ZOOKEEPER_HOME=/path/to/zookeeper
+test -z "$ACCUMULO_LOG_DIR"      && export ACCUMULO_LOG_DIR=$ACCUMULO_HOME/logs
+if [ -f ${ACCUMULO_HOME}/conf/accumulo.policy ]
+then
+   POLICY="-Djava.security.manager -Djava.security.policy=${ACCUMULO_HOME}/conf/accumulo.policy"
+fi
+test -z "$ACCUMULO_TSERVER_OPTS" && export ACCUMULO_TSERVER_OPTS="${POLICY} -Xmx48m -Xms48m -Xss128k"
+test -z "$ACCUMULO_MASTER_OPTS"  && export ACCUMULO_MASTER_OPTS="${POLICY} -Xmx128m -Xms128m"
+test -z "$ACCUMULO_MONITOR_OPTS" && export ACCUMULO_MONITOR_OPTS="${POLICY} -Xmx64m -Xms64m" 
+test -z "$ACCUMULO_GC_OPTS"      && export ACCUMULO_GC_OPTS="-Xmx64m -Xms64m"
+test -z "$ACCUMULO_LOGGER_OPTS"  && export ACCUMULO_LOGGER_OPTS="-Xmx128m -Xms128m"
+test -z "$ACCUMULO_GENERAL_OPTS" && export ACCUMULO_GENERAL_OPTS="-XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75"
+test -z "$ACCUMULO_OTHER_OPTS"   && export ACCUMULO_OTHER_OPTS="-Xmx128m -Xms64m"
+export ACCUMULO_LOG_HOST=`(grep -v '^#' $ACCUMULO_HOME/conf/masters ; echo localhost ) 2>/dev/null | head -1`

Propchange: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-env.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-metrics.xml
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-metrics.xml?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-metrics.xml (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-metrics.xml Tue Mar 13 12:31:13 2012
@@ -0,0 +1,60 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--
+  This file follows the conventions for XMLConfiguration files specified in the Apache Commons Configuration 1.5 Library. Changes to this file will be noticed
+  at runtime (see the FileChangedReloadingStrategy class in Commons Configuration).
+-->
+<config>
+<!--
+   Metrics log directory
+-->
+  <logging>
+    <dir>${ACCUMULO_HOME}/metrics</dir>
+  </logging>
+<!--
+ Enable/Disable metrics accumulation on the different servers and their components
+ NOTE: Turning on logging can be expensive because it will use several more file handles and will create a lot of short lived objects.
+-->
+  <master>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+  </master>
+  <logger>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+  </logger>
+  <tserver>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+    <update>
+      <enabled type="boolean">false</enabled>
+      <logging type="boolean">false</logging>
+    </update>
+    <scan>
+      <enabled type="boolean">false</enabled>
+      <logging type="boolean">false</logging>
+    </scan>
+    <minc>
+      <enabled type="boolean">false</enabled>
+      <logging type="boolean">false</logging>
+    </minc>
+  </tserver>
+  <thrift>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+  </thrift>
+</config>

Propchange: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-metrics.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-site.xml
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-site.xml?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-site.xml (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-site.xml Tue Mar 13 12:31:13 2012
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
+
+<configuration>
+	<!--
+  Put your site-specific accumulo configurations here.
+
+  The available configuration values along with their defaults
+  are documented in docs/config.html
+
+  Unless you are simply testing at your workstation, you will most 
+  definitely need to change the three entries below.
+	-->
+
+    <property>
+      <name>instance.zookeeper.host</name>
+      <value>localhost:2181</value>
+      <description>comma separated list of zookeeper servers</description>
+    </property>
+
+    <property>
+      <name>logger.dir.walog</name>
+      <value>walogs</value>
+      <description>The directory used to store write-ahead logs on the local filesystem. It is possible to specify a comma-separated list of directories.</description>
+    </property>
+    
+    <property>
+      <name>instance.secret</name>
+      <value>DEFAULT</value>
+      <description>A secret unique to a given instance that all servers must know in order to communicate with one another. 
+                   Change it before initialization. To change it later use ./bin/accumulo org.apache.accumulo.server.util.ChangeSecret [oldpasswd] [newpasswd], 
+                   and then update this file.
+      </description>
+    </property>
+
+    <property>
+      <name>tserver.memory.maps.max</name>
+      <value>80M</value>
+    </property>
+    
+    <property>
+      <name>tserver.cache.data.size</name>
+      <value>7M</value>
+    </property>
+    
+    <property>
+      <name>tserver.cache.index.size</name>
+      <value>20M</value>
+    </property>
+    
+    <property>
+      <name>trace.password</name>
+      <!-- 
+        change this to the root user's password, and/or change the user below 
+       -->
+      <value>secret</value>
+    </property>
+    
+    <property>
+      <name>trace.user</name>
+      <value>root</value>
+    </property>
+    
+    <property>
+      <name>general.classpaths</name>
+      <value>
+    $ACCUMULO_HOME/src/server/target/classes/,
+    $ACCUMULO_HOME/src/core/target/classes/,
+    $ACCUMULO_HOME/src/start/target/classes/,
+    $ACCUMULO_HOME/src/examples/target/classes/,
+	$ACCUMULO_HOME/lib/[^.].$ACCUMULO_VERSION.jar,
+	$ACCUMULO_HOME/lib/[^.].*.jar,
+	$ZOOKEEPER_HOME/zookeeper[^.].*.jar,
+	$HADOOP_HOME/conf,
+	$HADOOP_HOME/[^.].*.jar,
+	$HADOOP_HOME/lib/[^.].*.jar,
+      </value>
+      <description>Classpaths that accumulo checks for updates and class files.
+      When using the Security Manager, please remove the ".../target/classes/" values.
+      </description>
+    </property>
+
+</configuration>

Propchange: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/accumulo-site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/gc
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/gc?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/gc (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/gc Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/masters
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/masters?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/masters (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/masters Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/monitor
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/monitor?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/monitor (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/monitor Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/slaves
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/slaves?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/slaves (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/slaves Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/tracers
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/tracers?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/tracers (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/native-standalone/tracers Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-env.sh
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-env.sh?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-env.sh (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-env.sh Tue Mar 13 12:31:13 2012
@@ -0,0 +1,46 @@
+#! /usr/bin/env bash
+
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+###
+### Configure these environment variables to point to your local installations.
+###
+### The functional tests require conditional values, so keep this style:
+###
+### test -z "$JAVA_HOME" && export JAVA_HOME=/usr/local/lib/jdk-1.6.0
+###
+###
+### Note that the -Xmx -Xms settings below require substantial free memory: 
+### you may want to use smaller values, especially when running everything
+### on a single machine.
+###
+
+test -z "$JAVA_HOME"             && export JAVA_HOME=/path/to/java
+test -z "$HADOOP_HOME"           && export HADOOP_HOME=/path/to/hadoop
+test -z "$ZOOKEEPER_HOME"        && export ZOOKEEPER_HOME=/path/to/zookeeper
+test -z "$ACCUMULO_LOG_DIR"      && export ACCUMULO_LOG_DIR=$ACCUMULO_HOME/logs
+if [ -f ${ACCUMULO_HOME}/conf/accumulo.policy ]
+then
+   POLICY="-Djava.security.manager -Djava.security.policy=${ACCUMULO_HOME}/conf/accumulo.policy"
+fi
+test -z "$ACCUMULO_TSERVER_OPTS" && export ACCUMULO_TSERVER_OPTS="${POLICY} -Xmx128m -Xms128m -Xss128k"
+test -z "$ACCUMULO_MASTER_OPTS"  && export ACCUMULO_MASTER_OPTS="${POLICY} -Xmx128m -Xms128m"
+test -z "$ACCUMULO_MONITOR_OPTS" && export ACCUMULO_MONITOR_OPTS="${POLICY} -Xmx64m -Xms64m" 
+test -z "$ACCUMULO_GC_OPTS"      && export ACCUMULO_GC_OPTS="-Xmx64m -Xms64m"
+test -z "$ACCUMULO_LOGGER_OPTS"  && export ACCUMULO_LOGGER_OPTS="-Xmx128m -Xms128m"
+test -z "$ACCUMULO_GENERAL_OPTS" && export ACCUMULO_GENERAL_OPTS="-XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75"
+test -z "$ACCUMULO_OTHER_OPTS"   && export ACCUMULO_OTHER_OPTS="-Xmx128m -Xms64m"
+export ACCUMULO_LOG_HOST=`(grep -v '^#' $ACCUMULO_HOME/conf/masters ; echo localhost ) 2>/dev/null | head -1`

Propchange: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-env.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-metrics.xml
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-metrics.xml?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-metrics.xml (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-metrics.xml Tue Mar 13 12:31:13 2012
@@ -0,0 +1,60 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--
+  This file follows the conventions for XMLConfiguration files specified in the Apache Commons Configuration 1.5 Library. Changes to this file will be noticed
+  at runtime (see the FileChangedReloadingStrategy class in Commons Configuration).
+-->
+<config>
+<!--
+   Metrics log directory
+-->
+  <logging>
+    <dir>${ACCUMULO_HOME}/metrics</dir>
+  </logging>
+<!--
+ Enable/Disable metrics accumulation on the different servers and their components
+ NOTE: Turning on logging can be expensive because it will use several more file handles and will create a lot of short lived objects.
+-->
+  <master>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+  </master>
+  <logger>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+  </logger>
+  <tserver>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+    <update>
+      <enabled type="boolean">false</enabled>
+      <logging type="boolean">false</logging>
+    </update>
+    <scan>
+      <enabled type="boolean">false</enabled>
+      <logging type="boolean">false</logging>
+    </scan>
+    <minc>
+      <enabled type="boolean">false</enabled>
+      <logging type="boolean">false</logging>
+    </minc>
+  </tserver>
+  <thrift>
+    <enabled type="boolean">false</enabled>
+    <logging type="boolean">false</logging>
+  </thrift>
+</config>

Propchange: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-metrics.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-site.xml
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-site.xml?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-site.xml (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-site.xml Tue Mar 13 12:31:13 2012
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
+
+<configuration>
+	<!--
+  Put your site-specific accumulo configurations here.
+
+  The available configuration values along with their defaults
+  are documented in docs/config.html
+
+  Unless you are simply testing at your workstation, you will most 
+  definitely need to change the three entries below.
+	-->
+
+    <property>
+      <name>instance.zookeeper.host</name>
+      <value>localhost:2181</value>
+      <description>comma separated list of zookeeper servers</description>
+    </property>
+
+    <property>
+      <name>logger.dir.walog</name>
+      <value>walogs</value>
+      <description>The directory used to store write-ahead logs on the local filesystem. It is possible to specify a comma-separated list of directories.</description>
+    </property>
+    
+    <property>
+      <name>instance.secret</name>
+      <value>DEFAULT</value>
+      <description>A secret unique to a given instance that all servers must know in order to communicate with one another. 
+                   Change it before initialization. To change it later use ./bin/accumulo org.apache.accumulo.server.util.ChangeSecret [oldpasswd] [newpasswd], 
+                   and then update this file.
+      </description>
+    </property>
+
+    <property>
+      <name>tserver.memory.maps.max</name>
+      <value>80M</value>
+    </property>
+    
+    <property>
+      <name>tserver.cache.data.size</name>
+      <value>7M</value>
+    </property>
+    
+    <property>
+      <name>tserver.cache.index.size</name>
+      <value>20M</value>
+    </property>
+    
+    <property>
+      <name>trace.password</name>
+      <!-- 
+        change this to the root user's password, and/or change the user below 
+       -->
+      <value>secret</value>
+    </property>
+    
+    <property>
+      <name>trace.user</name>
+      <value>root</value>
+    </property>
+    
+    <property>
+      <name>logger.sort.buffer.size</name>
+      <value>50M</value>
+    </property>
+    
+    <property>
+      <name>general.classpaths</name>
+      <value>
+    $ACCUMULO_HOME/src/server/target/classes/,
+    $ACCUMULO_HOME/src/core/target/classes/,
+    $ACCUMULO_HOME/src/start/target/classes/,
+    $ACCUMULO_HOME/src/examples/target/classes/,
+	$ACCUMULO_HOME/lib/[^.].$ACCUMULO_VERSION.jar,
+	$ACCUMULO_HOME/lib/[^.].*.jar,
+	$ZOOKEEPER_HOME/zookeeper[^.].*.jar,
+	$HADOOP_HOME/conf,
+	$HADOOP_HOME/[^.].*.jar,
+	$HADOOP_HOME/lib/[^.].*.jar,
+      </value>
+      <description>Classpaths that accumulo checks for updates and class files.
+      When using the Security Manager, please remove the ".../target/classes/" values.
+      </description>
+    </property>
+
+</configuration>

Propchange: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/accumulo-site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/gc
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/gc?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/gc (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/gc Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/masters
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/masters?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/masters (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/masters Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/monitor
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/monitor?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/monitor (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/monitor Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/slaves
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/slaves?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/slaves (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/slaves Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Added: incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/tracers
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/tracers?rev=1300095&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/tracers (added)
+++ incubator/accumulo/branches/1.4/conf/examples/512MB/standalone/tracers Tue Mar 13 12:31:13 2012
@@ -0,0 +1 @@
+localhost

Modified: incubator/accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/util/Initialize.java
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/util/Initialize.java?rev=1300095&r1=1300094&r2=1300095&view=diff
==============================================================================
--- incubator/accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/util/Initialize.java (original)
+++ incubator/accumulo/branches/1.4/src/server/src/main/java/org/apache/accumulo/server/util/Initialize.java Tue Mar 13 12:31:13 2012
@@ -123,9 +123,11 @@ public class Initialize {
       c.printNewline();
       c.printNewline();
       c.printNewline();
-      c.printString("You can change the instance secret in accumulo by using: bin/accumulo "
-          + org.apache.accumulo.server.util.ChangeSecret.class.getName()
-          + " oldPassword newPassword. You will also need to edit your secret in your configuration file by adding the property instance.secret to your conf/accumulo-site.xml. Without this accumulo will not operate correctly");
+      c.printString("You can change the instance secret in accumulo by using:");
+      c.printNewline();
+      c.printString("   bin/accumulo " + org.apache.accumulo.server.util.ChangeSecret.class.getName() + " oldPassword newPassword.");
+      c.printNewline();
+      c.printString("You will also need to edit your secret in your configuration file by adding the property instance.secret to your conf/accumulo-site.xml. Without this accumulo will not operate correctly");
       c.printNewline();
     }