Advertisement
Guest User

Untitled

a guest
Aug 12th, 2013
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.54 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.  Licensed to the Apache Software Foundation (ASF) under one or more
  4.  contributor license agreements.  See the NOTICE file distributed with
  5.  this work for additional information regarding copyright ownership.
  6.  The ASF licenses this file to You under the Apache License, Version 2.0
  7.  (the "License"); you may not use this file except in compliance with
  8.  the License.  You may obtain a copy of the License at
  9.  
  10.      http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12.  Unless required by applicable law or agreed to in writing, software
  13.  distributed under the License is distributed on an "AS IS" BASIS,
  14.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  See the License for the specific language governing permissions and
  16.  limitations under the License.
  17. -->
  18. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  19.  
  20. <configuration>
  21.         <!--
  22.  Put your site-specific accumulo configurations here.
  23.  
  24.  The available configuration values along with their defaults
  25.  are documented in docs/config.html
  26.  
  27.  Unless you are simply testing at your workstation, you will most
  28.  definitely need to change the three entries below.
  29.        -->
  30.  
  31.     <property>
  32.       <name>instance.zookeeper.host</name>
  33.       <value>accumulo-master.localdomain:2181</value>
  34.       <description>comma separated list of zookeeper servers</description>
  35.     </property>
  36.  
  37.     <property>
  38.       <name>logger.dir.walog</name>
  39.       <value>walogs</value>
  40.       <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>
  41.     </property>
  42.  
  43.     <property>
  44.       <name>instance.secret</name>
  45.       <value>secret</value>
  46.       <description>A secret unique to a given instance that all servers must know in order to communicate with one another.
  47.                    Change it before initialization. To change it later use ./bin/accumulo org.apache.accumulo.server.util.ChangeSecret [oldpasswd] [newpasswd],
  48.                    and then update this file.
  49.       </description>
  50.     </property>
  51.  
  52.     <property>
  53.       <name>tserver.memory.maps.max</name>
  54.       <value>1G</value>
  55.     </property>
  56.  
  57.     <property>
  58.       <name>tserver.cache.data.size</name>
  59.       <value>50M</value>
  60.     </property>
  61.  
  62.     <property>
  63.       <name>tserver.cache.index.size</name>
  64.       <value>512M</value>
  65.     </property>
  66.  
  67.     <property>
  68.       <name>trace.password</name>
  69.       <!--
  70.        change this to the root user's password, and/or change the user below
  71.       -->
  72.       <value>password</value>
  73.     </property>
  74.  
  75.     <property>
  76.       <name>trace.user</name>
  77.       <value>root</value>
  78.     </property>
  79.  
  80.     <property>
  81.       <name>general.classpaths</name>
  82.       <value>
  83.     $ACCUMULO_HOME/src/server/target/classes/,
  84.     $ACCUMULO_HOME/src/core/target/classes/,
  85.     $ACCUMULO_HOME/src/start/target/classes/,
  86.     $ACCUMULO_HOME/src/examples/target/classes/,
  87.         $ACCUMULO_HOME/lib/[^.].$ACCUMULO_VERSION.jar,
  88.         $ACCUMULO_HOME/lib/[^.].*.jar,
  89.         $ZOOKEEPER_HOME/zookeeper[^.].*.jar,
  90.         $HADOOP_HOME/conf,
  91.         $HADOOP_HOME/[^.].*.jar,
  92.         $HADOOP_HOME/lib/[^.].*.jar,
  93.         /usr/lib/hadoop-hdfs/[^.].*.jar,
  94.         /usr/lib/hadoop-hdfs/lib/[^.].*.jar,
  95.       </value>
  96.       <description>Classpaths that accumulo checks for updates and class files.
  97.       When using the Security Manager, please remove the ".../target/classes/" values.
  98.       </description>
  99.     </property>
  100.  
  101. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement