You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2017/05/15 19:51:24 UTC

[1/3] kudu git commit: Update docs from branch-1.3.x

Repository: kudu
Updated Branches:
  refs/heads/gh-pages ad452d234 -> 76d8b59d8


http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/export_control.html
----------------------------------------------------------------------
diff --git a/docs/export_control.html b/docs/export_control.html
index ab5e795..7f984ca 100644
--- a/docs/export_control.html
+++ b/docs/export_control.html
@@ -117,6 +117,10 @@ to provide secure authentication and TLS-protected transport.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -129,6 +133,10 @@ to provide secure authentication and TLS-protected transport.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/index.html
----------------------------------------------------------------------
diff --git a/docs/index.html b/docs/index.html
index 1b705f2..e09c7b2 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -433,6 +433,10 @@ formats using Impala, without the need to change your legacy systems.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -445,6 +449,10 @@ formats using Impala, without the need to change your legacy systems.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/installation.html
----------------------------------------------------------------------
diff --git a/docs/installation.html b/docs/installation.html
index a5eef76..feeea4a 100644
--- a/docs/installation.html
+++ b/docs/installation.html
@@ -2,7 +2,7 @@
 title: Installing Apache Kudu
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:26 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:07 PDT'
 ---
 <!--
 
@@ -86,6 +86,9 @@ information.</p>
 <li>
 <p>ntp.</p>
 </li>
+<li>
+<p>xfs or ext4 formatted drives.</p>
+</li>
 </ul>
 </div>
 </dd>
@@ -1182,6 +1185,10 @@ $ sudo service kudu-tserver start</code></pre>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -1194,6 +1201,10 @@ $ sudo service kudu-tserver start</code></pre>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/known_issues.html
----------------------------------------------------------------------
diff --git a/docs/known_issues.html b/docs/known_issues.html
index bbdbb32..cdc960c 100644
--- a/docs/known_issues.html
+++ b/docs/known_issues.html
@@ -2,7 +2,7 @@
 title: Known Issues and Limitations
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:13 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:07 PDT'
 ---
 <!--
 
@@ -26,24 +26,22 @@ limitations under the License.
 
 <h1>Known Issues and Limitations</h1>
       <div class="sect1">
-<h2 id="_schema_and_usage_limitations"><a class="link" href="#_schema_and_usage_limitations">Schema and Usage Limitations</a></h2>
+<h2 id="_schema"><a class="link" href="#_schema">Schema</a></h2>
 <div class="sectionbody">
+<div class="sect2">
+<h3 id="_primary_keys"><a class="link" href="#_primary_keys">Primary keys</a></h3>
 <div class="ulist">
 <ul>
 <li>
-<p>Kudu is primarily designed for analytic use cases. You are likely to encounter issues if
-a single row contains multiple kilobytes of data.</p>
-</li>
-<li>
-<p>The columns which make up the primary key must be listed first in the schema.</p>
-</li>
-<li>
 <p>Columns that are part of the primary key cannot be renamed.
 The primary key may not be changed after the table is created.
 You must drop and recreate a table to select a new primary key
 or rename key columns.</p>
 </li>
 <li>
+<p>The columns which make up the primary key must be listed first in the schema.</p>
+</li>
+<li>
 <p>The primary key of a row may not be modified using the <code>UPDATE</code> functionality.
 To modify a row&#8217;s primary key, the row must be deleted and re-inserted with
 the modified key. Such a modification is non-atomic.</p>
@@ -54,17 +52,87 @@ primary key definition. Additionally, all columns that are part of a primary
 key definition must be <code>NOT NULL</code>.</p>
 </li>
 <li>
-<p>Type and nullability of existing columns cannot be changed by altering the table.</p>
+<p>Auto-generated primary keys are not supported.</p>
 </li>
 <li>
-<p>Dropping a column does not immediately reclaim space. Compaction must run first.
-There is no way to run compaction manually, but dropping the table will reclaim the
+<p>Cells making up a composite primary key are limited to a total of 16KB after the internal
+composite-key encoding done by Kudu.</p>
+</li>
+</ul>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_columns"><a class="link" href="#_columns">Columns</a></h3>
+<div class="ulist">
+<ul>
+<li>
+<p>TIMESTAMP, DECIMAL, CHAR, VARCHAR, DATE, and complex types like ARRAY are not supported.</p>
+</li>
+<li>
+<p>Type, nullability, compression, and encoding of existing columns cannot be changed by altering the table.</p>
+</li>
+<li>
+<p>Tables can have a maximum of 300 columns.</p>
+</li>
+</ul>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_tables"><a class="link" href="#_tables">Tables</a></h3>
+<div class="ulist">
+<ul>
+<li>
+<p>Tables must have an odd number of replicas, with a maximum of 7.</p>
+</li>
+<li>
+<p>Replication factor (set at table creation time) cannot be changed.</p>
+</li>
+</ul>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_cells_individual_values"><a class="link" href="#_cells_individual_values">Cells (individual values)</a></h3>
+<div class="ulist">
+<ul>
+<li>
+<p>Cells cannot be larger than 64KB.</p>
+</li>
+</ul>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_other_usage_limitations"><a class="link" href="#_other_usage_limitations">Other usage limitations</a></h3>
+<div class="ulist">
+<ul>
+<li>
+<p>Kudu is primarily designed for analytic use cases. You are likely to encounter issues if
+a single row contains multiple kilobytes of data.</p>
+</li>
+<li>
+<p>Secondary indexes are not supported.</p>
+</li>
+<li>
+<p>Multi-row transactions are not supported.</p>
+</li>
+<li>
+<p>Relational features, like foreign keys, are not supported.</p>
+</li>
+<li>
+<p>Identifiers such as column and table names are restricted to be valid UTF-8 strings.
+Additionally, a maximum length of 256 characters is enforced.</p>
+</li>
+<li>
+<p>Dropping a column does not immediately reclaim space. Compaction must run first.</p>
+</li>
+<li>
+<p>There is no way to run compaction manually, but dropping the table will reclaim the
 space immediately.</p>
 </li>
 </ul>
 </div>
 </div>
 </div>
+</div>
 <div class="sect1">
 <h2 id="_partitioning_limitations"><a class="link" href="#_partitioning_limitations">Partitioning Limitations</a></h2>
 <div class="sectionbody">
@@ -81,40 +149,108 @@ or dropped after a table has been created. See
 create a new table with the new partitioning and insert the contents of the old
 table.</p>
 </li>
+<li>
+<p>Tablets that lose a majority of replicas (such as 1 left out of 3) require manual
+intervention to be repaired.</p>
+</li>
 </ul>
 </div>
 </div>
 </div>
 <div class="sect1">
-<h2 id="_replication_and_backup_limitations"><a class="link" href="#_replication_and_backup_limitations">Replication and Backup Limitations</a></h2>
+<h2 id="_cluster_management"><a class="link" href="#_cluster_management">Cluster management</a></h2>
 <div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
-<p>Kudu does not currently include any built-in features for backup and restore.
-Users are encouraged to use tools such as Spark or Impala to export or import
-tables as necessary.</p>
+<p>Rack awareness is not supported.</p>
+</li>
+<li>
+<p>Multi-datacenter is not supported.</p>
+</li>
+<li>
+<p>Rolling restart is not supported.</p>
+</li>
+</ul>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_server_management"><a class="link" href="#_server_management">Server management</a></h2>
+<div class="sectionbody">
+<div class="ulist">
+<ul>
+<li>
+<p>Production deployments should configure a least 4GB of memory for tablet servers,
+and ideally more than 10GB.</p>
+</li>
+<li>
+<p>Write ahead logs (WAL) can only be stored on one disk.</p>
+</li>
+<li>
+<p>Disk failures are not tolerated and tablets servers will crash as soon as one is detected.</p>
+</li>
+<li>
+<p>Failed disks with unrecoverable data require the formatting of all the Kudu data for
+that tablet server before it can be started again.</p>
+</li>
+<li>
+<p>Data directories cannot be added/removed; all must be reformatted to change the set
+of directories.</p>
+</li>
+<li>
+<p>Tablet servers cannot be gracefully decommissioned.</p>
+</li>
+<li>
+<p>Tablet servers can’t change address/port.</p>
+</li>
+<li>
+<p>Kudu has a hard requirement on having up-to-date NTP. Kudu masters and tablet servers
+will crash when out of sync.</p>
+</li>
+<li>
+<p>Kudu releases are only tested with NTP. Other time synchronization providers like Chrony
+may or may not work.</p>
 </li>
 </ul>
 </div>
 </div>
 </div>
 <div class="sect1">
-<h2 id="_impala_limitations"><a class="link" href="#_impala_limitations">Impala Limitations</a></h2>
+<h2 id="_scale"><a class="link" href="#_scale">Scale</a></h2>
 <div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
-<p>Updates, inserts, and deletes via Impala are non-transactional. If a query
-fails part of the way through, its partial effects will not be rolled back.</p>
+<p>Recommended maximum number of tablet servers is 100.</p>
+</li>
+<li>
+<p>Recommended maximum number of masters is 3.</p>
+</li>
+<li>
+<p>Recommended maximum amount of stored data, post-replication and post-compression,
+per tablet server is 4TB.</p>
 </li>
 <li>
-<p>No timestamp and decimal type support.</p>
+<p>Recommended maximum number of tablets per tablet server is 1000, post-replication.</p>
 </li>
 <li>
-<p>The maximum parallelism of a single query is limited to the number of tablets
-in a table. For good analytic performance, aim for 10 or more tablets per host
-or use large tables.</p>
+<p>Maximum number of tablets per table for each tablet server is 60, post-replication,
+at table-creation time.</p>
+</li>
+</ul>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_replication_and_backup_limitations"><a class="link" href="#_replication_and_backup_limitations">Replication and Backup Limitations</a></h2>
+<div class="sectionbody">
+<div class="ulist">
+<ul>
+<li>
+<p>Kudu does not currently include any built-in features for backup and restore.
+Users are encouraged to use tools such as Spark or Impala to export or import
+tables as necessary.</p>
 </li>
 </ul>
 </div>
@@ -222,6 +358,10 @@ you can monitor the number of tablets per server in the web UI.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -233,12 +373,26 @@ you can monitor the number of tablets per server in the web UI.</p>
           <a href="configuration_reference.html">Kudu Configuration Reference</a> 
       </li> 
       <li>
+
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
 <span class="active-toc">Known Issues and Limitations</span>
             <ul class="sectlevel1">
-<li><a href="#_schema_and_usage_limitations">Schema and Usage Limitations</a></li>
+<li><a href="#_schema">Schema</a>
+<ul class="sectlevel2">
+<li><a href="#_primary_keys">Primary keys</a></li>
+<li><a href="#_columns">Columns</a></li>
+<li><a href="#_tables">Tables</a></li>
+<li><a href="#_cells_individual_values">Cells (individual values)</a></li>
+<li><a href="#_other_usage_limitations">Other usage limitations</a></li>
+</ul>
+</li>
 <li><a href="#_partitioning_limitations">Partitioning Limitations</a></li>
+<li><a href="#_cluster_management">Cluster management</a></li>
+<li><a href="#_server_management">Server management</a></li>
+<li><a href="#_scale">Scale</a></li>
 <li><a href="#_replication_and_backup_limitations">Replication and Backup Limitations</a></li>
-<li><a href="#_impala_limitations">Impala Limitations</a></li>
 <li><a href="#_security_limitations">Security Limitations</a></li>
 <li><a href="#_other_known_issues">Other Known Issues</a></li>
 </ul> 

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/kudu-master_configuration_reference.html
----------------------------------------------------------------------
diff --git a/docs/kudu-master_configuration_reference.html b/docs/kudu-master_configuration_reference.html
index c56ba71..d5e84f1 100644
--- a/docs/kudu-master_configuration_reference.html
+++ b/docs/kudu-master_configuration_reference.html
@@ -2,7 +2,7 @@
 title: kudu-master Flags
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 22:11:57 PDT'
+last_updated: 'Last updated 2017-05-15 12:46:02 PDT'
 ---
 <!--
 
@@ -296,7 +296,7 @@ configuration tasks.</p>
 <div class="sect2">
 <h3 id="kudu-master_webserver_certificate_file"><a class="link" href="#kudu-master_webserver_certificate_file"><code>--webserver_certificate_file</code></a></h3>
 <div class="paragraph">
-<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled</p>
+<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled. If --webserver_private_key_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -354,7 +354,7 @@ configuration tasks.</p>
 <div class="sect2">
 <h3 id="kudu-master_webserver_private_key_file"><a class="link" href="#kudu-master_webserver_private_key_file"><code>--webserver_private_key_file</code></a></h3>
 <div class="paragraph">
-<p>The full path to the private key used as a counterpart to the public key contained in --ssl_server_certificate. If --ssl_server_certificate is set, this option must be set as well.</p>
+<p>The full path to the private key used as a counterpart to the public key contained in --webserver_certificate_file. If --webserver_certificate_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -4191,6 +4191,10 @@ being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -4203,6 +4207,10 @@ being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/kudu-master_configuration_reference_unsupported.html
----------------------------------------------------------------------
diff --git a/docs/kudu-master_configuration_reference_unsupported.html b/docs/kudu-master_configuration_reference_unsupported.html
index 28203ab..6dc4b57 100644
--- a/docs/kudu-master_configuration_reference_unsupported.html
+++ b/docs/kudu-master_configuration_reference_unsupported.html
@@ -2,7 +2,7 @@
 title: kudu-master Unsupported Flags
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 22:11:57 PDT'
+last_updated: 'Last updated 2017-05-15 12:46:02 PDT'
 ---
 <!--
 
@@ -3807,6 +3807,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -3819,6 +3823,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/kudu-tserver_configuration_reference.html
----------------------------------------------------------------------
diff --git a/docs/kudu-tserver_configuration_reference.html b/docs/kudu-tserver_configuration_reference.html
index 5049c75..35e50d5 100644
--- a/docs/kudu-tserver_configuration_reference.html
+++ b/docs/kudu-tserver_configuration_reference.html
@@ -2,7 +2,7 @@
 title: kudu-tserver Flags
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 22:11:57 PDT'
+last_updated: 'Last updated 2017-05-15 12:46:02 PDT'
 ---
 <!--
 
@@ -267,7 +267,7 @@ configuration tasks.</p>
 <div class="sect2">
 <h3 id="kudu-tserver_webserver_certificate_file"><a class="link" href="#kudu-tserver_webserver_certificate_file"><code>--webserver_certificate_file</code></a></h3>
 <div class="paragraph">
-<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled</p>
+<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled. If --webserver_private_key_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -325,7 +325,7 @@ configuration tasks.</p>
 <div class="sect2">
 <h3 id="kudu-tserver_webserver_private_key_file"><a class="link" href="#kudu-tserver_webserver_private_key_file"><code>--webserver_private_key_file</code></a></h3>
 <div class="paragraph">
-<p>The full path to the private key used as a counterpart to the public key contained in --ssl_server_certificate. If --ssl_server_certificate is set, this option must be set as well.</p>
+<p>The full path to the private key used as a counterpart to the public key contained in --webserver_certificate_file. If --webserver_certificate_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -3959,6 +3959,10 @@ being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -3971,6 +3975,10 @@ being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/kudu-tserver_configuration_reference_unsupported.html
----------------------------------------------------------------------
diff --git a/docs/kudu-tserver_configuration_reference_unsupported.html b/docs/kudu-tserver_configuration_reference_unsupported.html
index 830009a..2f84cf0 100644
--- a/docs/kudu-tserver_configuration_reference_unsupported.html
+++ b/docs/kudu-tserver_configuration_reference_unsupported.html
@@ -2,7 +2,7 @@
 title: kudu-tserver Unsupported Flags
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 22:11:57 PDT'
+last_updated: 'Last updated 2017-05-15 12:46:02 PDT'
 ---
 <!--
 
@@ -3359,6 +3359,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -3371,6 +3375,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/kudu_impala_integration.html
----------------------------------------------------------------------
diff --git a/docs/kudu_impala_integration.html b/docs/kudu_impala_integration.html
index f9385c7..fd77f6d 100644
--- a/docs/kudu_impala_integration.html
+++ b/docs/kudu_impala_integration.html
@@ -2,7 +2,7 @@
 title: Using Apache Kudu with Apache Impala (incubating)
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:13 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:07 PDT'
 ---
 <!--
 
@@ -1009,6 +1009,15 @@ or nested-typed columns.</p>
 instead will be evaluated by the Impala scan node. This may decrease performance
 relative to other types of predicates.</p>
 </li>
+<li>
+<p>Updates, inserts, and deletes via Impala are non-transactional. If a query
+fails part of the way through, its partial effects will not be rolled back.</p>
+</li>
+<li>
+<p>The maximum parallelism of a single query is limited to the number of tablets
+in a table. For good analytic performance, aim for 10 or more tablets per host
+or use large tables.</p>
+</li>
 </ul>
 </div>
 </div>
@@ -1085,6 +1094,10 @@ relative to other types of predicates.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -1097,6 +1110,10 @@ relative to other types of predicates.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/prior_release_notes.html
----------------------------------------------------------------------
diff --git a/docs/prior_release_notes.html b/docs/prior_release_notes.html
index 74cbe00..25b35b5 100644
--- a/docs/prior_release_notes.html
+++ b/docs/prior_release_notes.html
@@ -1606,6 +1606,10 @@ noted in its release notes.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -1618,6 +1622,10 @@ noted in its release notes.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/quickstart.html
----------------------------------------------------------------------
diff --git a/docs/quickstart.html b/docs/quickstart.html
index 455e411..5ac5265 100644
--- a/docs/quickstart.html
+++ b/docs/quickstart.html
@@ -386,6 +386,10 @@ contain references to the previous VM&#8217;s SSH credentials. Remove any refere
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -398,6 +402,10 @@ contain references to the previous VM&#8217;s SSH credentials. Remove any refere
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/release_notes.html
----------------------------------------------------------------------
diff --git a/docs/release_notes.html b/docs/release_notes.html
index 25d1dcf..4766d20 100644
--- a/docs/release_notes.html
+++ b/docs/release_notes.html
@@ -2,7 +2,7 @@
 title: Apache Kudu 1.3.1 Release Notes
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:13 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:04 PDT'
 ---
 <!--
 
@@ -477,6 +477,10 @@ documentation.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -489,6 +493,10 @@ documentation.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/schema_design.html
----------------------------------------------------------------------
diff --git a/docs/schema_design.html b/docs/schema_design.html
index f54c276..9286178 100644
--- a/docs/schema_design.html
+++ b/docs/schema_design.html
@@ -2,7 +2,7 @@
 title: Apache Kudu Schema Design
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:13 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:04 PDT'
 ---
 <!--
 
@@ -826,6 +826,10 @@ altered.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -838,6 +842,10 @@ altered.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/security.html
----------------------------------------------------------------------
diff --git a/docs/security.html b/docs/security.html
index 05b3e60..9413d17 100644
--- a/docs/security.html
+++ b/docs/security.html
@@ -1,8 +1,8 @@
 ---
-title: Security
+title: Apache Kudu Security
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:26 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:07 PDT'
 ---
 <!--
 
@@ -24,7 +24,7 @@ limitations under the License.
   <div class="row">
     <div class="col-md-9">
 
-<h1>Security</h1>
+<h1>Apache Kudu Security</h1>
       <div id="preamble">
 <div class="sectionbody">
 <div class="paragraph">
@@ -298,7 +298,7 @@ tablet server) in order to ensure that a Kudu cluster is secure:</p>
 # may access data in Kudu via the Impala service subject to its own
 # authorization rules.
 --user-acl=impala,nightly_etl_service_account
---admin-acl=hadoopadmin</code></pre>
+--superuser-acl=hadoopadmin</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -405,6 +405,25 @@ which require authentication or encryption.</p>
           <a href="schema_design.html">Kudu Schema Design</a> 
       </li> 
       <li>
+<span class="active-toc">Kudu Security</span>
+            <ul class="sectlevel1">
+<li><a href="#_authentication">Authentication</a>
+<ul class="sectlevel2">
+<li><a href="#_internal_pki">Internal PKI</a></li>
+<li><a href="#_authentication_tokens">Authentication Tokens</a></li>
+</ul>
+</li>
+<li><a href="#_scalability">Scalability</a></li>
+<li><a href="#_encryption">Encryption</a></li>
+<li><a href="#_coarse_grained_authorization">Coarse-Grained Authorization</a></li>
+<li><a href="#web-ui">Web UI Encryption</a></li>
+<li><a href="#_web_ui_redaction">Web UI Redaction</a></li>
+<li><a href="#logs">Log Security</a></li>
+<li><a href="#configuration">Configuring a Secure Kudu Cluster</a></li>
+<li><a href="#known-limitations">Known Limitations</a></li>
+</ul> 
+      </li> 
+      <li>
 
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
@@ -418,6 +437,10 @@ which require authentication or encryption.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/style_guide.html
----------------------------------------------------------------------
diff --git a/docs/style_guide.html b/docs/style_guide.html
deleted file mode 100644
index 646554b..0000000
--- a/docs/style_guide.html
+++ /dev/null
@@ -1,754 +0,0 @@
----
-title: Apache Kudu Documentation Style Guide
-layout: default
-active_nav: docs
-last_updated: 'Last updated 2017-02-03 10:13:21 PST'
----
-<!--
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-
-
-<div class="container">
-  <div class="row">
-    <div class="col-md-9">
-
-<h1>Apache Kudu Documentation Style Guide</h1>
-      <div id="preamble">
-<div class="sectionbody">
-<div class="paragraph">
-<p>This document gives you the information you need to get started contributing to Kudu
-documentation. For code contribution guidelines, see
-<a href="contributing.html">Contributing to Kudu</a>.</p>
-</div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_asciidoc"><a class="link" href="#_asciidoc">Asciidoc</a></h2>
-<div class="sectionbody">
-<div class="paragraph">
-<p>Kudu documentation is written in <a href="https://en.wikipedia.org/wiki/AsciiDoc">Asciidoc</a>
-and compiled into HTML and output using the <a href="http://asciidoctor.org/">Asciidoctor</a>
-toolchain. This provides several advantages. Among them:</p>
-</div>
-<div class="ulist">
-<ul>
-<li>
-<p>Asciidoc is a superset of Markdown, so if you already know Markdown you can get
-started right away.</p>
-</li>
-<li>
-<p>Github includes support for Asciidoc in its Atom editor, as well as real-time
-simplified HTML rendering.</p>
-</li>
-<li>
-<p>Patch submissions are small and easy to review.</p>
-</li>
-</ul>
-</div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_code_standards"><a class="link" href="#_code_standards">Code Standards</a></h2>
-<div class="sectionbody">
-<div class="paragraph">
-<p>Within reason, try to adhere to these standards:</p>
-</div>
-<div class="ulist">
-<ul>
-<li>
-<p>100 or fewer columns per line</p>
-</li>
-<li>
-<p>2 spaces rather than tabs for indentation</p>
-</li>
-<li>
-<p>No more than 4 nested levels in the documentation if possible: <code>(Document &#8594; Chapter
-&#8594; Section &#8594; Subsection)</code></p>
-</li>
-<li>
-<p>When possible, provide the language that a code listing is in, using the
-<code>[source,&lt;language&gt;]</code> macro. for example, <code>[source,sql]</code></p>
-</li>
-<li>
-<p>In general, do not indent Asciidoc, as indentation is significant. Code listings
-are one exception.</p>
-</li>
-</ul>
-</div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_building_documentation"><a class="link" href="#_building_documentation">Building Documentation</a></h2>
-<div class="sectionbody">
-<div class="paragraph">
-<p>To build the documentation locally, you need the Asciidoctor Ruby application. To build the
-entire Kudu documentation set, change to the <code>docs/</code> directory and run:</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre class="highlight"><code class="language-bash" data-lang="bash">asciidoctor -d book -D docs *.adoc</code></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>This builds the HTML output in a new <em>docs/</em> directory within the current directory.
-Some content, such as the per-daemon configuration reference files, is not populated
-during a local build.</p>
-</div>
-<div class="paragraph">
-<p>To view the HTML, open <em>docs/index.html</em> in your local browser.</p>
-</div>
-<div class="paragraph">
-<p>You can also build only a single chapter. such as <em>release_notes.adoc</em>, by passing its name instead.</p>
-</div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_asciidoc_style_guide"><a class="link" href="#_asciidoc_style_guide">Asciidoc Style Guide</a></h2>
-<div class="sectionbody">
-<div class="paragraph">
-<p>Asciidoc supports a lot of syntax that we do not need to use. When possible, stick
-with the following, adapted from the
-<a href="https://hbase.apache.org/book.html#_hbase_reference_guide_style_guide_and_cheat_sheet">HBase Reference Guide</a>:</p>
-</div>
-<table class="tableblock frame-all grid-all spread">
-<caption class="title">Table 1. AsciiDoc Cheat Sheet</caption>
-<colgroup>
-<col style="width: 33%;">
-<col style="width: 33%;">
-<col style="width: 33%;">
-</colgroup>
-<thead>
-<tr>
-<th class="tableblock halign-left valign-top">Element Type</th>
-<th class="tableblock halign-left valign-top">Desired Rendering</th>
-<th class="tableblock halign-left valign-top">How to do it</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A paragraph</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">a paragraph</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>Just type some text with a blank line at the top and bottom.</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Add line breaks within a paragraph without adding blank lines</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Manual line breaks</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>This will break + at the plus sign. Or prefix the whole paragraph with a line containing '[%hardbreaks]'</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Give a title to anything</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Colored italic bold differently-sized text</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-</div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">In-Line Code or commands</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">monospace</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>`text`</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">In-line literal content (things to be typed exactly as shown)</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">bold mono</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>*`typethis`*</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">In-line replaceable content (things to substitute with your own values)</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">bold italic mono</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>*_typesomething_*</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Code blocks with highlighting</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">monospace, highlighted, preserve space</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="literalblock">
-<div class="content">
-<pre>[source,java]
-----
-  myAwesomeCode() {
-}
-----</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Code block included from a separate file</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">included just as though it were part of the main file</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="literalblock">
-<div class="content">
-<pre>[source,ruby]
-----
-include::path/to/app.rb[]
-----</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Include only part of a separate file</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Similar to Javadoc</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>See <a href="http://asciidoctor.org/docs/user-manual/#by-tagged-regions" class="bare">http://asciidoctor.org/docs/user-manual/#by-tagged-regions</a></p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">File names, directory names, new terms</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">italic</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>_hbase-default.xml_</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">External naked URLs</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A link with the URL as link text</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>http://www.google.com</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">External URLs with text</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A link with arbitrary link text</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>link:http://www.google.com[Google]</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Create an internal anchor to cross-reference</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">not rendered</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>[[anchor_name]]</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Cross-reference an existing anchor using its default title</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">an internal hyperlink using the element title if available, otherwise using the anchor name</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>&lt;&lt;anchor_name&gt;&gt;</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Cross-reference an existing anchor using custom text</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">an internal hyperlink using arbitrary text</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>&lt;&lt;anchor_name,Anchor Text&gt;&gt;</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A block image</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">The image with alt text</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>image::sunset.jpg[Alt Text]</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>(put the image in the src/main/site/resources/images directory)</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">An inline image</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">The image with alt text, as part of the text flow</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>image:sunset.jpg [Alt Text]</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>(only one colon)</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Link to a remote image</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">show an image hosted elsewhere</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>image::http://inkscape.org/doc/examples/tux.svg[Tux,250,350]</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>(or <code>image:</code>)</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Add dimensions or a URL to the image</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">depends</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>inside the brackets after the alt text, specify width, height and/or link="http://my_link.com"</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A footnote</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">subscript link which takes you to the footnote</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>Some text.footnote:[The footnote text.]</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A note or warning with no title</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">The admonition image followed by the admonition</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>NOTE: My note here</pre>
-</div>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>WARNING: My warning here</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A complex note</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">The note has a title and/or multiple paragraphs and/or code blocks or lists, etc</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="literalblock">
-<div class="content">
-<pre>.The Title
-[NOTE]
-====
-Here is the note text.
-Everything until the second set of four equals signs
-is part of the note.
-----
-some source code
-----
-====</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Bullet lists</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">bullet lists</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>* list item 1</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>(see <a href="http://asciidoctor.org/docs/user-manual/#unordered-lists" class="bare">http://asciidoctor.org/docs/user-manual/#unordered-lists</a>)</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Numbered lists</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">numbered list</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>. list item 2</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>(see <a href="http://asciidoctor.org/docs/user-manual/#ordered-lists" class="bare">http://asciidoctor.org/docs/user-manual/#ordered-lists</a>)</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Checklists</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Checked or unchecked boxes</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>Checked:</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>- [*]</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>Unchecked:</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>- [ ]</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Multiple levels of lists</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">bulleted or numbered or combo</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>. Numbered (1), at top level
-* Bullet (2), nested under 1
-* Bullet (3), nested under 1
-. Numbered (4), at top level
-* Bullet (5), nested under 4
-** Bullet (6), nested under 5
-- [x] Checked (7), at top level</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Labelled lists / variablelists</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">a list item title or summary followed by content</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>Title:: content
-
-Title::
-  content</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">GUI menu cascades</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">bold text with arrows to show levels</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>Use an ASCII arrow.</p>
-</div>
-<div class="literalblock">
-<div class="content">
-<pre>*File -&gt; Print*</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>renders like <strong>File &#8594; Print</strong></p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Sidebars, quotes, or other blocks of text</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">a block of text, formatted differently from the default</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>Delimited using different delimiters, see <a href="http://asciidoctor.org/docs/user-manual/#built-in-blocks-summary" class="bare">http://asciidoctor.org/docs/user-manual/#built-in-blocks-summary</a>. Some of the examples above use delimiters like ...., ----,====.</p>
-</div>
-<div class="literalblock">
-<div class="content">
-<pre>[example]
-====
-This is an example block.
-====
-
-[source]
-----
-This is a source block.
-----
-
-[note]
-====
-This is a note block.
-====
-
-[quote]
-____
-This is a quote block.
-____</pre>
-</div>
-</div>
-<div class="paragraph">
-<p><strong>If you want to insert literal Asciidoc content that keeps being interpreted, when in doubt, use eight dots as the delimiter at the top and bottom.</strong></p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Nested Sections</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">chapter, section, sub-section, etc</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>= Book (or chapter if the chapter can be built alone, see leveloffset below)
-
-== Chapter (or section if the chapter is standalone)
-
-=== Section (or subsection, etc)
-
-==== Subsection</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>and so on up to 6 levels (think carefully about going deeper than 4 levels, maybe you can just titled paragraphs or lists instead). Note that you can include a book inside another book by adding the <code>:leveloffset:+1</code> macro directive directly before your include, and resetting it to 0 directly after. See the <em>book.adoc</em> source for examples, as this is how this guide handles chapters. <strong>Don&#8217;t do it for prefaces, glossaries, appendixes, or other special types of chapters.</strong></p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Include one file from another</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Content is included as though it were inline</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>include::[/path/to/file.adoc]</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>For plenty of examples. see <em>docs/docs.adoc</em>.</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A table</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">a table</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p>See <a href="http://asciidoctor.org/docs/user-manual/#tables" class="bare">http://asciidoctor.org/docs/user-manual/#tables</a>. Generally rows are separated by newlines and columns by pipes</p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Comment out a single line</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A  line is skipped during rendering</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="paragraph">
-<p><code>// This line won&#8217;t show up</code></p>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Comment out a block</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">A section of the file is skipped during rendering</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>////
-Nothing between the slashes will show up.
-////</pre>
-</div>
-</div></div></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Highlight text for review</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">text shows up with yellow background</p></td>
-<td class="tableblock halign-left valign-top"><div><div id="toc" class="toc">
-<div id="toctitle">Table of Contents</div>
-
-</div>
-<div class="listingblock">
-<div class="content">
-<pre>Test between #hash marks# is highlighted yellow.</pre>
-</div>
-</div></div></td>
-</tr>
-</tbody>
-</table>
-</div>
-</div>
-    </div>
-    <div class="col-md-3">
-
-  <div id="toc" data-spy="affix" data-offset-top="70">
-  <ul>
-
-      <li>
-
-          <a href="index.html">Introducing Kudu</a> 
-      </li> 
-      <li>
-
-          <a href="release_notes.html">Kudu Release Notes</a> 
-      </li> 
-      <li>
-
-          <a href="quickstart.html">Getting Started with Kudu</a> 
-      </li> 
-      <li>
-
-          <a href="installation.html">Installation Guide</a> 
-      </li> 
-      <li>
-
-          <a href="configuration.html">Configuring Kudu</a> 
-      </li> 
-      <li>
-
-          <a href="kudu_impala_integration.html">Using Impala with Kudu</a> 
-      </li> 
-      <li>
-
-          <a href="administration.html">Administering Kudu</a> 
-      </li> 
-      <li>
-
-          <a href="troubleshooting.html">Troubleshooting Kudu</a> 
-      </li> 
-      <li>
-
-          <a href="developing.html">Developing Applications with Kudu</a> 
-      </li> 
-      <li>
-
-          <a href="schema_design.html">Kudu Schema Design</a> 
-      </li> 
-      <li>
-
-          <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
-      </li> 
-      <li>
-
-          <a href="contributing.html">Contributing to Kudu</a> 
-      </li> 
-      <li>
-<span class="active-toc">Kudu Documentation Style Guide</span>
-            <ul class="sectlevel1">
-<li><a href="#_asciidoc">Asciidoc</a></li>
-<li><a href="#_code_standards">Code Standards</a></li>
-<li><a href="#_building_documentation">Building Documentation</a></li>
-<li><a href="#_asciidoc_style_guide">Asciidoc Style Guide</a></li>
-</ul> 
-      </li> 
-      <li>
-
-          <a href="configuration_reference.html">Kudu Configuration Reference</a> 
-      </li> 
-      <li>
-
-          <a href="known_issues.html">Known Issues and Limitations</a> 
-      </li> 
-      <li>
-
-          <a href="export_control.html">Export Control Notice</a> 
-      </li> 
-  </ul>
-  </div>
-    </div>
-  </div>
-</div>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/transaction_semantics.html
----------------------------------------------------------------------
diff --git a/docs/transaction_semantics.html b/docs/transaction_semantics.html
index c472c58..eead39f 100644
--- a/docs/transaction_semantics.html
+++ b/docs/transaction_semantics.html
@@ -485,6 +485,10 @@ frequently.
           <a href="schema_design.html">Kudu Schema Design</a> 
       </li> 
       <li>
+
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
 <span class="active-toc">Kudu Transaction Semantics</span>
             <ul class="sectlevel1">
 <li><a href="#_single_tablet_write_operations">Single tablet write operations</a></li>
@@ -510,6 +514,10 @@ frequently.
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/troubleshooting.html
----------------------------------------------------------------------
diff --git a/docs/troubleshooting.html b/docs/troubleshooting.html
index 675ea9c..934512c 100644
--- a/docs/troubleshooting.html
+++ b/docs/troubleshooting.html
@@ -2,7 +2,7 @@
 title: Apache Kudu Troubleshooting
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-02-03 10:13:21 PST'
+last_updated: 'Last updated 2017-05-15 12:38:07 PDT'
 ---
 <!--
 
@@ -376,6 +376,20 @@ below Kudu, such as disk controllers or file systems.</p>
 </div>
 </div>
 </div>
+<div class="sect1">
+<h2 id="_issues_using_kudu"><a class="link" href="#_issues_using_kudu">Issues using Kudu</a></h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="hive_handler"><a class="link" href="#hive_handler">ClassNotFoundException: com.cloudera.kudu.hive.KuduStorageHandler</a></h3>
+<div class="paragraph">
+<p>Users will encounter this exception when trying to use a Kudu table via Hive. This
+is not a case of a missing jar, but simply that Impala stores Kudu metadata in
+Hive in a format that&#8217;s unreadable to other tools, including Hive itself and Spark.
+There is no workaround for Hive users. Spark users need to create temporary tables.</p>
+</div>
+</div>
+</div>
+</div>
     </div>
     <div class="col-md-3">
 
@@ -426,6 +440,11 @@ below Kudu, such as disk controllers or file systems.</p>
 <li><a href="#_kernel_stack_watchdog_traces">Kernel Stack Watchdog Traces</a></li>
 </ul>
 </li>
+<li><a href="#_issues_using_kudu">Issues using Kudu</a>
+<ul class="sectlevel2">
+<li><a href="#hive_handler">ClassNotFoundException: com.cloudera.kudu.hive.KuduStorageHandler</a></li>
+</ul>
+</li>
 </ul> 
       </li> 
       <li>
@@ -438,6 +457,10 @@ below Kudu, such as disk controllers or file systems.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -450,6 +473,10 @@ below Kudu, such as disk controllers or file systems.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>


[3/3] kudu git commit: Update docs from branch-1.3.x

Posted by to...@apache.org.
Update docs from branch-1.3.x


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/76d8b59d
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/76d8b59d
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/76d8b59d

Branch: refs/heads/gh-pages
Commit: 76d8b59d848e9711ff77560117c6ca409a514604
Parents: ad452d2
Author: Todd Lipcon <to...@cloudera.com>
Authored: Mon May 15 12:50:22 2017 -0700
Committer: Todd Lipcon <to...@cloudera.com>
Committed: Mon May 15 12:50:22 2017 -0700

----------------------------------------------------------------------
 cpp-client-api/annotated.html                   |   2 +-
 cpp-client-api/callbacks_8h_source.html         |   2 +-
 cpp-client-api/classKuduPartialRow-members.html |   2 +-
 cpp-client-api/classKuduPartialRow.html         |   2 +-
 cpp-client-api/classes.html                     |   2 +-
 .../classkudu_1_1MonoDelta-members.html         |   2 +-
 cpp-client-api/classkudu_1_1MonoDelta.html      |   2 +-
 .../classkudu_1_1MonoTime-members.html          |   2 +-
 cpp-client-api/classkudu_1_1MonoTime.html       |   2 +-
 cpp-client-api/classkudu_1_1Slice-members.html  |   2 +-
 cpp-client-api/classkudu_1_1Slice.html          |   2 +-
 cpp-client-api/classkudu_1_1Status-members.html |   2 +-
 cpp-client-api/classkudu_1_1Status.html         |   2 +-
 ...asskudu_1_1client_1_1KuduClient-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduClient.html      |   6 +-
 ..._1_1client_1_1KuduClientBuilder-members.html |   2 +-
 ...lasskudu_1_1client_1_1KuduClientBuilder.html |   2 +-
 ...u_1_1client_1_1KuduColumnSchema-members.html |   2 +-
 ...classkudu_1_1client_1_1KuduColumnSchema.html |   2 +-
 ...udu_1_1client_1_1KuduColumnSpec-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduColumnSpec.html  |   2 +-
 ..._1_1KuduColumnStorageAttributes-members.html |   2 +-
 ..._1client_1_1KuduColumnStorageAttributes.html |   2 +-
 ...asskudu_1_1client_1_1KuduDelete-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduDelete.html      |   2 +-
 ...lasskudu_1_1client_1_1KuduError-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduError.html       |   2 +-
 ...asskudu_1_1client_1_1KuduInsert-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduInsert.html      |   2 +-
 ..._1client_1_1KuduLoggingCallback-members.html |   2 +-
 ...sskudu_1_1client_1_1KuduLoggingCallback.html |   2 +-
 ..._1_1KuduLoggingFunctionCallback-members.html |   2 +-
 ..._1client_1_1KuduLoggingFunctionCallback.html |   2 +-
 ...nt_1_1KuduLoggingMemberCallback-members.html |   2 +-
 ..._1_1client_1_1KuduLoggingMemberCallback.html |   2 +-
 ...kudu_1_1client_1_1KuduPredicate-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduPredicate.html   |   2 +-
 ...sskudu_1_1client_1_1KuduReplica-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduReplica.html     |   2 +-
 ...kudu_1_1client_1_1KuduScanBatch-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduScanBatch.html   |   6 +-
 ...kudu_1_1client_1_1KuduScanToken-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduScanToken.html   |   2 +-
 ...1client_1_1KuduScanTokenBuilder-members.html |   2 +-
 ...skudu_1_1client_1_1KuduScanTokenBuilder.html |   2 +-
 ...sskudu_1_1client_1_1KuduScanner-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduScanner.html     |   2 +-
 ...asskudu_1_1client_1_1KuduSchema-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduSchema.html      |   2 +-
 ..._1_1client_1_1KuduSchemaBuilder-members.html |   2 +-
 ...lasskudu_1_1client_1_1KuduSchemaBuilder.html |   2 +-
 ...sskudu_1_1client_1_1KuduSession-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduSession.html     |   6 +-
 ...1_1client_1_1KuduStatusCallback-members.html |   2 +-
 ...asskudu_1_1client_1_1KuduStatusCallback.html |   2 +-
 ...t_1_1KuduStatusFunctionCallback-members.html |   2 +-
 ...1_1client_1_1KuduStatusFunctionCallback.html |   2 +-
 ...ent_1_1KuduStatusMemberCallback-members.html |   2 +-
 ...u_1_1client_1_1KuduStatusMemberCallback.html |   2 +-
 ...lasskudu_1_1client_1_1KuduTable-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduTable.html       |   6 +-
 ...u_1_1client_1_1KuduTableAlterer-members.html |   2 +-
 ...classkudu_1_1client_1_1KuduTableAlterer.html |   2 +-
 ...u_1_1client_1_1KuduTableCreator-members.html |   2 +-
 ...classkudu_1_1client_1_1KuduTableCreator.html |   2 +-
 ...asskudu_1_1client_1_1KuduTablet-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduTablet.html      |   2 +-
 ...u_1_1client_1_1KuduTabletServer-members.html |   2 +-
 ...classkudu_1_1client_1_1KuduTabletServer.html |   2 +-
 ...asskudu_1_1client_1_1KuduUpdate-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduUpdate.html      |   2 +-
 ...asskudu_1_1client_1_1KuduUpsert-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduUpsert.html      |   2 +-
 ...lasskudu_1_1client_1_1KuduValue-members.html |   2 +-
 .../classkudu_1_1client_1_1KuduValue.html       |   2 +-
 ...1_1client_1_1KuduWriteOperation-members.html |   2 +-
 ...asskudu_1_1client_1_1KuduWriteOperation.html |   2 +-
 ...du_1_1client_1_1ResourceMetrics-members.html |   2 +-
 .../classkudu_1_1client_1_1ResourceMetrics.html |   2 +-
 ...1_1internal__logging_1_1CerrLog-members.html |   2 +-
 ...asskudu_1_1internal__logging_1_1CerrLog.html |   2 +-
 ...1_1internal__logging_1_1NullLog-members.html |   2 +-
 ...asskudu_1_1internal__logging_1_1NullLog.html |   2 +-
 cpp-client-api/client_8h_source.html            |   2 +-
 cpp-client-api/deprecated.html                  |   2 +-
 cpp-client-api/dir_000002_000004.html           |   2 +-
 .../dir_4eb331d85bb84eae27db9d0af49f6f99.html   |   2 +-
 .../dir_58b01e52e53886b8d78ab5060a2cd2bd.html   |   2 +-
 .../dir_a7d8e458a72ff63c89f2ceb44d9dd2f6.html   |   2 +-
 .../dir_d44c64559bbebec7f509842c48db8b23.html   |   2 +-
 .../dir_e8a2e446cf73a5a1ae0ad6a5a21b6d03.html   |   2 +-
 cpp-client-api/files.html                       |   2 +-
 cpp-client-api/functions.html                   |   2 +-
 cpp-client-api/functions_b.html                 |   2 +-
 cpp-client-api/functions_c.html                 |   2 +-
 cpp-client-api/functions_d.html                 |   2 +-
 cpp-client-api/functions_e.html                 |   2 +-
 cpp-client-api/functions_enum.html              |   2 +-
 cpp-client-api/functions_eval.html              |   2 +-
 cpp-client-api/functions_f.html                 |   2 +-
 cpp-client-api/functions_func.html              |   2 +-
 cpp-client-api/functions_func_b.html            |   2 +-
 cpp-client-api/functions_func_c.html            |   2 +-
 cpp-client-api/functions_func_d.html            |   2 +-
 cpp-client-api/functions_func_e.html            |   2 +-
 cpp-client-api/functions_func_f.html            |   2 +-
 cpp-client-api/functions_func_g.html            |   2 +-
 cpp-client-api/functions_func_h.html            |   2 +-
 cpp-client-api/functions_func_i.html            |   2 +-
 cpp-client-api/functions_func_k.html            |   2 +-
 cpp-client-api/functions_func_l.html            |   2 +-
 cpp-client-api/functions_func_m.html            |   2 +-
 cpp-client-api/functions_func_n.html            |   2 +-
 cpp-client-api/functions_func_o.html            |   2 +-
 cpp-client-api/functions_func_p.html            |   2 +-
 cpp-client-api/functions_func_r.html            |   2 +-
 cpp-client-api/functions_func_s.html            |   2 +-
 cpp-client-api/functions_func_t.html            |   2 +-
 cpp-client-api/functions_func_u.html            |   2 +-
 cpp-client-api/functions_func_w.html            |   2 +-
 cpp-client-api/functions_g.html                 |   2 +-
 cpp-client-api/functions_h.html                 |   2 +-
 cpp-client-api/functions_i.html                 |   2 +-
 cpp-client-api/functions_k.html                 |   2 +-
 cpp-client-api/functions_l.html                 |   2 +-
 cpp-client-api/functions_m.html                 |   2 +-
 cpp-client-api/functions_n.html                 |   2 +-
 cpp-client-api/functions_o.html                 |   2 +-
 cpp-client-api/functions_p.html                 |   2 +-
 cpp-client-api/functions_r.html                 |   2 +-
 cpp-client-api/functions_rela.html              |   2 +-
 cpp-client-api/functions_s.html                 |   2 +-
 cpp-client-api/functions_t.html                 |   2 +-
 cpp-client-api/functions_type.html              |   2 +-
 cpp-client-api/functions_u.html                 |   2 +-
 cpp-client-api/functions_v.html                 |   2 +-
 cpp-client-api/functions_vars.html              |   2 +-
 cpp-client-api/functions_w.html                 |   2 +-
 cpp-client-api/globals.html                     |   2 +-
 cpp-client-api/globals_defs.html                |   2 +-
 cpp-client-api/graph_legend.html                |   2 +-
 cpp-client-api/hierarchy.html                   |   2 +-
 cpp-client-api/index.html                       |   2 +-
 cpp-client-api/inherits.html                    |   2 +-
 cpp-client-api/kudu__export_8h_source.html      |   2 +-
 cpp-client-api/monotime_8h_source.html          |   2 +-
 cpp-client-api/pages.html                       |   2 +-
 cpp-client-api/partial__row_8h_source.html      |   2 +-
 cpp-client-api/resource__metrics_8h_source.html |   2 +-
 cpp-client-api/row__result_8h_source.html       |   2 +-
 cpp-client-api/scan__batch_8h_source.html       |   2 +-
 cpp-client-api/scan__predicate_8h_source.html   |   2 +-
 cpp-client-api/schema_8h_source.html            |   2 +-
 cpp-client-api/shared__ptr_8h.html              |   4 +-
 cpp-client-api/shared__ptr_8h_source.html       |   2 +-
 cpp-client-api/slice_8h_source.html             |   2 +-
 cpp-client-api/status_8h.html                   |   2 +-
 cpp-client-api/status_8h_source.html            |   2 +-
 .../structkudu_1_1SliceMap-members.html         |   2 +-
 cpp-client-api/structkudu_1_1SliceMap.html      |   2 +-
 ...ructkudu_1_1Slice_1_1Comparator-members.html |   2 +-
 .../structkudu_1_1Slice_1_1Comparator.html      |   2 +-
 cpp-client-api/stubs_8h_source.html             |   2 +-
 cpp-client-api/todo.html                        |   2 +-
 cpp-client-api/value_8h_source.html             |   2 +-
 cpp-client-api/write__op_8h_source.html         |   2 +-
 docs/administration.html                        |  49 +-
 docs/background_tasks.html                      |  10 +-
 docs/configuration.html                         |   8 +
 docs/configuration_reference.html               |  18 +-
 docs/configuration_reference_unsupported.html   |  10 +-
 docs/contributing.html                          |  10 +-
 docs/developing.html                            |  21 +-
 docs/export_control.html                        |   8 +
 docs/index.html                                 |   8 +
 docs/installation.html                          |  13 +-
 docs/known_issues.html                          | 204 ++++-
 docs/kudu-master_configuration_reference.html   |  14 +-
 ...ter_configuration_reference_unsupported.html |  10 +-
 docs/kudu-tserver_configuration_reference.html  |  14 +-
 ...ver_configuration_reference_unsupported.html |  10 +-
 docs/kudu_impala_integration.html               |  19 +-
 docs/prior_release_notes.html                   |   8 +
 docs/quickstart.html                            |   8 +
 docs/release_notes.html                         |  10 +-
 docs/schema_design.html                         |  10 +-
 docs/security.html                              |  31 +-
 docs/style_guide.html                           | 754 -------------------
 docs/transaction_semantics.html                 |   8 +
 docs/troubleshooting.html                       |  29 +-
 190 files changed, 641 insertions(+), 993 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/annotated.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/annotated.html b/cpp-client-api/annotated.html
index bebf7a4..f1bc5dc 100644
--- a/cpp-client-api/annotated.html
+++ b/cpp-client-api/annotated.html
@@ -140,7 +140,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/callbacks_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/callbacks_8h_source.html b/cpp-client-api/callbacks_8h_source.html
index f7c01d3..f2eb28f 100644
--- a/cpp-client-api/callbacks_8h_source.html
+++ b/cpp-client-api/callbacks_8h_source.html
@@ -109,7 +109,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:26 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classKuduPartialRow-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classKuduPartialRow-members.html b/cpp-client-api/classKuduPartialRow-members.html
index ada30ae..e1889c3 100644
--- a/cpp-client-api/classKuduPartialRow-members.html
+++ b/cpp-client-api/classKuduPartialRow-members.html
@@ -170,7 +170,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classKuduPartialRow.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classKuduPartialRow.html b/cpp-client-api/classKuduPartialRow.html
index 377e717..2707320 100644
--- a/cpp-client-api/classKuduPartialRow.html
+++ b/cpp-client-api/classKuduPartialRow.html
@@ -845,7 +845,7 @@ template&lt;typename KeyTypeWrapper &gt; </td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classes.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classes.html b/cpp-client-api/classes.html
index ffbf32b..41d7e76 100644
--- a/cpp-client-api/classes.html
+++ b/cpp-client-api/classes.html
@@ -115,7 +115,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1MonoDelta-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1MonoDelta-members.html b/cpp-client-api/classkudu_1_1MonoDelta-members.html
index c99d8a2..84c3430 100644
--- a/cpp-client-api/classkudu_1_1MonoDelta-members.html
+++ b/cpp-client-api/classkudu_1_1MonoDelta-members.html
@@ -116,7 +116,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1MonoDelta.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1MonoDelta.html b/cpp-client-api/classkudu_1_1MonoDelta.html
index 1c74d36..0e98715 100644
--- a/cpp-client-api/classkudu_1_1MonoDelta.html
+++ b/cpp-client-api/classkudu_1_1MonoDelta.html
@@ -389,7 +389,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>MonoTime</b></td></t
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1MonoTime-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1MonoTime-members.html b/cpp-client-api/classkudu_1_1MonoTime-members.html
index 59f9d76..66526ee 100644
--- a/cpp-client-api/classkudu_1_1MonoTime-members.html
+++ b/cpp-client-api/classkudu_1_1MonoTime-members.html
@@ -116,7 +116,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1MonoTime.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1MonoTime.html b/cpp-client-api/classkudu_1_1MonoTime.html
index b674959..efe71f6 100644
--- a/cpp-client-api/classkudu_1_1MonoTime.html
+++ b/cpp-client-api/classkudu_1_1MonoTime.html
@@ -463,7 +463,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>MonoDelta</b></td></
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1Slice-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1Slice-members.html b/cpp-client-api/classkudu_1_1Slice-members.html
index b906bb8..42057a5 100644
--- a/cpp-client-api/classkudu_1_1Slice-members.html
+++ b/cpp-client-api/classkudu_1_1Slice-members.html
@@ -118,7 +118,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1Slice.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1Slice.html b/cpp-client-api/classkudu_1_1Slice.html
index 0ddcd3d..aaeb680 100644
--- a/cpp-client-api/classkudu_1_1Slice.html
+++ b/cpp-client-api/classkudu_1_1Slice.html
@@ -719,7 +719,7 @@ Friends</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1Status-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1Status-members.html b/cpp-client-api/classkudu_1_1Status-members.html
index 2aed958..86e3482 100644
--- a/cpp-client-api/classkudu_1_1Status-members.html
+++ b/cpp-client-api/classkudu_1_1Status-members.html
@@ -148,7 +148,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1Status.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1Status.html b/cpp-client-api/classkudu_1_1Status.html
index 9ec9a15..a83be4b 100644
--- a/cpp-client-api/classkudu_1_1Status.html
+++ b/cpp-client-api/classkudu_1_1Status.html
@@ -935,7 +935,7 @@ static <a class="el" href="classkudu_1_1Status.html">Status</a>&#160;</td><td cl
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduClient-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduClient-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduClient-members.html
index 57450ab..4413fb8 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduClient-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduClient-members.html
@@ -137,7 +137,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduClient.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduClient.html b/cpp-client-api/classkudu_1_1client_1_1KuduClient.html
index 027aafb..9826bef 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduClient.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduClient.html
@@ -106,15 +106,11 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 Inheritance diagram for kudu::client::KuduClient:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduClient__inherit__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduClient_inherit__map" alt="Inheritance graph"/></div>
-<map name="kudu_1_1client_1_1KuduClient_inherit__map" id="kudu_1_1client_1_1KuduClient_inherit__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <div class="dynheader">
 Collaboration diagram for kudu::client::KuduClient:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduClient__coll__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduClient_coll__map" alt="Collaboration graph"/></div>
-<map name="kudu_1_1client_1_1KuduClient_coll__map" id="kudu_1_1client_1_1KuduClient_coll__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <table class="memberdecls">
 <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
@@ -726,7 +722,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduTableCreator</b>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder-members.html
index 42562c3..e596431 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder-members.html
@@ -107,7 +107,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder.html b/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder.html
index bf611ee..b09413e 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduClientBuilder.html
@@ -293,7 +293,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema-members.html
index 4063772..3835fc2 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema-members.html
@@ -124,7 +124,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema.html b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema.html
index b323bf0..9b90b02 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSchema.html
@@ -412,7 +412,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduTableAlterer</b>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec-members.html
index 18c9da5..12a2861 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec-members.html
@@ -110,7 +110,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec.html b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec.html
index fd29861..82ff158 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduColumnSpec.html
@@ -346,7 +346,7 @@ It's recommended that this not be set any lower than 4096 (4KB) or higher than 1
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes-members.html
index b2cc3d7..50ff895 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes-members.html
@@ -116,7 +116,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes.html b/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes.html
index 9676988..416b7b4 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduColumnStorageAttributes.html
@@ -284,7 +284,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduDelete-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduDelete-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduDelete-members.html
index 676020d..0963edf 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduDelete-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduDelete-members.html
@@ -109,7 +109,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduDelete.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduDelete.html b/cpp-client-api/classkudu_1_1client_1_1KuduDelete.html
index ed55efb..1998c7f 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduDelete.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduDelete.html
@@ -183,7 +183,7 @@ Additional Inherited Members</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduError-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduError-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduError-members.html
index 0dc7cc0..4daacd4 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduError-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduError-members.html
@@ -106,7 +106,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduError.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduError.html b/cpp-client-api/classkudu_1_1client_1_1KuduError.html
index 73538b9..f4b5a0e 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduError.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduError.html
@@ -203,7 +203,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduSession</b></td>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduInsert-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduInsert-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduInsert-members.html
index 7fe3ca2..cd5c497 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduInsert-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduInsert-members.html
@@ -109,7 +109,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduInsert.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduInsert.html b/cpp-client-api/classkudu_1_1client_1_1KuduInsert.html
index d6ba46f..99b1b9f 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduInsert.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduInsert.html
@@ -183,7 +183,7 @@ Additional Inherited Members</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback-members.html
index 6c277c5..ee7e2a9 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback-members.html
@@ -101,7 +101,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback.html b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback.html
index 4a46bfa..15da27e 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingCallback.html
@@ -197,7 +197,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback-members.html
index 1d6edb9..a14558b 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback.html b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback.html
index 2df81fa..1ea4030 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingFunctionCallback.html
@@ -266,7 +266,7 @@ template&lt;typename T &gt; </div>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback-members.html
index 3d50519..8bb2e6c 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback.html b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback.html
index 3c5a9c3..c63c9ab 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduLoggingMemberCallback.html
@@ -266,7 +266,7 @@ template&lt;typename T &gt; </div>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduPredicate-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduPredicate-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduPredicate-members.html
index fceb993..69fae4e 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduPredicate-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduPredicate-members.html
@@ -114,7 +114,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduPredicate.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduPredicate.html b/cpp-client-api/classkudu_1_1client_1_1KuduPredicate.html
index 16446b1..a48542f 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduPredicate.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduPredicate.html
@@ -195,7 +195,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>ScanConfiguration</b
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduReplica-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduReplica-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduReplica-members.html
index c936b67..c8549a0 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduReplica-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduReplica-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduReplica.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduReplica.html b/cpp-client-api/classkudu_1_1client_1_1KuduReplica.html
index a5599ab..3165454 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduReplica.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduReplica.html
@@ -160,7 +160,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduScanTokenBuilder
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch-members.html
index f2f7abc..848a35b 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch-members.html
@@ -142,7 +142,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch.html
index c4bf740..892048e 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanBatch.html
@@ -105,15 +105,11 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 Inheritance diagram for kudu::client::KuduScanBatch:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduScanBatch__inherit__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduScanBatch_inherit__map" alt="Inheritance graph"/></div>
-<map name="kudu_1_1client_1_1KuduScanBatch_inherit__map" id="kudu_1_1client_1_1KuduScanBatch_inherit__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <div class="dynheader">
 Collaboration diagram for kudu::client::KuduScanBatch:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduScanBatch__coll__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduScanBatch_coll__map" alt="Collaboration graph"/></div>
-<map name="kudu_1_1client_1_1KuduScanBatch_coll__map" id="kudu_1_1client_1_1KuduScanBatch_coll__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <table class="memberdecls">
 <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
@@ -666,7 +662,7 @@ template&lt;typename KeyTypeWrapper &gt; </td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanToken-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanToken-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanToken-members.html
index 24c3b9d..2bbaa71 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanToken-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanToken-members.html
@@ -104,7 +104,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanToken.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanToken.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanToken.html
index 69f2427..70b1c4a 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanToken.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanToken.html
@@ -252,7 +252,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduScanTokenBuilder
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder-members.html
index fe6710a..5444e4c 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder-members.html
@@ -114,7 +114,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder.html
index 08db3df..3deec70 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanTokenBuilder.html
@@ -533,7 +533,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanner-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanner-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanner-members.html
index c7f3f87..cbc4388 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanner-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanner-members.html
@@ -137,7 +137,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduScanner.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduScanner.html b/cpp-client-api/classkudu_1_1client_1_1KuduScanner.html
index ada3dd7..ae13b10 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduScanner.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduScanner.html
@@ -947,7 +947,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduScanToken</b></t
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduSchema-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduSchema-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduSchema-members.html
index b564d0f..b2a01a2 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduSchema-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduSchema-members.html
@@ -125,7 +125,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduSchema.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduSchema.html b/cpp-client-api/classkudu_1_1client_1_1KuduSchema.html
index b24f2b6..0f27ddb 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduSchema.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduSchema.html
@@ -358,7 +358,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>tools::ReplicaDumper
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder-members.html
index ca29625..7f800f4 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder.html b/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder.html
index 2b693a5..ef89fa8 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduSchemaBuilder.html
@@ -193,7 +193,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduSession-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduSession-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduSession-members.html
index 6ed577e..8460404 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduSession-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduSession-members.html
@@ -126,7 +126,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduSession.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduSession.html b/cpp-client-api/classkudu_1_1client_1_1KuduSession.html
index c67eb24..4e9f158 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduSession.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduSession.html
@@ -105,15 +105,11 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 Inheritance diagram for kudu::client::KuduSession:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduSession__inherit__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduSession_inherit__map" alt="Inheritance graph"/></div>
-<map name="kudu_1_1client_1_1KuduSession_inherit__map" id="kudu_1_1client_1_1KuduSession_inherit__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <div class="dynheader">
 Collaboration diagram for kudu::client::KuduSession:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduSession__coll__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduSession_coll__map" alt="Collaboration graph"/></div>
-<map name="kudu_1_1client_1_1KuduSession_coll__map" id="kudu_1_1client_1_1KuduSession_coll__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <table class="memberdecls">
 <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
@@ -670,7 +666,7 @@ The buffer contains data for fresh (i.e. newly submitted) operations and also op
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback-members.html
index 32d051e..58b90b2 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback-members.html
@@ -101,7 +101,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback.html b/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback.html
index 8d41e59..24ccc88 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduStatusCallback.html
@@ -157,7 +157,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback-members.html
index 376bfe6..8c43a4b 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback.html b/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback.html
index d8955ef..205eee8 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduStatusFunctionCallback.html
@@ -226,7 +226,7 @@ template&lt;typename T &gt; </div>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback-members.html
index 6170879..23e349d 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback.html b/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback.html
index 8a5afa6..89d5a4c 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduStatusMemberCallback.html
@@ -226,7 +226,7 @@ template&lt;typename T &gt; </div>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTable-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTable-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduTable-members.html
index 36faa27..73d4d27 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTable-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTable-members.html
@@ -114,7 +114,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTable.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTable.html b/cpp-client-api/classkudu_1_1client_1_1KuduTable.html
index b0e63c2..02b452a 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTable.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTable.html
@@ -104,15 +104,11 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 Inheritance diagram for kudu::client::KuduTable:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduTable__inherit__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduTable_inherit__map" alt="Inheritance graph"/></div>
-<map name="kudu_1_1client_1_1KuduTable_inherit__map" id="kudu_1_1client_1_1KuduTable_inherit__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <div class="dynheader">
 Collaboration diagram for kudu::client::KuduTable:</div>
 <div class="dyncontent">
 <div class="center"><img src="classkudu_1_1client_1_1KuduTable__coll__graph.png" border="0" usemap="#kudu_1_1client_1_1KuduTable_coll__map" alt="Collaboration graph"/></div>
-<map name="kudu_1_1client_1_1KuduTable_coll__map" id="kudu_1_1client_1_1KuduTable_coll__map">
-</map>
 <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
 <table class="memberdecls">
 <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
@@ -461,7 +457,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduClient</b></td><
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer-members.html
index ca059cd..be5f932 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer-members.html
@@ -109,7 +109,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer.html b/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer.html
index 24b1b5f..80a31b1 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTableAlterer.html
@@ -409,7 +409,7 @@ Multiple range partitions may be dropped as part of a single alter table transac
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator-members.html
index 3d703c8..014d13c 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator-members.html
@@ -115,7 +115,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator.html b/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator.html
index 49934d6..c9e75a9 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTableCreator.html
@@ -528,7 +528,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduClient</b></td><
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTablet-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTablet-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduTablet-members.html
index a14a93c..9d44d2c 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTablet-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTablet-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTablet.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTablet.html b/cpp-client-api/classkudu_1_1client_1_1KuduTablet.html
index bc119fa..03e1365 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTablet.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTablet.html
@@ -160,7 +160,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduScanTokenBuilder
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer-members.html
index e0ccd86..1db0af0 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer-members.html
@@ -105,7 +105,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer.html b/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer.html
index 040e6b4..a141700 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduTabletServer.html
@@ -180,7 +180,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduScanTokenBuilder
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduUpdate-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduUpdate-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduUpdate-members.html
index 62a7ec3..b6abc43 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduUpdate-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduUpdate-members.html
@@ -109,7 +109,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduUpdate.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduUpdate.html b/cpp-client-api/classkudu_1_1client_1_1KuduUpdate.html
index 99248b9..9b6e077 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduUpdate.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduUpdate.html
@@ -183,7 +183,7 @@ Additional Inherited Members</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduUpsert-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduUpsert-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduUpsert-members.html
index fc7dcfc..5366b84 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduUpsert-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduUpsert-members.html
@@ -109,7 +109,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduUpsert.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduUpsert.html b/cpp-client-api/classkudu_1_1client_1_1KuduUpsert.html
index 50b5014..1309b94 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduUpsert.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduUpsert.html
@@ -183,7 +183,7 @@ Additional Inherited Members</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduValue-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduValue-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduValue-members.html
index a1ee6ec..eae8e26 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduValue-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduValue-members.html
@@ -108,7 +108,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduValue.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduValue.html b/cpp-client-api/classkudu_1_1client_1_1KuduValue.html
index 87dbd36..95a75a2 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduValue.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduValue.html
@@ -204,7 +204,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>KuduColumnSpec</b></
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation-members.html b/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation-members.html
index c3ae565..ec00c15 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation-members.html
@@ -110,7 +110,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation.html b/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation.html
index 43319dc..691251d 100644
--- a/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation.html
+++ b/cpp-client-api/classkudu_1_1client_1_1KuduWriteOperation.html
@@ -232,7 +232,7 @@ class&#160;</td><td class="memItemRight" valign="bottom"><b>internal::ErrorColle
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>


[2/3] kudu git commit: Update docs from branch-1.3.x

Posted by to...@apache.org.
http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics-members.html b/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics-members.html
index 3d82e1f..bea973a 100644
--- a/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics-members.html
+++ b/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics-members.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics.html b/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics.html
index 05397e6..d0da1a4 100644
--- a/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics.html
+++ b/cpp-client-api/classkudu_1_1client_1_1ResourceMetrics.html
@@ -193,7 +193,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog-members.html b/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog-members.html
index 40ebd74..76e55d5 100644
--- a/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog-members.html
+++ b/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog-members.html
@@ -101,7 +101,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog.html b/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog.html
index 11ae51e..aeca189 100644
--- a/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog.html
+++ b/cpp-client-api/classkudu_1_1internal__logging_1_1CerrLog.html
@@ -184,7 +184,7 @@ template&lt;class T &gt; </div>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog-members.html b/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog-members.html
index 5076082..4e3d862 100644
--- a/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog-members.html
+++ b/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog-members.html
@@ -99,7 +99,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog.html b/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog.html
index 8e1659d..0319062 100644
--- a/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog.html
+++ b/cpp-client-api/classkudu_1_1internal__logging_1_1NullLog.html
@@ -151,7 +151,7 @@ template&lt;class T &gt; </div>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/client_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/client_8h_source.html b/cpp-client-api/client_8h_source.html
index 6baa411..42deaf4 100644
--- a/cpp-client-api/client_8h_source.html
+++ b/cpp-client-api/client_8h_source.html
@@ -141,7 +141,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/deprecated.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/deprecated.html b/cpp-client-api/deprecated.html
index 03645cf..9f3c624 100644
--- a/cpp-client-api/deprecated.html
+++ b/cpp-client-api/deprecated.html
@@ -107,7 +107,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/dir_000002_000004.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/dir_000002_000004.html b/cpp-client-api/dir_000002_000004.html
index f0df5fd..0b4202a 100644
--- a/cpp-client-api/dir_000002_000004.html
+++ b/cpp-client-api/dir_000002_000004.html
@@ -83,7 +83,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/dir_4eb331d85bb84eae27db9d0af49f6f99.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/dir_4eb331d85bb84eae27db9d0af49f6f99.html b/cpp-client-api/dir_4eb331d85bb84eae27db9d0af49f6f99.html
index fde2d3c..e3f4c43 100644
--- a/cpp-client-api/dir_4eb331d85bb84eae27db9d0af49f6f99.html
+++ b/cpp-client-api/dir_4eb331d85bb84eae27db9d0af49f6f99.html
@@ -111,7 +111,7 @@ Files</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/dir_58b01e52e53886b8d78ab5060a2cd2bd.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/dir_58b01e52e53886b8d78ab5060a2cd2bd.html b/cpp-client-api/dir_58b01e52e53886b8d78ab5060a2cd2bd.html
index 3ef6d94..081fefc 100644
--- a/cpp-client-api/dir_58b01e52e53886b8d78ab5060a2cd2bd.html
+++ b/cpp-client-api/dir_58b01e52e53886b8d78ab5060a2cd2bd.html
@@ -110,7 +110,7 @@ Directories</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/dir_a7d8e458a72ff63c89f2ceb44d9dd2f6.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/dir_a7d8e458a72ff63c89f2ceb44d9dd2f6.html b/cpp-client-api/dir_a7d8e458a72ff63c89f2ceb44d9dd2f6.html
index 461c148..e3496bc 100644
--- a/cpp-client-api/dir_a7d8e458a72ff63c89f2ceb44d9dd2f6.html
+++ b/cpp-client-api/dir_a7d8e458a72ff63c89f2ceb44d9dd2f6.html
@@ -97,7 +97,7 @@ Files</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/dir_d44c64559bbebec7f509842c48db8b23.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/dir_d44c64559bbebec7f509842c48db8b23.html b/cpp-client-api/dir_d44c64559bbebec7f509842c48db8b23.html
index 25134ed..02131d6 100644
--- a/cpp-client-api/dir_d44c64559bbebec7f509842c48db8b23.html
+++ b/cpp-client-api/dir_d44c64559bbebec7f509842c48db8b23.html
@@ -106,7 +106,7 @@ Directories</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/dir_e8a2e446cf73a5a1ae0ad6a5a21b6d03.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/dir_e8a2e446cf73a5a1ae0ad6a5a21b6d03.html b/cpp-client-api/dir_e8a2e446cf73a5a1ae0ad6a5a21b6d03.html
index d502c56..3d47e8c 100644
--- a/cpp-client-api/dir_e8a2e446cf73a5a1ae0ad6a5a21b6d03.html
+++ b/cpp-client-api/dir_e8a2e446cf73a5a1ae0ad6a5a21b6d03.html
@@ -99,7 +99,7 @@ Files</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/files.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/files.html b/cpp-client-api/files.html
index c684e7f..931470c 100644
--- a/cpp-client-api/files.html
+++ b/cpp-client-api/files.html
@@ -114,7 +114,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions.html b/cpp-client-api/functions.html
index 0faa0bd..2acd17d 100644
--- a/cpp-client-api/functions.html
+++ b/cpp-client-api/functions.html
@@ -193,7 +193,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_b.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_b.html b/cpp-client-api/functions_b.html
index d615bdf..164101f 100644
--- a/cpp-client-api/functions_b.html
+++ b/cpp-client-api/functions_b.html
@@ -138,7 +138,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_c.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_c.html b/cpp-client-api/functions_c.html
index 9a896d5..2d23265 100644
--- a/cpp-client-api/functions_c.html
+++ b/cpp-client-api/functions_c.html
@@ -208,7 +208,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_d.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_d.html b/cpp-client-api/functions_d.html
index e4ef43f..7e42b11 100644
--- a/cpp-client-api/functions_d.html
+++ b/cpp-client-api/functions_d.html
@@ -162,7 +162,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_e.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_e.html b/cpp-client-api/functions_e.html
index 11464d0..5e126ce 100644
--- a/cpp-client-api/functions_e.html
+++ b/cpp-client-api/functions_e.html
@@ -163,7 +163,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_enum.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_enum.html b/cpp-client-api/functions_enum.html
index bf282bf..ddff35d 100644
--- a/cpp-client-api/functions_enum.html
+++ b/cpp-client-api/functions_enum.html
@@ -133,7 +133,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_eval.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_eval.html b/cpp-client-api/functions_eval.html
index ccc2942c..39356f8 100644
--- a/cpp-client-api/functions_eval.html
+++ b/cpp-client-api/functions_eval.html
@@ -148,7 +148,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_f.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_f.html b/cpp-client-api/functions_f.html
index e709a5c..123bcb5 100644
--- a/cpp-client-api/functions_f.html
+++ b/cpp-client-api/functions_f.html
@@ -146,7 +146,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func.html b/cpp-client-api/functions_func.html
index c73c07f..c9e37c3 100644
--- a/cpp-client-api/functions_func.html
+++ b/cpp-client-api/functions_func.html
@@ -186,7 +186,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_b.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_b.html b/cpp-client-api/functions_func_b.html
index 1b7a55a..8bc1e44 100644
--- a/cpp-client-api/functions_func_b.html
+++ b/cpp-client-api/functions_func_b.html
@@ -137,7 +137,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_c.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_c.html b/cpp-client-api/functions_func_c.html
index 717e9ec..929444d 100644
--- a/cpp-client-api/functions_func_c.html
+++ b/cpp-client-api/functions_func_c.html
@@ -192,7 +192,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_d.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_d.html b/cpp-client-api/functions_func_d.html
index be400cd..07578a5 100644
--- a/cpp-client-api/functions_func_d.html
+++ b/cpp-client-api/functions_func_d.html
@@ -155,7 +155,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_e.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_e.html b/cpp-client-api/functions_func_e.html
index effab6b..5843ed3 100644
--- a/cpp-client-api/functions_func_e.html
+++ b/cpp-client-api/functions_func_e.html
@@ -153,7 +153,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_f.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_f.html b/cpp-client-api/functions_func_f.html
index 384bf72..bfcfc44 100644
--- a/cpp-client-api/functions_func_f.html
+++ b/cpp-client-api/functions_func_f.html
@@ -135,7 +135,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_g.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_g.html b/cpp-client-api/functions_func_g.html
index 6128b4d..adb2790 100644
--- a/cpp-client-api/functions_func_g.html
+++ b/cpp-client-api/functions_func_g.html
@@ -156,7 +156,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_h.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_h.html b/cpp-client-api/functions_func_h.html
index a0a358c..33bff07 100644
--- a/cpp-client-api/functions_func_h.html
+++ b/cpp-client-api/functions_func_h.html
@@ -135,7 +135,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_i.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_i.html b/cpp-client-api/functions_func_i.html
index 76b800b..4553ddd 100644
--- a/cpp-client-api/functions_func_i.html
+++ b/cpp-client-api/functions_func_i.html
@@ -222,7 +222,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_k.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_k.html b/cpp-client-api/functions_func_k.html
index 619d016..ca4e78c 100644
--- a/cpp-client-api/functions_func_k.html
+++ b/cpp-client-api/functions_func_k.html
@@ -159,7 +159,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_l.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_l.html b/cpp-client-api/functions_func_l.html
index a89bf23..44de73c 100644
--- a/cpp-client-api/functions_func_l.html
+++ b/cpp-client-api/functions_func_l.html
@@ -135,7 +135,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_m.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_m.html b/cpp-client-api/functions_func_m.html
index 8c71988..9156cf8 100644
--- a/cpp-client-api/functions_func_m.html
+++ b/cpp-client-api/functions_func_m.html
@@ -159,7 +159,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_n.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_n.html b/cpp-client-api/functions_func_n.html
index 88a042b..87ae71c 100644
--- a/cpp-client-api/functions_func_n.html
+++ b/cpp-client-api/functions_func_n.html
@@ -190,7 +190,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_o.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_o.html b/cpp-client-api/functions_func_o.html
index 93d5356..f497b12 100644
--- a/cpp-client-api/functions_func_o.html
+++ b/cpp-client-api/functions_func_o.html
@@ -168,7 +168,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_p.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_p.html b/cpp-client-api/functions_func_p.html
index f767ee8..b51f4cb 100644
--- a/cpp-client-api/functions_func_p.html
+++ b/cpp-client-api/functions_func_p.html
@@ -138,7 +138,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_r.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_r.html b/cpp-client-api/functions_func_r.html
index ba254c1..5bc782d 100644
--- a/cpp-client-api/functions_func_r.html
+++ b/cpp-client-api/functions_func_r.html
@@ -162,7 +162,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_s.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_s.html b/cpp-client-api/functions_func_s.html
index 9c2e3e7..e453cc3 100644
--- a/cpp-client-api/functions_func_s.html
+++ b/cpp-client-api/functions_func_s.html
@@ -232,7 +232,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_t.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_t.html b/cpp-client-api/functions_func_t.html
index 006b3d6..7c2eff3 100644
--- a/cpp-client-api/functions_func_t.html
+++ b/cpp-client-api/functions_func_t.html
@@ -178,7 +178,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_u.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_u.html b/cpp-client-api/functions_func_u.html
index 3837257..91998f2 100644
--- a/cpp-client-api/functions_func_u.html
+++ b/cpp-client-api/functions_func_u.html
@@ -132,7 +132,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_func_w.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_func_w.html b/cpp-client-api/functions_func_w.html
index c44cb3d..1eebad0 100644
--- a/cpp-client-api/functions_func_w.html
+++ b/cpp-client-api/functions_func_w.html
@@ -133,7 +133,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_g.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_g.html b/cpp-client-api/functions_g.html
index 7304034..f850282 100644
--- a/cpp-client-api/functions_g.html
+++ b/cpp-client-api/functions_g.html
@@ -160,7 +160,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_h.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_h.html b/cpp-client-api/functions_h.html
index 295936e..d0040eb 100644
--- a/cpp-client-api/functions_h.html
+++ b/cpp-client-api/functions_h.html
@@ -136,7 +136,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_i.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_i.html b/cpp-client-api/functions_i.html
index 0e4a6a8..e1cd14d 100644
--- a/cpp-client-api/functions_i.html
+++ b/cpp-client-api/functions_i.html
@@ -226,7 +226,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_k.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_k.html b/cpp-client-api/functions_k.html
index 73d9664..fab5ebd 100644
--- a/cpp-client-api/functions_k.html
+++ b/cpp-client-api/functions_k.html
@@ -163,7 +163,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_l.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_l.html b/cpp-client-api/functions_l.html
index 4e7ad87..33dfa5a 100644
--- a/cpp-client-api/functions_l.html
+++ b/cpp-client-api/functions_l.html
@@ -139,7 +139,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_m.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_m.html b/cpp-client-api/functions_m.html
index 9e71b2b..86ab3c6 100644
--- a/cpp-client-api/functions_m.html
+++ b/cpp-client-api/functions_m.html
@@ -167,7 +167,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_n.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_n.html b/cpp-client-api/functions_n.html
index ec85354..6e8f64f 100644
--- a/cpp-client-api/functions_n.html
+++ b/cpp-client-api/functions_n.html
@@ -191,7 +191,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_o.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_o.html b/cpp-client-api/functions_o.html
index 4149e32..fa268a1 100644
--- a/cpp-client-api/functions_o.html
+++ b/cpp-client-api/functions_o.html
@@ -176,7 +176,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_p.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_p.html b/cpp-client-api/functions_p.html
index 683200c..4a62a25 100644
--- a/cpp-client-api/functions_p.html
+++ b/cpp-client-api/functions_p.html
@@ -139,7 +139,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_r.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_r.html b/cpp-client-api/functions_r.html
index 5f58e43..3ed3733 100644
--- a/cpp-client-api/functions_r.html
+++ b/cpp-client-api/functions_r.html
@@ -178,7 +178,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_rela.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_rela.html b/cpp-client-api/functions_rela.html
index 02ebe87..c79c50a 100644
--- a/cpp-client-api/functions_rela.html
+++ b/cpp-client-api/functions_rela.html
@@ -103,7 +103,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_s.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_s.html b/cpp-client-api/functions_s.html
index 29460f4..77ca1dc 100644
--- a/cpp-client-api/functions_s.html
+++ b/cpp-client-api/functions_s.html
@@ -233,7 +233,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_t.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_t.html b/cpp-client-api/functions_t.html
index 939f987..36f71d2 100644
--- a/cpp-client-api/functions_t.html
+++ b/cpp-client-api/functions_t.html
@@ -186,7 +186,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_type.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_type.html b/cpp-client-api/functions_type.html
index ed6d7e8..99ae336 100644
--- a/cpp-client-api/functions_type.html
+++ b/cpp-client-api/functions_type.html
@@ -114,7 +114,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_u.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_u.html b/cpp-client-api/functions_u.html
index 401d865..96949c1 100644
--- a/cpp-client-api/functions_u.html
+++ b/cpp-client-api/functions_u.html
@@ -136,7 +136,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_v.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_v.html b/cpp-client-api/functions_v.html
index 871836a..17284b5 100644
--- a/cpp-client-api/functions_v.html
+++ b/cpp-client-api/functions_v.html
@@ -130,7 +130,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_vars.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_vars.html b/cpp-client-api/functions_vars.html
index 39e52d5..1733bdf 100644
--- a/cpp-client-api/functions_vars.html
+++ b/cpp-client-api/functions_vars.html
@@ -106,7 +106,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/functions_w.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/functions_w.html b/cpp-client-api/functions_w.html
index 796bb44..665e81a 100644
--- a/cpp-client-api/functions_w.html
+++ b/cpp-client-api/functions_w.html
@@ -134,7 +134,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/globals.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/globals.html b/cpp-client-api/globals.html
index 2746706..ae9dbbb 100644
--- a/cpp-client-api/globals.html
+++ b/cpp-client-api/globals.html
@@ -123,7 +123,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/globals_defs.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/globals_defs.html b/cpp-client-api/globals_defs.html
index d4835b8..bdc737d 100644
--- a/cpp-client-api/globals_defs.html
+++ b/cpp-client-api/globals_defs.html
@@ -123,7 +123,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/graph_legend.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/graph_legend.html b/cpp-client-api/graph_legend.html
index 7a0e469..5d6dabe 100644
--- a/cpp-client-api/graph_legend.html
+++ b/cpp-client-api/graph_legend.html
@@ -112,7 +112,7 @@ A yellow dashed arrow denotes a relation between a template instance and the tem
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/hierarchy.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/hierarchy.html b/cpp-client-api/hierarchy.html
index a02d621..cab10db 100644
--- a/cpp-client-api/hierarchy.html
+++ b/cpp-client-api/hierarchy.html
@@ -143,7 +143,7 @@ This inheritance list is sorted roughly, but not completely, alphabetically:</di
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/index.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/index.html b/cpp-client-api/index.html
index c9d5585..91a43a5 100644
--- a/cpp-client-api/index.html
+++ b/cpp-client-api/index.html
@@ -84,7 +84,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/inherits.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/inherits.html b/cpp-client-api/inherits.html
index 59997da..1da71a8 100644
--- a/cpp-client-api/inherits.html
+++ b/cpp-client-api/inherits.html
@@ -265,7 +265,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:57 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/kudu__export_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/kudu__export_8h_source.html b/cpp-client-api/kudu__export_8h_source.html
index 05acadd..ed017dc 100644
--- a/cpp-client-api/kudu__export_8h_source.html
+++ b/cpp-client-api/kudu__export_8h_source.html
@@ -93,7 +93,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/monotime_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/monotime_8h_source.html b/cpp-client-api/monotime_8h_source.html
index 8da441b..ebb2bfc 100644
--- a/cpp-client-api/monotime_8h_source.html
+++ b/cpp-client-api/monotime_8h_source.html
@@ -96,7 +96,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/pages.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/pages.html b/cpp-client-api/pages.html
index 0d73d80..4cd1d31 100644
--- a/cpp-client-api/pages.html
+++ b/cpp-client-api/pages.html
@@ -89,7 +89,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/partial__row_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/partial__row_8h_source.html b/cpp-client-api/partial__row_8h_source.html
index e12e8a5..28d86a4 100644
--- a/cpp-client-api/partial__row_8h_source.html
+++ b/cpp-client-api/partial__row_8h_source.html
@@ -96,7 +96,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/resource__metrics_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/resource__metrics_8h_source.html b/cpp-client-api/resource__metrics_8h_source.html
index ddd74df..c146cc0 100644
--- a/cpp-client-api/resource__metrics_8h_source.html
+++ b/cpp-client-api/resource__metrics_8h_source.html
@@ -95,7 +95,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/row__result_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/row__result_8h_source.html b/cpp-client-api/row__result_8h_source.html
index 7fa1832..9b849ef 100644
--- a/cpp-client-api/row__result_8h_source.html
+++ b/cpp-client-api/row__result_8h_source.html
@@ -95,7 +95,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/scan__batch_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/scan__batch_8h_source.html b/cpp-client-api/scan__batch_8h_source.html
index 62155bc..8edda0e 100644
--- a/cpp-client-api/scan__batch_8h_source.html
+++ b/cpp-client-api/scan__batch_8h_source.html
@@ -106,7 +106,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/scan__predicate_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/scan__predicate_8h_source.html b/cpp-client-api/scan__predicate_8h_source.html
index b83a6d2..d19d9af 100644
--- a/cpp-client-api/scan__predicate_8h_source.html
+++ b/cpp-client-api/scan__predicate_8h_source.html
@@ -97,7 +97,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/schema_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/schema_8h_source.html b/cpp-client-api/schema_8h_source.html
index 9c6c90c..879a572 100644
--- a/cpp-client-api/schema_8h_source.html
+++ b/cpp-client-api/schema_8h_source.html
@@ -116,7 +116,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/shared__ptr_8h.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/shared__ptr_8h.html b/cpp-client-api/shared__ptr_8h.html
index fba6c15..18a0c2f 100644
--- a/cpp-client-api/shared__ptr_8h.html
+++ b/cpp-client-api/shared__ptr_8h.html
@@ -98,8 +98,6 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 Include dependency graph for shared_ptr.h:</div>
 <div class="dyncontent">
 <div class="center"><img src="shared__ptr_8h__incl.png" border="0" usemap="#include_2kudu_2client_2shared__ptr_8h" alt=""/></div>
-<map name="include_2kudu_2client_2shared__ptr_8h" id="include_2kudu_2client_2shared__ptr_8h">
-</map>
 </div>
 </div><div class="textblock"><div class="dynheader">
 This graph shows which files directly or indirectly include this file:</div>
@@ -121,7 +119,7 @@ This graph shows which files directly or indirectly include this file:</div>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/shared__ptr_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/shared__ptr_8h_source.html b/cpp-client-api/shared__ptr_8h_source.html
index 7a1c4b0..10f62cf 100644
--- a/cpp-client-api/shared__ptr_8h_source.html
+++ b/cpp-client-api/shared__ptr_8h_source.html
@@ -94,7 +94,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/slice_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/slice_8h_source.html b/cpp-client-api/slice_8h_source.html
index 412e9d3..78d30a6 100644
--- a/cpp-client-api/slice_8h_source.html
+++ b/cpp-client-api/slice_8h_source.html
@@ -117,7 +117,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/status_8h.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/status_8h.html b/cpp-client-api/status_8h.html
index 2321433..26a96a1 100644
--- a/cpp-client-api/status_8h.html
+++ b/cpp-client-api/status_8h.html
@@ -390,7 +390,7 @@ Macros</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/status_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/status_8h_source.html b/cpp-client-api/status_8h_source.html
index 605ae74..e51d4ac 100644
--- a/cpp-client-api/status_8h_source.html
+++ b/cpp-client-api/status_8h_source.html
@@ -118,7 +118,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/structkudu_1_1SliceMap-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/structkudu_1_1SliceMap-members.html b/cpp-client-api/structkudu_1_1SliceMap-members.html
index 2cc951f..280c6bf 100644
--- a/cpp-client-api/structkudu_1_1SliceMap-members.html
+++ b/cpp-client-api/structkudu_1_1SliceMap-members.html
@@ -99,7 +99,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/structkudu_1_1SliceMap.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/structkudu_1_1SliceMap.html b/cpp-client-api/structkudu_1_1SliceMap.html
index dd6b3f1..d57dc29 100644
--- a/cpp-client-api/structkudu_1_1SliceMap.html
+++ b/cpp-client-api/structkudu_1_1SliceMap.html
@@ -119,7 +119,7 @@ struct kudu::SliceMap&lt; T &gt;</h3>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/structkudu_1_1Slice_1_1Comparator-members.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/structkudu_1_1Slice_1_1Comparator-members.html b/cpp-client-api/structkudu_1_1Slice_1_1Comparator-members.html
index b886e04..5c16823 100644
--- a/cpp-client-api/structkudu_1_1Slice_1_1Comparator-members.html
+++ b/cpp-client-api/structkudu_1_1Slice_1_1Comparator-members.html
@@ -99,7 +99,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/structkudu_1_1Slice_1_1Comparator.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/structkudu_1_1Slice_1_1Comparator.html b/cpp-client-api/structkudu_1_1Slice_1_1Comparator.html
index 354611a..da73c51 100644
--- a/cpp-client-api/structkudu_1_1Slice_1_1Comparator.html
+++ b/cpp-client-api/structkudu_1_1Slice_1_1Comparator.html
@@ -158,7 +158,7 @@ Public Member Functions</h2></td></tr>
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/stubs_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/stubs_8h_source.html b/cpp-client-api/stubs_8h_source.html
index fc70c70..8f92a3e 100644
--- a/cpp-client-api/stubs_8h_source.html
+++ b/cpp-client-api/stubs_8h_source.html
@@ -99,7 +99,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/todo.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/todo.html b/cpp-client-api/todo.html
index 5c503d1..5a754a0 100644
--- a/cpp-client-api/todo.html
+++ b/cpp-client-api/todo.html
@@ -115,7 +115,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/value_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/value_8h_source.html b/cpp-client-api/value_8h_source.html
index cc0759b..bdcaa6b 100644
--- a/cpp-client-api/value_8h_source.html
+++ b/cpp-client-api/value_8h_source.html
@@ -97,7 +97,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/cpp-client-api/write__op_8h_source.html
----------------------------------------------------------------------
diff --git a/cpp-client-api/write__op_8h_source.html b/cpp-client-api/write__op_8h_source.html
index f6ee940..4e3711b 100644
--- a/cpp-client-api/write__op_8h_source.html
+++ b/cpp-client-api/write__op_8h_source.html
@@ -109,7 +109,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
 <!-- start footer part -->
 <hr class="footer"/>
 <address class="footer">
-  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Tue Apr 18 2017 22:10:27 by Doxygen 1.8.11</small>
+  <small>Generated for Kudu version 1.3.2-SNAPSHOT on Mon May 15 2017 12:45:56 by Doxygen 1.8.11</small>
   <br>
   <small>Copyright © 2017 The Apache Software Foundation.</small>
 </address>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/administration.html
----------------------------------------------------------------------
diff --git a/docs/administration.html b/docs/administration.html
index 05c3115..b9cab40 100644
--- a/docs/administration.html
+++ b/docs/administration.html
@@ -2,7 +2,7 @@
 title: Apache Kudu Administration
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:26 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:07 PDT'
 ---
 <!--
 
@@ -1063,6 +1063,44 @@ be done with the following command:</p>
 </div>
 </div>
 </div>
+<div class="sect2">
+<h3 id="disk_failure_recovery"><a class="link" href="#disk_failure_recovery">Recovering from Disk Failure</a></h3>
+<div class="paragraph">
+<p>Kudu tablet servers are not resilient to disk failure. When a disk containing a
+data directory or the write-ahead log (WAL) dies, the entire tablet server must
+be rebuilt. Kudu will automatically re-replicate tablets on other servers after
+a tablet server fails, but manual intervention is needed in order to restore the
+failed tablet server to a running state.</p>
+</div>
+<div class="paragraph">
+<p>The first step to restoring a tablet server after a disk failure is to replace
+the failed disk, or remove the failed disk from the data-directory and/or WAL
+configuration. Next, the contents of the data directories and WAL directory must
+be removed. For example, if the tablet server is configured with
+<code>--fs_wal_dir=/data/0/kudu-tserver-wal</code> and
+<code>--fs_data_dirs=/data/1/kudu-tserver,/data/2/kudu-tserver</code>, the following
+commands will remove the data directories and WAL directory contents:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="highlight"><code class="language-bash" data-lang="bash">$ rm -rf /data/0/kudu-tserver-wal/* /data/1/kudu-tserver/* /data/2/kudu-tserver/*</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>After the WAL and data directories are emptied, the tablet server process can be
+started. When Kudu is installed using system packages, <code>service</code> is typically
+used:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="highlight"><code class="language-bash" data-lang="bash">$ sudo service kudu-tserver start</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Once the tablet server is running again, new tablet replicas will be created on
+it as necessary.</p>
+</div>
+</div>
 </div>
 </div>
     </div>
@@ -1128,6 +1166,7 @@ be done with the following command:</p>
 </ul>
 </li>
 <li><a href="#ksck">Checking Cluster Health with <code>ksck</code></a></li>
+<li><a href="#disk_failure_recovery">Recovering from Disk Failure</a></li>
 </ul>
 </li>
 </ul> 
@@ -1146,6 +1185,10 @@ be done with the following command:</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -1158,6 +1201,10 @@ be done with the following command:</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/background_tasks.html
----------------------------------------------------------------------
diff --git a/docs/background_tasks.html b/docs/background_tasks.html
index 59cb5c1..54b4fee 100644
--- a/docs/background_tasks.html
+++ b/docs/background_tasks.html
@@ -2,7 +2,7 @@
 title: Apache Kudu Background Maintenance Tasks
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-12 15:28:02 PDT'
+last_updated: 'Last updated 2017-05-04 13:08:22 PDT'
 ---
 <!--
 
@@ -180,6 +180,10 @@ updates or upserts.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -198,6 +202,10 @@ updates or upserts.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/configuration.html
----------------------------------------------------------------------
diff --git a/docs/configuration.html b/docs/configuration.html
index a23182f..3796d4d 100644
--- a/docs/configuration.html
+++ b/docs/configuration.html
@@ -292,6 +292,10 @@ do not read this flag.</p></td>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -304,6 +308,10 @@ do not read this flag.</p></td>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/configuration_reference.html
----------------------------------------------------------------------
diff --git a/docs/configuration_reference.html b/docs/configuration_reference.html
index 624fc15..f027ee5 100644
--- a/docs/configuration_reference.html
+++ b/docs/configuration_reference.html
@@ -2,7 +2,7 @@
 title: Apache Kudu Configuration Reference
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 22:11:57 PDT'
+last_updated: 'Last updated 2017-05-15 12:46:02 PDT'
 ---
 <!--
 
@@ -298,7 +298,7 @@ configuration tasks.</p>
 <div class="sect3">
 <h4 id="kudu-master_webserver_certificate_file"><a class="link" href="#kudu-master_webserver_certificate_file"><code>--webserver_certificate_file</code></a></h4>
 <div class="paragraph">
-<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled</p>
+<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled. If --webserver_private_key_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -356,7 +356,7 @@ configuration tasks.</p>
 <div class="sect3">
 <h4 id="kudu-master_webserver_private_key_file"><a class="link" href="#kudu-master_webserver_private_key_file"><code>--webserver_private_key_file</code></a></h4>
 <div class="paragraph">
-<p>The full path to the private key used as a counterpart to the public key contained in --ssl_server_certificate. If --ssl_server_certificate is set, this option must be set as well.</p>
+<p>The full path to the private key used as a counterpart to the public key contained in --webserver_certificate_file. If --webserver_certificate_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -4386,7 +4386,7 @@ configuration tasks.</p>
 <div class="sect3">
 <h4 id="kudu-tserver_webserver_certificate_file"><a class="link" href="#kudu-tserver_webserver_certificate_file"><code>--webserver_certificate_file</code></a></h4>
 <div class="paragraph">
-<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled</p>
+<p>The location of the debug webserver&#8217;s SSL certificate file, in PEM format. If empty, webserver SSL support is not enabled. If --webserver_private_key_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -4444,7 +4444,7 @@ configuration tasks.</p>
 <div class="sect3">
 <h4 id="kudu-tserver_webserver_private_key_file"><a class="link" href="#kudu-tserver_webserver_private_key_file"><code>--webserver_private_key_file</code></a></h4>
 <div class="paragraph">
-<p>The full path to the private key used as a counterpart to the public key contained in --ssl_server_certificate. If --ssl_server_certificate is set, this option must be set as well.</p>
+<p>The full path to the private key used as a counterpart to the public key contained in --webserver_certificate_file. If --webserver_certificate_file is set, this option must be set as well.</p>
 </div>
 <table class="tableblock frame-all grid-all" style="width: 50%;">
 <colgroup>
@@ -14611,6 +14611,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -14644,6 +14648,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/configuration_reference_unsupported.html
----------------------------------------------------------------------
diff --git a/docs/configuration_reference_unsupported.html b/docs/configuration_reference_unsupported.html
index 67268e8..c8eb238 100644
--- a/docs/configuration_reference_unsupported.html
+++ b/docs/configuration_reference_unsupported.html
@@ -2,7 +2,7 @@
 title: Apache Kudu Unsupported Configuration Flags
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 22:11:57 PDT'
+last_updated: 'Last updated 2017-05-15 12:46:02 PDT'
 ---
 <!--
 
@@ -6612,6 +6612,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -6624,6 +6628,10 @@ subject to being changed or removed without notice.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/contributing.html
----------------------------------------------------------------------
diff --git a/docs/contributing.html b/docs/contributing.html
index 2092026..7eacd47 100644
--- a/docs/contributing.html
+++ b/docs/contributing.html
@@ -2,7 +2,7 @@
 title: Contributing to Apache Kudu
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-10 16:00:03 PDT'
+last_updated: 'Last updated 2017-05-04 13:08:22 PDT'
 ---
 <!--
 
@@ -673,6 +673,10 @@ for guidelines about contributing to the official Kudu documentation.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -685,6 +689,10 @@ for guidelines about contributing to the official Kudu documentation.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>

http://git-wip-us.apache.org/repos/asf/kudu/blob/76d8b59d/docs/developing.html
----------------------------------------------------------------------
diff --git a/docs/developing.html b/docs/developing.html
index cd01205..0ed0f32 100644
--- a/docs/developing.html
+++ b/docs/developing.html
@@ -2,7 +2,7 @@
 title: Developing Applications With Apache Kudu
 layout: default
 active_nav: docs
-last_updated: 'Last updated 2017-04-18 21:59:13 PDT'
+last_updated: 'Last updated 2017-05-15 12:38:07 PDT'
 ---
 <!--
 
@@ -202,7 +202,7 @@ df.registerTempTable("kudu_table")
 val filteredDF = sqlContext.sql("select id from kudu_table where id &gt;= 5").show()
 
 // Use KuduContext to create, delete, or write to Kudu tables
-val kuduContext = new KuduContext("kudu.master:7051")
+val kuduContext = new KuduContext("kudu.master:7051", sqlContext.sparkContext)
 
 // Create a new Kudu table from a dataframe schema
 // NB: No rows from the dataframe are inserted into the table
@@ -251,13 +251,18 @@ may not be used with SparkSQL. Non-primary key columns may be renamed in Kudu
 to work around this issue.</p>
 </li>
 <li>
-<p><code>NULL</code>, <code>NOT NULL</code>, <code>&lt;&gt;</code>, <code>OR</code>, <code>LIKE</code>, and <code>IN</code> predicates are not pushed to
-Kudu, and instead will be evaluated by the Spark task.</p>
+<p><code>&lt;&gt;</code> and <code>OR</code> predicates are not pushed to Kudu, and instead will be evaluated
+by the Spark task. Only <code>LIKE</code> predicates with a suffix wildcard are pushed to
+Kudu, meaning that <code>LIKE "FOO%"</code> is pushed down but <code>LIKE "FOO%BAR"</code> isn&#8217;t.</p>
 </li>
 <li>
 <p>Kudu does not support all types supported by Spark SQL, such as <code>Date</code>,
 <code>Decimal</code> and complex types.</p>
 </li>
+<li>
+<p>Kudu tables may only be registered as temporary tables in SparkSQL.
+Kudu tables may not be queried using HiveContext.</p>
+</li>
 </ul>
 </div>
 </div>
@@ -407,6 +412,10 @@ using YARN and Spark in the future.</p>
       </li> 
       <li>
 
+          <a href="security.html">Kudu Security</a> 
+      </li> 
+      <li>
+
           <a href="transaction_semantics.html">Kudu Transaction Semantics</a> 
       </li> 
       <li>
@@ -419,6 +428,10 @@ using YARN and Spark in the future.</p>
       </li> 
       <li>
 
+          <a href="command_line_tools_reference.html">Kudu Command Line Tools Reference</a> 
+      </li> 
+      <li>
+
           <a href="known_issues.html">Known Issues and Limitations</a> 
       </li> 
       <li>