You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2012/09/05 17:14:38 UTC

svn commit: r1381220 - in /hbase/branches/0.92: bin/master-backup.sh conf/hbase-env.sh

Author: stack
Date: Wed Sep  5 15:14:38 2012
New Revision: 1381220

URL: http://svn.apache.org/viewvc?rev=1381220&view=rev
Log:
HBASE-6288 In hbase-daemons.sh, description of the default backup-master file path is wrong

Modified:
    hbase/branches/0.92/bin/master-backup.sh
    hbase/branches/0.92/conf/hbase-env.sh

Modified: hbase/branches/0.92/bin/master-backup.sh
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/bin/master-backup.sh?rev=1381220&r1=1381219&r2=1381220&view=diff
==============================================================================
--- hbase/branches/0.92/bin/master-backup.sh (original)
+++ hbase/branches/0.92/bin/master-backup.sh Wed Sep  5 15:14:38 2012
@@ -25,7 +25,7 @@
 # Environment Variables
 #
 #   HBASE_BACKUP_MASTERS File naming remote hosts.
-#     Default is ${HADOOP_CONF_DIR}/backup-masters
+#     Default is ${HBASE_CONF_DIR}/backup-masters
 #   HADOOP_CONF_DIR  Alternate conf dir. Default is ${HADOOP_HOME}/conf.
 #   HBASE_CONF_DIR  Alternate hbase conf dir. Default is ${HBASE_HOME}/conf.
 #   HADOOP_SLAVE_SLEEP Seconds to sleep between spawning remote commands.

Modified: hbase/branches/0.92/conf/hbase-env.sh
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/conf/hbase-env.sh?rev=1381220&r1=1381219&r2=1381220&view=diff
==============================================================================
--- hbase/branches/0.92/conf/hbase-env.sh (original)
+++ hbase/branches/0.92/conf/hbase-env.sh Wed Sep  5 15:14:38 2012
@@ -57,6 +57,9 @@ export HBASE_OPTS="-XX:+UseConcMarkSweep
 # File naming hosts on which HRegionServers will run.  $HBASE_HOME/conf/regionservers by default.
 # export HBASE_REGIONSERVERS=${HBASE_HOME}/conf/regionservers
 
+# File naming hosts on which backup HMaster will run.  $HBASE_HOME/conf/backup-masters by default.
+# export HBASE_BACKUP_MASTERS=${HBASE_HOME}/conf/backup-masters
+
 # Extra ssh options.  Empty by default.
 # export HBASE_SSH_OPTS="-o ConnectTimeout=1 -o SendEnv=HBASE_CONF_DIR"