Index: src/docbkx/configuration.xml =================================================================== --- src/docbkx/configuration.xml (revision 1097898) +++ src/docbkx/configuration.xml (working copy) @@ -114,7 +114,7 @@ a minute or even less so the Master notices failures the sooner. Before changing this value, be sure you have your JVM garbage collection configuration under control otherwise, a long garbage collection that lasts - beyond the zookeeper session timeout will take out + beyond the ZooKeeper session timeout will take out your RegionServer (You might be fine with this -- you probably want recovery to start on the server if a RegionServer has been in GC for a long period of time). @@ -274,7 +274,7 @@ Minimally, a client of HBase needs the hbase, hadoop, log4j, commons-logging, commons-lang, - and zookeeper jars in its CLASSPATH connecting to a cluster. + and ZooKeeper jars in its CLASSPATH connecting to a cluster. An example basic hbase-site.xml for client only @@ -307,7 +307,7 @@ ensemble for the cluster programmatically do as follows: Configuration config = HBaseConfiguration.create(); config.set("hbase.zookeeper.quorum", "localhost"); // Here we are running zookeeper locally - If multiple ZooKeeper instances make up your zookeeper ensemble, + If multiple ZooKeeper instances make up your ZooKeeper ensemble, they may be specified in a comma-separated list (just as in the hbase-site.xml file). This populated Configuration instance can then be passed to an HTable,