Blame default-conf.patch

e4de6e9
diff --git a/assemble/conf/templates/accumulo-metrics.xml b/assemble/conf/templates/accumulo-metrics.xml
40b9a95
index ec54994..04edb84 100644
e4de6e9
--- a/assemble/conf/templates/accumulo-metrics.xml
e4de6e9
+++ b/assemble/conf/templates/accumulo-metrics.xml
6e9b93d
@@ -23,7 +23,8 @@
9fff41b
    Metrics log directory
9fff41b
 -->
9fff41b
   <logging>
9fff41b
-    <dir>${ACCUMULO_HOME}/metrics</dir>
6e9b93d
+    
9fff41b
+    <dir>/var/log/accumulo/metrics</dir>
9fff41b
   </logging>
9fff41b
 
9fff41b
  Enable/Disable metrics accumulation on the different servers and their components
e4de6e9
diff --git a/assemble/conf/templates/accumulo-site.xml b/assemble/conf/templates/accumulo-site.xml
40b9a95
index 7fe3fe4..a9e29e1 100644
e4de6e9
--- a/assemble/conf/templates/accumulo-site.xml
e4de6e9
+++ b/assemble/conf/templates/accumulo-site.xml
40b9a95
@@ -22,18 +22,15 @@
9fff41b
     you are simply testing at your workstation, you will most definitely need to change the three entries below. -->
9fff41b
 
9fff41b
   <property>
40b9a95
-    <name>instance.zookeeper.host</name>
40b9a95
-    <value>localhost:2181</value>
40b9a95
-    <description>comma separated list of zookeeper servers</description>
9fff41b
+    <name>instance.volumes</name>
9fff41b
+    <value>file:///tmp/accumulo</value>
9fff41b
+    <description>comma separated list of dfs URIs</description>
9fff41b
   </property>
9fff41b
 
9fff41b
   <property>
9fff41b
-    <name>logger.dir.walog</name>
9fff41b
-    <value>walogs</value>
9fff41b
-    <description>The property only needs to be set if upgrading from 1.4 which used to store write-ahead logs on the local
9fff41b
-      filesystem. In 1.5 write-ahead logs are stored in DFS.  When 1.5 is started for the first time it will copy any 1.4
9fff41b
-      write ahead logs into DFS.  It is possible to specify a comma-separated list of directories.
9fff41b
-    </description>
40b9a95
+    <name>instance.zookeeper.host</name>
40b9a95
+    <value>localhost:2181</value>
40b9a95
+    <description>comma separated list of zookeeper servers</description>
40b9a95
   </property>
40b9a95
 
40b9a95
   <property>
40b9a95
@@ -89,49 +86,13 @@
9fff41b
 ${mvnProjBaseDir}
9fff41b
   <property>
9fff41b
     <name>general.classpaths</name>
9fff41b
-
9fff41b
-    <value>
9fff41b
-      
9fff41b
-      $ACCUMULO_HOME/lib/accumulo-server.jar,
9fff41b
-      $ACCUMULO_HOME/lib/accumulo-core.jar,
9fff41b
-      $ACCUMULO_HOME/lib/accumulo-start.jar,
9fff41b
-      $ACCUMULO_HOME/lib/accumulo-fate.jar,
9fff41b
-      $ACCUMULO_HOME/lib/accumulo-proxy.jar,
9fff41b
-      $ACCUMULO_HOME/lib/[^.].*.jar,
9fff41b
-      
9fff41b
-      $ZOOKEEPER_HOME/zookeeper[^.].*.jar,
9fff41b
-      
9fff41b
-      $HADOOP_CONF_DIR,
9fff41b
-      
9fff41b
-      $HADOOP_PREFIX/share/hadoop/common/[^.].*.jar,
9fff41b
-      $HADOOP_PREFIX/share/hadoop/common/lib/(?!slf4j)[^.].*.jar,
9fff41b
-      $HADOOP_PREFIX/share/hadoop/hdfs/[^.].*.jar,
9fff41b
-      $HADOOP_PREFIX/share/hadoop/mapreduce/[^.].*.jar,
9fff41b
-      $HADOOP_PREFIX/share/hadoop/yarn/[^.].*.jar,
40b9a95
-      $HADOOP_PREFIX/share/hadoop/yarn/lib/jersey.*.jar,
40b9a95
-      
40b9a95
-      
9fff41b
-      /usr/lib/hadoop/[^.].*.jar,
9fff41b
-      /usr/lib/hadoop/lib/[^.].*.jar,
9fff41b
-      /usr/lib/hadoop-hdfs/[^.].*.jar,
9fff41b
-      /usr/lib/hadoop-mapreduce/[^.].*.jar,
9fff41b
-      /usr/lib/hadoop-yarn/[^.].*.jar,
40b9a95
-      /usr/lib/hadoop-yarn/lib/jersey.*.jar,
40b9a95
-      
40b9a95
-      
40b9a95
-      /usr/hdp/current/hadoop-client/[^.].*.jar,
40b9a95
-      /usr/hdp/current/hadoop-client/lib/(?!slf4j)[^.].*.jar,
40b9a95
-      /usr/hdp/current/hadoop-hdfs-client/[^.].*.jar,
40b9a95
-      /usr/hdp/current/hadoop-mapreduce-client/[^.].*.jar,
40b9a95
-      /usr/hdp/current/hadoop-yarn-client/[^.].*.jar,
40b9a95
-      /usr/hdp/current/hadoop-yarn-client/lib/jersey.*.jar,
40b9a95
-      /usr/hdp/current/hive-client/lib/hive-accumulo-handler.jar
40b9a95
-      
9fff41b
-      
9fff41b
-      $HADOOP_PREFIX/[^.].*.jar,
9fff41b
-      $HADOOP_PREFIX/lib/(?!slf4j)[^.].*.jar,
9fff41b
-      
9fff41b
-    </value>
6e9b93d
+    <value>/etc/accumulo/lib</value>
9fff41b
     <description>Classpaths that accumulo checks for updates and class files.</description>
9fff41b
   </property>
6e9b93d
+
6e9b93d
+  <property>
6e9b93d
+    <name>general.dynamic.classpaths</name>
6e9b93d
+    <value>/etc/accumulo/lib/ext</value>
6e9b93d
+    <description>Classpaths that accumulo checks for updates and class files to dynamically load.</description>
6e9b93d
+  </property>
9fff41b
 </configuration>