http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4ac23c25/apache_hbase_reference_guide.pdfmarks
----------------------------------------------------------------------
diff --git a/apache_hbase_reference_guide.pdfmarks 
b/apache_hbase_reference_guide.pdfmarks
index 4ff8b03..6fbd5cc 100644
--- a/apache_hbase_reference_guide.pdfmarks
+++ b/apache_hbase_reference_guide.pdfmarks
@@ -2,8 +2,8 @@
   /Author (Apache HBase Team)
   /Subject ()
   /Keywords ()
-  /ModDate (D:20161207142356)
-  /CreationDate (D:20161207142356)
+  /ModDate (D:20161207204746)
+  /CreationDate (D:20161207204746)
   /Creator (Asciidoctor PDF 1.5.0.alpha.6, based on Prawn 1.2.1)
   /Producer ()
   /DOCINFO pdfmark

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4ac23c25/book.html
----------------------------------------------------------------------
diff --git a/book.html b/book.html
index 897eac8..f8bb073 100644
--- a/book.html
+++ b/book.html
@@ -429,7 +429,7 @@ such features or use patterns.</p>
 <h2 id="_introduction"><a class="anchor" href="#_introduction"></a>1. 
Introduction</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p><a href="#quickstart">Quickstart</a> will get you up and running on a 
single-node, standalone instance of HBase, followed by a pseudo-distributed 
single-machine instance, and finally a fully-distributed cluster.</p>
+<p><a href="#quickstart">Quickstart</a> will get you up and running on a 
single-node, standalone instance of HBase.</p>
 </div>
 </div>
 </div>
@@ -437,31 +437,16 @@ such features or use patterns.</p>
 <h2 id="quickstart"><a class="anchor" href="#quickstart"></a>2. Quick Start - 
Standalone HBase</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>This guide describes the setup of a standalone HBase instance running 
against the local filesystem.
-This is not an appropriate configuration for a production instance of HBase, 
but will allow you to experiment with HBase.
-This section shows you how to create a table in HBase using the <code>hbase 
shell</code> CLI, insert rows into the table, perform put and scan operations 
against the table, enable or disable the table, and start and stop HBase.
-Apart from downloading HBase, this procedure should take less than 10 
minutes.</p>
-</div>
-<div class="admonitionblock warning">
-<table>
-<tr>
-<td class="icon">
-<i class="fa icon-warning" title="Warning"></i>
-</td>
-<td class="content">
-<div class="title">Local Filesystem and Durability</div>
-<em>The following is fixed in HBase 0.98.3 and beyond. See <a 
href="https://issues.apache.org/jira/browse/HBASE-11272";>HBASE-11272</a> and <a 
href="https://issues.apache.org/jira/browse/HBASE-11218";>HBASE-11218</a>.</em>
-</td>
-</tr>
-</table>
+<p>This section describes the setup of a single-node standalone HBase.
+A <em>standalone</em> instance has all HBase daemons&#8201;&#8212;&#8201;the 
Master, RegionServers,
+and ZooKeeper&#8201;&#8212;&#8201;running in a single JVM persisting to the 
local filesystem.
+It is our most basic deploy profile. We will show you how
+to create a table in HBase using the <code>hbase shell</code> CLI,
+insert rows into the table, perform put and scan operations against the
+table, enable or disable the table, and start and stop HBase.</p>
 </div>
 <div class="paragraph">
-<p>Using HBase with a local filesystem does not guarantee durability.
-The HDFS local filesystem implementation will lose edits if files are not 
properly closed.
-This is very likely to happen when you are experimenting with new software, 
starting and stopping the daemons often and not always cleanly.
-You need to run HBase on HDFS to ensure all writes are preserved.
-Running against the local filesystem is intended as a shortcut to get you 
familiar with how the general system works, as the very first phase of 
evaluation.
-See <a href="https://issues.apache.org/jira/browse/HBASE-3696";>HBASE-3696</a> 
and its associated issues for more details about the issues of running on the 
local filesystem.</p>
+<p>Apart from downloading HBase, this procedure should take less than 10 
minutes.</p>
 </div>
 <div id="loopback.ip" class="admonitionblock note">
 <table>
@@ -470,18 +455,11 @@ See <a 
href="https://issues.apache.org/jira/browse/HBASE-3696";>HBASE-3696</a> an
 <i class="fa icon-note" title="Note"></i>
 </td>
 <td class="content">
-<div class="title">Loopback IP - HBase 0.94.x and earlier</div>
-<em>The below advice is for hbase-0.94.x and older versions only. This is 
fixed in hbase-0.96.0 and beyond.</em>
-</td>
-</tr>
-</table>
-</div>
 <div class="paragraph">
-<p>Prior to HBase 0.94.x, HBase expected the loopback IP address to be 
127.0.0.1. Ubuntu and some other distributions default to 127.0.1.1 and this 
will cause problems for you. See <a href="http://devving.com/?p=414";>Why does 
HBase care about /etc/hosts?</a> for detail</p>
+<p>Prior to HBase 0.94.x, HBase expected the loopback IP address to be 
127.0.0.1.
+Ubuntu and some other distributions default to 127.0.1.1 and this will cause
+problems for you. See <a href="http://devving.com/?p=414";>Why does HBase care 
about /etc/hosts?</a> for detail</p>
 </div>
-<div class="exampleblock">
-<div class="title">Example 1. Example /etc/hosts File for Ubuntu</div>
-<div class="content">
 <div class="paragraph">
 <p>The following <em>/etc/hosts</em> file works correctly for HBase 0.94.x and 
earlier, on Ubuntu. Use this as a template if you run into trouble.</p>
 </div>
@@ -491,7 +469,12 @@ See <a 
href="https://issues.apache.org/jira/browse/HBASE-3696";>HBASE-3696</a> an
 127.0.0.1 ubuntu.ubuntu-domain ubuntu</pre>
 </div>
 </div>
+<div class="paragraph">
+<p>This issue has been fixed in hbase-0.96.0 and beyond.</p>
 </div>
+</td>
+</tr>
+</table>
 </div>
 <div class="sect2">
 <h3 id="_jdk_version_requirements"><a class="anchor" 
href="#_jdk_version_requirements"></a>2.1. JDK Version Requirements</h3>
@@ -503,17 +486,13 @@ See <a href="#java">Java</a> for information about 
supported JDK versions.</p>
 <div class="sect2">
 <h3 id="_get_started_with_hbase"><a class="anchor" 
href="#_get_started_with_hbase"></a>2.2. Get Started with HBase</h3>
 <div class="olist arabic">
-<div class="title">Procedure: Download, Configure, and Start HBase</div>
+<div class="title">Procedure: Download, Configure, and Start HBase in 
Standalone Mode</div>
 <ol class="arabic">
 <li>
 <p>Choose a download site from this list of <a 
href="http://www.apache.org/dyn/closer.cgi/hbase/";>Apache Download Mirrors</a>.
 Click on the suggested top link.
-This will take you to a mirror of <em>HBase
-Releases</em>.
+This will take you to a mirror of <em>HBase Releases</em>.
 Click on the folder named <em>stable</em> and then download the binary file 
that ends in <em>.tar.gz</em> to your local filesystem.
-Prior to 1.x version, be sure to choose the version that corresponds with the 
version of Hadoop you are
-likely to use later (in most cases, you should choose the file for Hadoop 2, 
which will be called
-something like <em>hbase-0.98.13-hadoop2-bin.tar.gz</em>).
 Do not download the file ending in <em>src.tar.gz</em> for now.</p>
 </li>
 <li>
@@ -526,10 +505,11 @@ $ cd hbase-2.0.0-SNAPSHOT/</code></pre>
 </div>
 </li>
 <li>
-<p>For HBase 0.98.5 and later, you are required to set the 
<code>JAVA_HOME</code> environment variable before starting HBase.
-Prior to 0.98.5, HBase attempted to detect the location of Java if the 
variables was not set.
-You can set the variable via your operating system&#8217;s usual mechanism, 
but HBase provides a central mechanism, <em>conf/hbase-env.sh</em>.
-Edit this file, uncomment the line starting with <code>JAVA_HOME</code>, and 
set it to the appropriate location for your operating system.
+<p>You are required to set the <code>JAVA_HOME</code> environment variable 
before starting HBase.
+You can set the variable via your operating system&#8217;s usual mechanism, 
but HBase
+provides a central mechanism, <em>conf/hbase-env.sh</em>.
+Edit this file, uncomment the line starting with <code>JAVA_HOME</code>, and 
set it to the
+appropriate location for your operating system.
 The <code>JAVA_HOME</code> variable should be set to a directory which 
contains the executable file <em>bin/java</em>.
 Most modern Linux operating systems provide a mechanism, such as 
/usr/bin/alternatives on RHEL or CentOS, for transparently switching between 
versions of executables such as Java.
 In this case, you can set <code>JAVA_HOME</code> to the directory containing 
the symbolic link to <em>bin/java</em>, which is usually <em>/usr</em>.</p>
@@ -538,19 +518,6 @@ In this case, you can set <code>JAVA_HOME</code> to the 
directory containing the
 <pre>JAVA_HOME=/usr</pre>
 </div>
 </div>
-<div class="admonitionblock note">
-<table>
-<tr>
-<td class="icon">
-<i class="fa icon-note" title="Note"></i>
-</td>
-<td class="content">
-These instructions assume that each node of your cluster uses the same 
configuration.
-If this is not the case, you may need to set <code>JAVA_HOME</code> separately 
for each node.
-</td>
-</tr>
-</table>
-</div>
 </li>
 <li>
 <p>Edit <em>conf/hbase-site.xml</em>, which is the main HBase configuration 
file.
@@ -560,7 +527,7 @@ Many servers are configured to delete the contents of 
<em>/tmp</em> upon reboot,
 The following configuration will store HBase&#8217;s data in the 
<em>hbase</em> directory, in the home directory of the user called 
<code>testuser</code>.
 Paste the <code>&lt;property&gt;</code> tags beneath the 
<code>&lt;configuration&gt;</code> tags, which should be empty in a new HBase 
install.</p>
 <div class="exampleblock">
-<div class="title">Example 2. Example <em>hbase-site.xml</em> for Standalone 
HBase</div>
+<div class="title">Example 1. Example <em>hbase-site.xml</em> for Standalone 
HBase</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -580,8 +547,24 @@ Paste the <code>&lt;property&gt;</code> tags beneath the 
<code>&lt;configuration
 </div>
 <div class="paragraph">
 <p>You do not need to create the HBase data directory.
-HBase will do this for you.
-If you create the directory, HBase will attempt to do a migration, which is 
not what you want.</p>
+HBase will do this for you.  If you create the directory,
+HBase will attempt to do a migration, which is not what you want.</p>
+</div>
+<div class="admonitionblock note">
+<table>
+<tr>
+<td class="icon">
+<i class="fa icon-note" title="Note"></i>
+</td>
+<td class="content">
+The <em>hbase.rootdir</em> in the above example points to a directory
+in the <em>local filesystem</em>. The 'file:/' prefix is how we denote local 
filesystem.
+To home HBase on an existing instance of HDFS, set the <em>hbase.rootdir</em> 
to point at a
+directory up on your instance: e.g. 
<em>hdfs://namenode.example.org:8020/hbase</em>.
+For more on this variant, see the section below on Standalone HBase over HDFS.
+</td>
+</tr>
+</table>
 </div>
 </li>
 <li>
@@ -589,7 +572,8 @@ If you create the directory, HBase will attempt to do a 
migration, which is not
 Issue the command, and if all goes well, a message is logged to standard 
output showing that HBase started successfully.
 You can use the <code>jps</code> command to verify that you have one running 
process called <code>HMaster</code>.
 In standalone mode HBase runs all daemons within this single JVM, i.e.
-the HMaster, a single HRegionServer, and the ZooKeeper daemon.</p>
+the HMaster, a single HRegionServer, and the ZooKeeper daemon.
+Go to <em><a href="http://localhost:16010"; 
class="bare">http://localhost:16010</a></em> to view the HBase Web UI.</p>
 <div class="admonitionblock note">
 <table>
 <tr>
@@ -598,7 +582,10 @@ the HMaster, a single HRegionServer, and the ZooKeeper 
daemon.</p>
 </td>
 <td class="content">
 Java needs to be installed and available.
-If you get an error indicating that Java is not installed, but it is on your 
system, perhaps in a non-standard location, edit the <em>conf/hbase-env.sh</em> 
file and modify the <code>JAVA_HOME</code> setting to point to the directory 
that contains <em>bin/java</em> your system.
+If you get an error indicating that Java is not installed,
+but it is on your system, perhaps in a non-standard location,
+edit the <em>conf/hbase-env.sh</em> file and modify the <code>JAVA_HOME</code>
+setting to point to the directory that contains <em>bin/java</em> your system.
 </td>
 </tr>
 </table>
@@ -781,13 +768,21 @@ Use the <code>jps</code> to be sure that the HMaster and 
HRegionServer processes
 </li>
 </ol>
 </div>
+<div class="paragraph">
+<p>The above has shown you how to start and stop a standalone instance of 
HBase.
+In the next sections we give a quick overview of other modes of hbase 
deploy.</p>
+</div>
 </div>
 <div class="sect2">
-<h3 id="quickstart_pseudo"><a class="anchor" 
href="#quickstart_pseudo"></a>2.3. Intermediate - Pseudo-Distributed Local 
Install</h3>
+<h3 id="quickstart_pseudo"><a class="anchor" 
href="#quickstart_pseudo"></a>2.3. Pseudo-Distributed Local Install</h3>
 <div class="paragraph">
-<p>After working your way through <a href="#quickstart">quickstart</a>, you 
can re-configure HBase to run in pseudo-distributed mode.
-Pseudo-distributed mode means that HBase still runs completely on a single 
host, but each HBase daemon (HMaster, HRegionServer, and ZooKeeper) runs as a 
separate process.
-By default, unless you configure the <code>hbase.rootdir</code> property as 
described in <a href="#quickstart">quickstart</a>, your data is still stored in 
<em>/tmp/</em>.
+<p>After working your way through <a href="#quickstart">quickstart</a> 
standalone mode,
+you can re-configure HBase to run in pseudo-distributed mode.
+Pseudo-distributed mode means that HBase still runs completely on a single 
host,
+but each HBase daemon (HMaster, HRegionServer, and ZooKeeper) runs as a 
separate process:
+in standalone mode all daemons ran in one jvm process/instance.
+By default, unless you configure the <code>hbase.rootdir</code> property as 
described in
+<a href="#quickstart">quickstart</a>, your data is still stored in 
<em>/tmp/</em>.
 In this walk-through, we store your data in HDFS instead, assuming you have 
HDFS available.
 You can skip the HDFS configuration to continue storing your data in the local 
filesystem.</p>
 </div>
@@ -1013,7 +1008,7 @@ The architecture will be as follows:</p>
 </table>
 <div class="paragraph">
 <p>This quickstart assumes that each node is a virtual machine and that they 
are all on the same network.
-It builds upon the previous quickstart, <a 
href="#quickstart_pseudo">Intermediate - Pseudo-Distributed Local Install</a>, 
assuming that the system you configured in that procedure is now 
<code>node-a</code>.
+It builds upon the previous quickstart, <a 
href="#quickstart_pseudo">Pseudo-Distributed Local Install</a>, assuming that 
the system you configured in that procedure is now <code>node-a</code>.
 Stop HBase on <code>node-a</code> before continuing.</p>
 </div>
 <div class="admonitionblock note">
@@ -1198,7 +1193,7 @@ node-b.example.com: starting master, logging to 
/home/hbuser/hbase-0.98.3-hadoop
 You may see additional Java processes running on your servers as well, if they 
are used for other purposes.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 3. <code>node-a</code> <code>jps</code> Output</div>
+<div class="title">Example 2. <code>node-a</code> <code>jps</code> Output</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -1211,7 +1206,7 @@ You may see additional Java processes running on your 
servers as well, if they a
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 4. <code>node-b</code> <code>jps</code> Output</div>
+<div class="title">Example 3. <code>node-b</code> <code>jps</code> Output</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -1225,7 +1220,7 @@ You may see additional Java processes running on your 
servers as well, if they a
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 5. <code>node-a</code> <code>jps</code> Output</div>
+<div class="title">Example 4. <code>node-a</code> <code>jps</code> Output</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -1534,7 +1529,7 @@ See <a href="#loopback.ip">Loopback IP</a> for more 
details.</p>
 <p>Configuring the maximum number of file descriptors and processes for the 
user who is running the HBase process is an operating system configuration, 
rather than an HBase configuration. It is also important to be sure that the 
settings are changed for the user that actually runs HBase. To see which user 
started HBase, and that user&#8217;s ulimit configuration, look at the first 
line of the HBase log for that instance. A useful read setting config on your 
hadoop cluster is Aaron Kimball&#8217;s Configuration Parameters: What can you 
just ignore?</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 6. <code>ulimit</code> Settings on Ubuntu</div>
+<div class="title">Example 5. <code>ulimit</code> Settings on Ubuntu</div>
 <div class="content">
 <div class="paragraph">
 <p>To configure ulimit settings on Ubuntu, edit 
<em>/etc/security/limits.conf</em>, which is a space-delimited file with four 
columns. Refer to the man page for <em>limits.conf</em> for details about the 
format of this file. In the following example, the first line sets both soft 
and hard limits for the number of open files (nofile) to 32768 for the 
operating system user with the username hadoop. The second line sets the number 
of processes to 32000 for the same user.</p>
@@ -1976,6 +1971,40 @@ Standalone mode is what is described in the <a 
href="#quickstart">quickstart</a>
 In standalone mode, HBase does not use HDFS&#8201;&#8212;&#8201;it uses the 
local filesystem instead&#8201;&#8212;&#8201;and it runs all HBase daemons and 
a local ZooKeeper all up in the same JVM.
 ZooKeeper binds to a well known port so clients may talk to HBase.</p>
 </div>
+<div class="sect3">
+<h4 id="standalone.over.hdfs"><a class="anchor" 
href="#standalone.over.hdfs"></a>5.1.1. Standalone HBase over HDFS</h4>
+<div class="paragraph">
+<p>A sometimes useful variation on standalone hbase has all daemons running 
inside the
+one JVM but rather than persist to the local filesystem, instead
+they persist to an HDFS instance.</p>
+</div>
+<div class="paragraph">
+<p>You might consider this profile when you are intent on
+a simple deploy profile, the loading is light, but the
+data must persist across node comings and goings. Writing to
+HDFS where data is replicated ensures the latter.</p>
+</div>
+<div class="paragraph">
+<p>To configure this standalone variant, edit your <em>hbase-site.xml</em>
+setting the <em>hbase.rootdir</em> to point at a directory in your
+HDFS instance but then set <em>hbase.cluster.distributed</em>
+to <em>false</em>. For example:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="xml"><span 
class="tag">&lt;configuration&gt;</span>
+  <span class="tag">&lt;property&gt;</span>
+    <span class="tag">&lt;name&gt;</span>hbase.rootdir<span 
class="tag">&lt;/name&gt;</span>
+    <span 
class="tag">&lt;value&gt;</span>hdfs://namenode.example.org:8020/hbase<span 
class="tag">&lt;/value&gt;</span>
+  <span class="tag">&lt;/property&gt;</span>
+  <span class="tag">&lt;property&gt;</span>
+    <span class="tag">&lt;name&gt;</span>hbase.cluster.distributed<span 
class="tag">&lt;/name&gt;</span>
+    <span class="tag">&lt;value&gt;</span>false<span 
class="tag">&lt;/value&gt;</span>
+  <span class="tag">&lt;/property&gt;</span>
+<span class="tag">&lt;/configuration&gt;</span></code></pre>
+</div>
+</div>
+</div>
 </div>
 <div class="sect2">
 <h3 id="distributed"><a class="anchor" href="#distributed"></a>5.2. 
Distributed</h3>
@@ -2042,7 +2071,7 @@ All hosts listed in this file will have their 
RegionServer processes started and
 <p>See the <a href="#zookeeper">ZooKeeper</a> section for ZooKeeper setup 
instructions for HBase.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 7. Example Distributed HBase Cluster</div>
+<div class="title">Example 6. Example Distributed HBase Cluster</div>
 <div class="content">
 <div class="paragraph">
 <p>This is a bare-bones <em>conf/hbase-site.xml</em> for a distributed HBase 
cluster.
@@ -6585,7 +6614,7 @@ Spawning HBase Shell commands in this way is slow, so 
keep that in mind when you
 </table>
 </div>
 <div class="exampleblock">
-<div class="title">Example 8. Passing Commands to the HBase Shell</div>
+<div class="title">Example 7. Passing Commands to the HBase Shell</div>
 <div class="content">
 <div class="paragraph">
 <p>You can pass commands to the HBase Shell in non-interactive mode (see <a 
href="#hbase.shell.noninteractive">hbase.shell.noninteractive</a>) using the 
<code>echo</code> command and the <code>|</code> (pipe) operator.
@@ -6621,7 +6650,7 @@ DESCRIPTION                                          
ENABLED
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 9. Checking the Result of a Scripted Command</div>
+<div class="title">Example 8. Checking the Result of a Scripted Command</div>
 <div class="content">
 <div class="paragraph">
 <p>Since scripts are not designed to be run interactively, you need a way to 
check whether your command failed or succeeded.
@@ -6669,7 +6698,7 @@ For instance, if your script creates a table, but returns 
a non-zero exit value,
 <p>You can enter HBase Shell commands into a text file, one command per line, 
and pass that file to the HBase Shell.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 10. Example Command File</div>
+<div class="title">Example 9. Example Command File</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -6688,7 +6717,7 @@ enable 'test'</pre>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 11. Directing HBase Shell to Execute the 
Commands</div>
+<div class="title">Example 10. Directing HBase Shell to Execute the 
Commands</div>
 <div class="content">
 <div class="paragraph">
 <p>Pass the path to the command file as the only argument to the <code>hbase 
shell</code> command.
@@ -7319,7 +7348,7 @@ Namespace membership is determined during table creation 
by specifying a fully-q
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 12. Examples</div>
+<div class="title">Example 11. Examples</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -7364,7 +7393,7 @@ alter_namespace 'my_ns', {METHOD =&gt; 'set', 
'PROPERTY_NAME' =&gt; 'PROPERTY_VA
 </ul>
 </div>
 <div class="exampleblock">
-<div class="title">Example 13. Examples</div>
+<div class="title">Example 12. Examples</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -7537,7 +7566,7 @@ This section is basically a synopsis of this article by 
Bruno Dumon.</p>
 Prior to HBase 0.96, the default number of versions kept was <code>3</code>, 
but in 0.96 and newer has been changed to <code>1</code>.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 14. Modify the Maximum Number of Versions for a 
Column Family</div>
+<div class="title">Example 13. Modify the Maximum Number of Versions for a 
Column Family</div>
 <div class="content">
 <div class="paragraph">
 <p>This example uses HBase Shell to keep a maximum of 5 versions of all 
columns in column family <code>f1</code>.
@@ -7551,7 +7580,7 @@ You could also use <a 
href="http://hbase.apache.org/apidocs/org/apache/hadoop/hb
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 15. Modify the Minimum Number of Versions for a 
Column Family</div>
+<div class="title">Example 14. Modify the Minimum Number of Versions for a 
Column Family</div>
 <div class="content">
 <div class="paragraph">
 <p>You can also specify the minimum number of versions to store per column 
family.
@@ -8008,7 +8037,7 @@ Salting can be helpful if you have a few "hot" row key 
patterns which come up ov
 Consider the following example, which shows that salting can spread write load 
across multiple RegionServers, and illustrates some of the negative 
implications for reads.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 16. Salting Example</div>
+<div class="title">Example 15. Salting Example</div>
 <div class="content">
 <div class="paragraph">
 <p>Suppose you have the following list of row keys, and your table is split 
such that there is one region for each letter of the alphabet.
@@ -8063,7 +8092,7 @@ In this way, salting attempts to increase throughput on 
writes, but has a cost d
 Using a deterministic hash allows the client to reconstruct the complete 
rowkey and use a Get operation to retrieve that row as normal.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 17. Hashing Example</div>
+<div class="title">Example 16. Hashing Example</div>
 <div class="content">
 Given the same situation in the salting example above, you could instead apply 
a one-way hash that would cause the row with key <code>foo0003</code> to 
always, and predictably, receive the <code>a</code> prefix.
 Then, to retrieve that row, you would already know the key.
@@ -8424,7 +8453,7 @@ This allows for point-in-time queries even in the 
presence of deletes.</p>
 A new "raw" scan options returns all deleted rows and the delete markers.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 18. Change the Value of 
<code>KEEP_DELETED_CELLS</code> Using HBase Shell</div>
+<div class="title">Example 17. Change the Value of 
<code>KEEP_DELETED_CELLS</code> Using HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -8434,7 +8463,7 @@ A new "raw" scan options returns all deleted rows and the 
delete markers.</p>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 19. Change the Value of 
<code>KEEP_DELETED_CELLS</code> Using the API</div>
+<div class="title">Example 18. Change the Value of 
<code>KEEP_DELETED_CELLS</code> Using the API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -11667,7 +11696,7 @@ The correct way to apply cell level permissions is to 
do so in the application c
 This means that cell ACLs do not override ACLs at less granularity.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 20. HBase Shell</div>
+<div class="title">Example 19. HBase Shell</div>
 <div class="content">
 <div class="ulist">
 <ul>
@@ -11758,7 +11787,7 @@ For some examples of scanner specifications, issue the 
following HBase Shell com
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 21. API</div>
+<div class="title">Example 20. API</div>
 <div class="content">
 <div class="paragraph">
 <p>The following example shows how to grant access at the table level.</p>
@@ -11833,7 +11862,7 @@ The correct way to apply cell-level permissions is to 
do so in the application c
 </table>
 </div>
 <div class="exampleblock">
-<div class="title">Example 22. Revoking Access To a Table</div>
+<div class="title">Example 21. Revoking Access To a Table</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -11866,7 +11895,7 @@ The correct way to apply cell-level permissions is to 
do so in the application c
 <li>
 <p>Showing a User&#8217;s Effective Permissions</p>
 <div class="exampleblock">
-<div class="title">Example 23. HBase Shell</div>
+<div class="title">Example 22. HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -11883,7 +11912,7 @@ hbase&gt; user_permission JAVA_REGEX</pre>
 </ol>
 </div>
 <div class="exampleblock">
-<div class="title">Example 24. API</div>
+<div class="title">Example 23. API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12102,7 +12131,7 @@ Refer to the official API for usage instructions.</p>
 <li>
 <p>Define the List of Visibility Labels</p>
 <div class="exampleblock">
-<div class="title">Example 25. HBase Shell</div>
+<div class="title">Example 24. HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12112,7 +12141,7 @@ Refer to the official API for usage instructions.</p>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 26. Java API</div>
+<div class="title">Example 25. Java API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12139,7 +12168,7 @@ Refer to the official API for usage instructions.</p>
 <li>
 <p>Associate Labels with Users</p>
 <div class="exampleblock">
-<div class="title">Example 27. HBase Shell</div>
+<div class="title">Example 26. HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12164,7 +12193,7 @@ Refer to the official API for usage instructions.</p>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 28. Java API</div>
+<div class="title">Example 27. Java API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12188,7 +12217,7 @@ Refer to the official API for usage instructions.</p>
 <li>
 <p>Clear Labels From Users</p>
 <div class="exampleblock">
-<div class="title">Example 29. HBase Shell</div>
+<div class="title">Example 28. HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12213,7 +12242,7 @@ Refer to the official API for usage instructions.</p>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 30. Java API</div>
+<div class="title">Example 29. Java API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12238,7 +12267,7 @@ VisibilityLabelsResponse response = <span 
class="predefined-constant">null</span
 The label is associated with a given version of the cell.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 31. HBase Shell</div>
+<div class="title">Example 30. HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12271,7 +12300,7 @@ The correct way to apply cell level labels is to do so 
in the application code w
 </table>
 </div>
 <div class="exampleblock">
-<div class="title">Example 32. Java API</div>
+<div class="title">Example 31. Java API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12323,7 +12352,7 @@ set as an additional filter. It will further filter 
your results, rather than
 giving you additional authorization.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 33. HBase Shell</div>
+<div class="title">Example 32. HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12334,7 +12363,7 @@ hbase&gt; scan 'table1', AUTHORIZATIONS =&gt; 
['private']</pre>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 34. Java API</div>
+<div class="title">Example 33. Java API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12707,7 +12736,7 @@ HBase manages creation and deletion of this 
directory.</p>
 All options have been discussed separately in the sections above.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 35. Example Security Settings in 
<em>hbase-site.xml</em></div>
+<div class="title">Example 34. Example Security Settings in 
<em>hbase-site.xml</em></div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -12799,7 +12828,7 @@ All options have been discussed separately in the 
sections above.</p>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 36. Example Group Mapper in Hadoop 
<em>core-site.xml</em></div>
+<div class="title">Example 35. Example Group Mapper in Hadoop 
<em>core-site.xml</em></div>
 <div class="content">
 <div class="paragraph">
 <p>Adjust these settings to suit your environment.</p>
@@ -13127,7 +13156,7 @@ HTable table2 = <span class="keyword">new</span> 
HTable(conf2, <span class="stri
 <p>For applications which require high-end multithreaded access (e.g., 
web-servers or application servers that may serve many application threads in a 
single JVM), you can pre-create a <code>Connection</code>, as shown in the 
following example:</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 37. Pre-Creating a <code>Connection</code></div>
+<div class="title">Example 36. Pre-Creating a <code>Connection</code></div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -16947,7 +16976,7 @@ an object is considered to be a MOB. Only 
<code>IS_MOB</code> is required. If yo
 specify the <code>MOB_THRESHOLD</code>, the default threshold value of 100 KB 
is used.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 38. Configure a Column for MOB Using HBase 
Shell</div>
+<div class="title">Example 37. Configure a Column for MOB Using HBase 
Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -16958,7 +16987,7 @@ hbase&gt; alter 't1', {NAME =&gt; 'f1', IS_MOB =&gt; 
true, MOB_THRESHOLD =&gt; 1
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 39. Configure a Column for MOB Using the Java 
API</div>
+<div class="title">Example 38. Configure a Column for MOB Using the Java 
API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -17014,7 +17043,7 @@ the following properties to the RegionServer&#8217;s 
<code>hbase-site.xml</code>
 suit your environment, and restart or rolling restart the RegionServer.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 40. Example MOB Cache Configuration</div>
+<div class="title">Example 39. Example MOB Cache Configuration</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -17177,7 +17206,7 @@ See <a href="#external_apis">Apache HBase External 
APIs</a> for more information
 <h2 id="_examples"><a class="anchor" href="#_examples"></a>75. Examples</h2>
 <div class="sectionbody">
 <div class="exampleblock">
-<div class="title">Example 41. Create, modify and delete a Table Using 
Java</div>
+<div class="title">Example 40. Create, modify and delete a Table Using 
Java</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -18013,7 +18042,7 @@ represent persistent data.</p>
 <p>Download the code from <a href="http://code.google.com/p/hbase-jdo/"; 
class="bare">http://code.google.com/p/hbase-jdo/</a>.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 42. JDO Example</div>
+<div class="title">Example 41. JDO Example</div>
 <div class="content">
 <div class="paragraph">
 <p>This example uses JDO to create a table and an index, insert a row into a 
table, get
@@ -18257,7 +18286,7 @@ $ bin/hbase org.python.util.jython</p>
 <div class="sect2">
 <h3 id="_jython_code_examples"><a class="anchor" 
href="#_jython_code_examples"></a>81.2. Jython Code Examples</h3>
 <div class="exampleblock">
-<div class="title">Example 43. Table Creation, Population, Get, and Delete 
with Jython</div>
+<div class="title">Example 42. Table Creation, Population, Get, and Delete 
with Jython</div>
 <div class="content">
 <div class="paragraph">
 <p>The following Jython code example creates a table, populates it with data, 
fetches
@@ -18314,7 +18343,7 @@ admin.deleteTable(desc.getName())</code></pre>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 44. Table Scan Using Jython</div>
+<div class="title">Example 43. Table Scan Using Jython</div>
 <div class="content">
 <div class="paragraph">
 <p>This example scans a table and returns the results that match a given 
family qualifier.</p>
@@ -18438,7 +18467,7 @@ If single quotes are present in the argument, they must 
be escaped by an additio
 </dl>
 </div>
 <div class="exampleblock">
-<div class="title">Example 45. Compound Operators</div>
+<div class="title">Example 44. Compound Operators</div>
 <div class="content">
 <div class="paragraph">
 <p>You can combine multiple operators to create a hierarchy of filters, such 
as the following example:</p>
@@ -18467,7 +18496,7 @@ If single quotes are present in the argument, they must 
be escaped by an additio
 </ol>
 </div>
 <div class="exampleblock">
-<div class="title">Example 46. Precedence Example</div>
+<div class="title">Example 45. Precedence Example</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -18826,7 +18855,7 @@ Executor as a multi-threaded client application. This 
allows any Spark Tasks
 running on the executors to access the shared Connection object.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 47. HBaseContext Usage Example</div>
+<div class="title">Example 46. HBaseContext Usage Example</div>
 <div class="content">
 <div class="paragraph">
 <p>This example shows how HBaseContext can be used to do a 
<code>foreachPartition</code> on a RDD
@@ -18988,7 +19017,7 @@ access to HBase</p>
 </dl>
 </div>
 <div class="exampleblock">
-<div class="title">Example 48. <code>bulkPut</code> Example with DStreams</div>
+<div class="title">Example 47. <code>bulkPut</code> Example with DStreams</div>
 <div class="content">
 <div class="paragraph">
 <p>Below is an example of bulkPut with DStreams. It is very close in feel to 
the RDD
@@ -19063,7 +19092,7 @@ out directly from the reduce phase.</p>
 <p>First lets look at an example of using the basic bulk load functionality</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 49. Bulk Loading Example</div>
+<div class="title">Example 48. Bulk Loading Example</div>
 <div class="content">
 <div class="paragraph">
 <p>The following example shows bulk loading with Spark.</p>
@@ -19143,7 +19172,7 @@ to load the newly created HFiles into HBase.</p>
 </ul>
 </div>
 <div class="exampleblock">
-<div class="title">Example 50. Using Additional Parameters</div>
+<div class="title">Example 49. Using Additional Parameters</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -19191,7 +19220,7 @@ load.doBulkLoad(new Path(stagingFolder.getPath),
 <p>Now lets look at how you would call the thin record bulk load 
implementation</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 51. Using thin record bulk load</div>
+<div class="title">Example 50. Using thin record bulk load</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -19396,7 +19425,7 @@ The lifetime of this temporary table is tied to the 
SQLContext that was used to
 <div class="sect2">
 <h3 id="_others"><a class="anchor" href="#_others"></a>86.6. Others</h3>
 <div class="exampleblock">
-<div class="title">Example 52. Query with different timestamps</div>
+<div class="title">Example 51. Query with different timestamps</div>
 <div class="content">
 <div class="paragraph">
 <p>In HBaseSparkConf, four parameters related to timestamp can be set. They 
are TIMESTAMP,
@@ -19443,7 +19472,7 @@ sqlContext.sql(&quot;select count(col1) from 
table&quot;).show</code></pre>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 53. Native Avro support</div>
+<div class="title">Example 52. Native Avro support</div>
 <div class="content">
 <div class="paragraph">
 <p>HBase-Spark Connector support different data formats like Avro, Jason, etc. 
The use case below
@@ -20953,7 +20982,7 @@ It is useful for tuning the IO impact of prefetching 
versus the time before all
 <p>To enable prefetching on a given column family, you can use HBase Shell or 
use the API.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 54. Enable Prefetch Using HBase Shell</div>
+<div class="title">Example 53. Enable Prefetch Using HBase Shell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -20963,7 +20992,7 @@ It is useful for tuning the IO impact of prefetching 
versus the time before all
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 55. Enable Prefetch Using the API</div>
+<div class="title">Example 54. Enable Prefetch Using the API</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -21738,7 +21767,7 @@ If this is set to 0 (the default), hedged reads are 
disabled.</p>
 </ul>
 </div>
 <div class="exampleblock">
-<div class="title">Example 56. Hedged Reads Configuration Example</div>
+<div class="title">Example 55. Hedged Reads Configuration Example</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -22960,7 +22989,7 @@ remember that WALs are saved when replication is 
disabled, as long as there are
 <h3 id="trouble.network.loopback"><a class="anchor" 
href="#trouble.network.loopback"></a>115.2. Loopback IP</h3>
 <div class="paragraph">
 <p>HBase expects the loopback IP Address to be 127.0.0.1.
-See the Getting Started section on <a href="#loopback.ip">Loopback IP - HBase 
0.94.x and earlier</a>.</p>
+See the Getting Started section on <a 
href="#loopback.ip">[loopback.ip]</a>.</p>
 </div>
 </div>
 <div class="sect2">
@@ -24270,7 +24299,7 @@ exit code.</p>
 </ul>
 </div>
 <div class="exampleblock">
-<div class="title">Example 57. Canary in a Kerberos-Enabled Cluster</div>
+<div class="title">Example 56. Canary in a Kerberos-Enabled Cluster</div>
 <div class="content">
 <div class="paragraph">
 <p>This example shows each of the properties with valid values.</p>
@@ -25154,7 +25183,7 @@ The script requires you to set some environment 
variables before running it.
 Examine the script and modify it to suit your needs.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 58. <em>rolling-restart.sh</em> General Usage</div>
+<div class="title">Example 57. <em>rolling-restart.sh</em> General Usage</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -27319,7 +27348,7 @@ If it&#8217;s either a new feature request, 
enhancement, or a bug, file a ticket
 </ul>
 </div>
 <div class="exampleblock">
-<div class="title">Example 59. Code Blocks in Jira Comments</div>
+<div class="title">Example 58. Code Blocks in Jira Comments</div>
 <div class="content">
 <div class="paragraph">
 <p>A commonly used macro in Jira is {code}. Everything inside the tags is 
preformatted, as in this example.</p>
@@ -27840,7 +27869,7 @@ For now, just be aware of the difference between HBase 
1.x builds and those of H
 This difference is important to the build instructions.</p>
 </div>
 <div id="maven.settings.xml" class="exampleblock">
-<div class="title">Example 60. Example <em>~/.m2/settings.xml</em> File</div>
+<div class="title">Example 59. Example <em>~/.m2/settings.xml</em> File</div>
 <div class="content">
 <div class="paragraph">
 <p>Publishing to maven requires you sign the artifacts you want to upload.
@@ -29846,7 +29875,7 @@ This is the indication that the patch was not created 
with <code>--no-prefix</co
 </ul>
 </div>
 <div class="exampleblock">
-<div class="title">Example 61. Example of Committing a Patch</div>
+<div class="title">Example 60. Example of Committing a Patch</div>
 <div class="content">
 <div class="paragraph">
 <p>One thing you will notice with these examples is that there are a lot of 
git pull commands.
@@ -33217,7 +33246,7 @@ You do not need to re-create the table or copy data.
 If you are changing codecs, be sure the old codec is still available until all 
the old StoreFiles have been compacted.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 62. Enabling Compression on a ColumnFamily of an 
Existing Table using HBaseShell</div>
+<div class="title">Example 61. Enabling Compression on a ColumnFamily of an 
Existing Table using HBaseShell</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -33229,7 +33258,7 @@ hbase&gt; enable 'test'</pre>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 63. Creating a New Table with Compression On a 
ColumnFamily</div>
+<div class="title">Example 62. Creating a New Table with Compression On a 
ColumnFamily</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -33239,7 +33268,7 @@ hbase&gt; enable 'test'</pre>
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 64. Verifying a ColumnFamily&#8217;s Compression 
Settings</div>
+<div class="title">Example 63. Verifying a ColumnFamily&#8217;s Compression 
Settings</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -33264,7 +33293,7 @@ DESCRIPTION                                          
ENABLED
 You must specify either <code>-write</code> or <code>-update-read</code> as 
your first parameter, and if you do not specify another parameter, usage advice 
is printed for each option.</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 65. LoadTestTool Usage</div>
+<div class="title">Example 64. LoadTestTool Usage</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -33324,7 +33353,7 @@ Options:
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 66. Example Usage of LoadTestTool</div>
+<div class="title">Example 65. Example Usage of LoadTestTool</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -33348,7 +33377,7 @@ Disable the table before altering its 
DATA_BLOCK_ENCODING setting.
 Following is an example using HBase Shell:</p>
 </div>
 <div class="exampleblock">
-<div class="title">Example 67. Enable Data Block Encoding On a Table</div>
+<div class="title">Example 66. Enable Data Block Encoding On a Table</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">
@@ -33366,7 +33395,7 @@ hbase&gt; enable 'test'
 </div>
 </div>
 <div class="exampleblock">
-<div class="title">Example 68. Verifying a ColumnFamily&#8217;s Data Block 
Encoding</div>
+<div class="title">Example 67. Verifying a ColumnFamily&#8217;s Data Block 
Encoding</div>
 <div class="content">
 <div class="listingblock">
 <div class="content">

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4ac23c25/devapidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/devapidocs/constant-values.html b/devapidocs/constant-values.html
index d74a5f7..7bc36b1 100644
--- a/devapidocs/constant-values.html
+++ b/devapidocs/constant-values.html
@@ -3716,14 +3716,14 @@
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a></code></td>
 <td><code><a 
href="org/apache/hadoop/hbase/Version.html#date">date</a></code></td>
-<td class="colLast"><code>"Wed Dec  7 14:13:58 UTC 2016"</code></td>
+<td class="colLast"><code>"Wed Dec  7 20:37:37 UTC 2016"</code></td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><a name="org.apache.hadoop.hbase.Version.revision">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a></code></td>
 <td><code><a 
href="org/apache/hadoop/hbase/Version.html#revision">revision</a></code></td>
-<td 
class="colLast"><code>"61220e4d7c8d7e5fb8ed3bbe2469bc86632c48de"</code></td>
+<td 
class="colLast"><code>"6f25f838c0af80d2deaec91ed13248ce5024bd29"</code></td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><a name="org.apache.hadoop.hbase.Version.srcChecksum">

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4ac23c25/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
----------------------------------------------------------------------
diff --git 
a/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html 
b/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
index dae4f1c..d1bcacf 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
@@ -393,166 +393,166 @@ extends org.jamon.AbstractTemplateProxy.ImplData</pre>
 <pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/HMaster.html" 
title="class in org.apache.hadoop.hbase.master">HMaster</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.112">m_master</a></pre>
 </li>
 </ul>
-<a name="m_format">
+<a name="m_frags">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_format</h4>
-<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.124">m_format</a></pre>
+<h4>m_frags</h4>
+<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map</a>&lt;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>,<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer</a>&gt; <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.124">m_frags</a></pre>
 </li>
 </ul>
-<a name="m_format__IsNotDefault">
+<a name="m_frags__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_format__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.129">m_format__IsNotDefault</a></pre>
+<h4>m_frags__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.129">m_frags__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_catalogJanitorEnabled">
+<a name="m_serverManager">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_catalogJanitorEnabled</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.141">m_catalogJanitorEnabled</a></pre>
+<h4>m_serverManager</h4>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/ServerManager.html" 
title="class in org.apache.hadoop.hbase.master">ServerManager</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.141">m_serverManager</a></pre>
 </li>
 </ul>
-<a name="m_catalogJanitorEnabled__IsNotDefault">
+<a name="m_serverManager__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_catalogJanitorEnabled__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.146">m_catalogJanitorEnabled__IsNotDefault</a></pre>
+<h4>m_serverManager__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.146">m_serverManager__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_assignmentManager">
+<a name="m_deadServers">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_assignmentManager</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/AssignmentManager.html" 
title="class in org.apache.hadoop.hbase.master">AssignmentManager</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.158">m_assignmentManager</a></pre>
+<h4>m_deadServers</h4>
+<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt; <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.158">m_deadServers</a></pre>
 </li>
 </ul>
-<a name="m_assignmentManager__IsNotDefault">
+<a name="m_deadServers__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_assignmentManager__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.163">m_assignmentManager__IsNotDefault</a></pre>
+<h4>m_deadServers__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.163">m_deadServers__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_servers">
+<a name="m_filter">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_servers</h4>
-<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt; <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.175">m_servers</a></pre>
+<h4>m_filter</h4>
+<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.175">m_filter</a></pre>
 </li>
 </ul>
-<a name="m_servers__IsNotDefault">
+<a name="m_filter__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_servers__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.180">m_servers__IsNotDefault</a></pre>
+<h4>m_filter__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.180">m_filter__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_frags">
+<a name="m_assignmentManager">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_frags</h4>
-<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map</a>&lt;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>,<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer</a>&gt; <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.192">m_frags</a></pre>
+<h4>m_assignmentManager</h4>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/AssignmentManager.html" 
title="class in org.apache.hadoop.hbase.master">AssignmentManager</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.192">m_assignmentManager</a></pre>
 </li>
 </ul>
-<a name="m_frags__IsNotDefault">
+<a name="m_assignmentManager__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_frags__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.197">m_frags__IsNotDefault</a></pre>
+<h4>m_assignmentManager__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.197">m_assignmentManager__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_serverManager">
+<a name="m_catalogJanitorEnabled">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_serverManager</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/ServerManager.html" 
title="class in org.apache.hadoop.hbase.master">ServerManager</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.209">m_serverManager</a></pre>
+<h4>m_catalogJanitorEnabled</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.209">m_catalogJanitorEnabled</a></pre>
 </li>
 </ul>
-<a name="m_serverManager__IsNotDefault">
+<a name="m_catalogJanitorEnabled__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_serverManager__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.214">m_serverManager__IsNotDefault</a></pre>
+<h4>m_catalogJanitorEnabled__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.214">m_catalogJanitorEnabled__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_filter">
+<a name="m_servers">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_filter</h4>
-<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.226">m_filter</a></pre>
+<h4>m_servers</h4>
+<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt; <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.226">m_servers</a></pre>
 </li>
 </ul>
-<a name="m_filter__IsNotDefault">
+<a name="m_servers__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_filter__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.231">m_filter__IsNotDefault</a></pre>
+<h4>m_servers__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.231">m_servers__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_deadServers">
+<a name="m_metaLocation">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_deadServers</h4>
-<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt; <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.243">m_deadServers</a></pre>
+<h4>m_metaLocation</h4>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.243">m_metaLocation</a></pre>
 </li>
 </ul>
-<a name="m_deadServers__IsNotDefault">
+<a name="m_metaLocation__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_deadServers__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.248">m_deadServers__IsNotDefault</a></pre>
+<h4>m_metaLocation__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.248">m_metaLocation__IsNotDefault</a></pre>
 </li>
 </ul>
-<a name="m_metaLocation">
+<a name="m_format">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>m_metaLocation</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.260">m_metaLocation</a></pre>
+<h4>m_format</h4>
+<pre>private&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.260">m_format</a></pre>
 </li>
 </ul>
-<a name="m_metaLocation__IsNotDefault">
+<a name="m_format__IsNotDefault">
 <!--   -->
 </a>
 <ul class="blockListLast">
 <li class="blockList">
-<h4>m_metaLocation__IsNotDefault</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.265">m_metaLocation__IsNotDefault</a></pre>
+<h4>m_format__IsNotDefault</h4>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.265">m_format__IsNotDefault</a></pre>
 </li>
 </ul>
 </li>
@@ -598,247 +598,247 @@ extends org.jamon.AbstractTemplateProxy.ImplData</pre>
 <pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/HMaster.html" 
title="class in org.apache.hadoop.hbase.master">HMaster</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.108">getMaster</a>()</pre>
 </li>
 </ul>
-<a name="setFormat-java.lang.String-">
+<a name="setFrags-java.util.Map-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setFormat</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.114">setFormat</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;format)</pre>
+<h4>setFrags</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.114">setFrags</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map</a>&lt;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>,<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer</a>&gt;&nbsp;frags)</pre>
 </li>
 </ul>
-<a name="getFormat--">
+<a name="getFrags--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getFormat</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.120">getFormat</a>()</pre>
+<h4>getFrags</h4>
+<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map</a>&lt;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>,<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer</a>&gt;&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.120">getFrags</a>()</pre>
 </li>
 </ul>
-<a name="getFormat__IsNotDefault--">
+<a name="getFrags__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getFormat__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.125">getFormat__IsNotDefault</a>()</pre>
+<h4>getFrags__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.125">getFrags__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a name="setCatalogJanitorEnabled-boolean-">
+<a name="setServerManager-org.apache.hadoop.hbase.master.ServerManager-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setCatalogJanitorEnabled</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.131">setCatalogJanitorEnabled</a>(boolean&nbsp;catalogJanitorEnabled)</pre>
+<h4>setServerManager</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.131">setServerManager</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/master/ServerManager.html" 
title="class in 
org.apache.hadoop.hbase.master">ServerManager</a>&nbsp;serverManager)</pre>
 </li>
 </ul>
-<a name="getCatalogJanitorEnabled--">
+<a name="getServerManager--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getCatalogJanitorEnabled</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.137">getCatalogJanitorEnabled</a>()</pre>
+<h4>getServerManager</h4>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/ServerManager.html" 
title="class in org.apache.hadoop.hbase.master">ServerManager</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.137">getServerManager</a>()</pre>
 </li>
 </ul>
-<a name="getCatalogJanitorEnabled__IsNotDefault--">
+<a name="getServerManager__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getCatalogJanitorEnabled__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.142">getCatalogJanitorEnabled__IsNotDefault</a>()</pre>
+<h4>getServerManager__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.142">getServerManager__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a 
name="setAssignmentManager-org.apache.hadoop.hbase.master.AssignmentManager-">
+<a name="setDeadServers-java.util.Set-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setAssignmentManager</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.148">setAssignmentManager</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/master/AssignmentManager.html" 
title="class in 
org.apache.hadoop.hbase.master">AssignmentManager</a>&nbsp;assignmentManager)</pre>
+<h4>setDeadServers</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.148">setDeadServers</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;deadServers)</pre>
 </li>
 </ul>
-<a name="getAssignmentManager--">
+<a name="getDeadServers--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getAssignmentManager</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/AssignmentManager.html" 
title="class in org.apache.hadoop.hbase.master">AssignmentManager</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.154">getAssignmentManager</a>()</pre>
+<h4>getDeadServers</h4>
+<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.154">getDeadServers</a>()</pre>
 </li>
 </ul>
-<a name="getAssignmentManager__IsNotDefault--">
+<a name="getDeadServers__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getAssignmentManager__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.159">getAssignmentManager__IsNotDefault</a>()</pre>
+<h4>getDeadServers__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.159">getDeadServers__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a name="setServers-java.util.List-">
+<a name="setFilter-java.lang.String-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setServers</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.165">setServers</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;servers)</pre>
+<h4>setFilter</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.165">setFilter</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;filter)</pre>
 </li>
 </ul>
-<a name="getServers--">
+<a name="getFilter--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getServers</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.171">getServers</a>()</pre>
+<h4>getFilter</h4>
+<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.171">getFilter</a>()</pre>
 </li>
 </ul>
-<a name="getServers__IsNotDefault--">
+<a name="getFilter__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getServers__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.176">getServers__IsNotDefault</a>()</pre>
+<h4>getFilter__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.176">getFilter__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a name="setFrags-java.util.Map-">
+<a 
name="setAssignmentManager-org.apache.hadoop.hbase.master.AssignmentManager-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setFrags</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.182">setFrags</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map</a>&lt;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>,<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer</a>&gt;&nbsp;frags)</pre>
+<h4>setAssignmentManager</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.182">setAssignmentManager</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/master/AssignmentManager.html" 
title="class in 
org.apache.hadoop.hbase.master">AssignmentManager</a>&nbsp;assignmentManager)</pre>
 </li>
 </ul>
-<a name="getFrags--">
+<a name="getAssignmentManager--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getFrags</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map</a>&lt;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>,<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer</a>&gt;&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.188">getFrags</a>()</pre>
+<h4>getAssignmentManager</h4>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/AssignmentManager.html" 
title="class in org.apache.hadoop.hbase.master">AssignmentManager</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.188">getAssignmentManager</a>()</pre>
 </li>
 </ul>
-<a name="getFrags__IsNotDefault--">
+<a name="getAssignmentManager__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getFrags__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.193">getFrags__IsNotDefault</a>()</pre>
+<h4>getAssignmentManager__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.193">getAssignmentManager__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a name="setServerManager-org.apache.hadoop.hbase.master.ServerManager-">
+<a name="setCatalogJanitorEnabled-boolean-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setServerManager</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.199">setServerManager</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/master/ServerManager.html" 
title="class in 
org.apache.hadoop.hbase.master">ServerManager</a>&nbsp;serverManager)</pre>
+<h4>setCatalogJanitorEnabled</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.199">setCatalogJanitorEnabled</a>(boolean&nbsp;catalogJanitorEnabled)</pre>
 </li>
 </ul>
-<a name="getServerManager--">
+<a name="getCatalogJanitorEnabled--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getServerManager</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/master/ServerManager.html" 
title="class in org.apache.hadoop.hbase.master">ServerManager</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.205">getServerManager</a>()</pre>
+<h4>getCatalogJanitorEnabled</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.205">getCatalogJanitorEnabled</a>()</pre>
 </li>
 </ul>
-<a name="getServerManager__IsNotDefault--">
+<a name="getCatalogJanitorEnabled__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getServerManager__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.210">getServerManager__IsNotDefault</a>()</pre>
+<h4>getCatalogJanitorEnabled__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.210">getCatalogJanitorEnabled__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a name="setFilter-java.lang.String-">
+<a name="setServers-java.util.List-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setFilter</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.216">setFilter</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;filter)</pre>
+<h4>setServers</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.216">setServers</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;servers)</pre>
 </li>
 </ul>
-<a name="getFilter--">
+<a name="getServers--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getFilter</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.222">getFilter</a>()</pre>
+<h4>getServers</h4>
+<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.222">getServers</a>()</pre>
 </li>
 </ul>
-<a name="getFilter__IsNotDefault--">
+<a name="getServers__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getFilter__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.227">getFilter__IsNotDefault</a>()</pre>
+<h4>getServers__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.227">getServers__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a name="setDeadServers-java.util.Set-">
+<a name="setMetaLocation-org.apache.hadoop.hbase.ServerName-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setDeadServers</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.233">setDeadServers</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;deadServers)</pre>
+<h4>setMetaLocation</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.233">setMetaLocation</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&nbsp;metaLocation)</pre>
 </li>
 </ul>
-<a name="getDeadServers--">
+<a name="getMetaLocation--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getDeadServers</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&gt;&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.239">getDeadServers</a>()</pre>
+<h4>getMetaLocation</h4>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.239">getMetaLocation</a>()</pre>
 </li>
 </ul>
-<a name="getDeadServers__IsNotDefault--">
+<a name="getMetaLocation__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getDeadServers__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.244">getDeadServers__IsNotDefault</a>()</pre>
+<h4>getMetaLocation__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.244">getMetaLocation__IsNotDefault</a>()</pre>
 </li>
 </ul>
-<a name="setMetaLocation-org.apache.hadoop.hbase.ServerName-">
+<a name="setFormat-java.lang.String-">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>setMetaLocation</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.250">setMetaLocation</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&nbsp;metaLocation)</pre>
+<h4>setFormat</h4>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.250">setFormat</a>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;format)</pre>
 </li>
 </ul>
-<a name="getMetaLocation--">
+<a name="getFormat--">
 <!--   -->
 </a>
 <ul class="blockList">
 <li class="blockList">
-<h4>getMetaLocation</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/ServerName.html" title="class 
in org.apache.hadoop.hbase">ServerName</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.256">getMetaLocation</a>()</pre>
+<h4>getFormat</h4>
+<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.256">getFormat</a>()</pre>
 </li>
 </ul>
-<a name="getMetaLocation__IsNotDefault--">
+<a name="getFormat__IsNotDefault--">
 <!--   -->
 </a>
 <ul class="blockListLast">
 <li class="blockList">
-<h4>getMetaLocation__IsNotDefault</h4>
-<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.261">getMetaLocation__IsNotDefault</a>()</pre>
+<h4>getFormat__IsNotDefault</h4>
+<pre>public&nbsp;boolean&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html#line.261">getFormat__IsNotDefault</a>()</pre>
 </li>
 </ul>
 </li>

Reply via email to