You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2019/04/11 20:34:36 UTC

[accumulo-website] branch master updated: Update site for 1.9.3

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new cb7a81b  Update site for 1.9.3
cb7a81b is described below

commit cb7a81b58d17b471771c01369e0443d3affb2d63
Author: Keith Turner <kt...@apache.org>
AuthorDate: Thu Apr 11 16:33:30 2019 -0400

    Update site for 1.9.3
---
 1.9/accumulo_user_manual.html                      | 84 +++++++++++++++++++++-
 _config.yml                                        |  4 +-
 _includes/nav.html                                 |  2 +-
 _posts/release/2018-07-19-accumulo-1.9.2.md        |  1 +
 ...umulo-1.9.3.md => 2019-04-10-accumulo-1.9.3.md} |  1 -
 doap/accumulo.rdf                                  |  7 ++
 pages/downloads.md                                 | 28 ++++----
 7 files changed, 108 insertions(+), 19 deletions(-)

diff --git a/1.9/accumulo_user_manual.html b/1.9/accumulo_user_manual.html
index 09b15ad..8d73e67 100644
--- a/1.9/accumulo_user_manual.html
+++ b/1.9/accumulo_user_manual.html
@@ -941,6 +941,8 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
 <li><a href="#_master_bulk_retries">master.bulk.retries</a></li>
 <li><a href="#_master_bulk_threadpool_size">master.bulk.threadpool.size</a></li>
 <li><a href="#_master_bulk_timeout">master.bulk.timeout</a></li>
+<li><a href="#_master_fate_metrics_enabled">master.fate.metrics.enabled</a></li>
+<li><a href="#_master_fate_metrics_min_update_interval">master.fate.metrics.min.update.interval</a></li>
 <li><a href="#_master_fate_threadpool_size">master.fate.threadpool.size</a></li>
 <li><a href="#_master_lease_recovery_interval">master.lease.recovery.interval</a></li>
 <li><a href="#_master_metadata_suspendable">master.metadata.suspendable</a></li>
@@ -1003,6 +1005,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
 <li><a href="#_tserver_server_threads_minimum">tserver.server.threads.minimum</a></li>
 <li><a href="#_tserver_session_idle_max">tserver.session.idle.max</a></li>
 <li><a href="#_tserver_session_update_idle_max">tserver.session.update.idle.max</a></li>
+<li><a href="#_tserver_slow_filepermit_time">tserver.slow.filepermit.time</a></li>
 <li><a href="#_tserver_slow_flush_time">tserver.slow.flush.time</a></li>
 <li><a href="#_tserver_sort_buffer_size">tserver.sort.buffer.size</a></li>
 <li><a href="#_tserver_tablet_split_midpoint_files_max">tserver.tablet.split.midpoint.files.max</a></li>
@@ -1043,6 +1046,7 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
 <li><a href="#_monitor_ssl_exclude_ciphers">monitor.ssl.exclude.ciphers</a></li>
 <li><a href="#_monitor_ssl_include_ciphers">monitor.ssl.include.ciphers</a></li>
 <li><a href="#_monitor_ssl_include_protocols">monitor.ssl.include.protocols</a></li>
+<li><a href="#_monitor_ssl_keypassword">monitor.ssl.keyPassword</a></li>
 <li><a href="#_monitor_ssl_keystore">monitor.ssl.keyStore</a></li>
 <li><a href="#_monitor_ssl_keystorepassword">monitor.ssl.keyStorePassword</a></li>
 <li><a href="#_monitor_ssl_keystoretype">monitor.ssl.keyStoreType</a></li>
@@ -9492,6 +9496,40 @@ overriden by using the <code>--local-wal-directories</code> option on the tool.
 <pre>$ACCUMULO_HOME/bin/accumulo org.apache.accumulo.tserver.log.LocalWALRecovery</pre>
 </div>
 </div>
+<div class="paragraph">
+<p><strong>Q</strong> Trying to start the master after upgrading, the upgrade is aborting with the aborting with the following message:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre>org.apache.accumulo.core.client.AccumuloException:
+Aborting upgrade because there are outstanding FATE transactions from a previous Accumulo version.</pre>
+</div>
+</div>
+<div class="paragraph">
+<p><strong>A</strong> You can use the shell to delete completed FATE transactions using the following:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Start tservers</p>
+</li>
+<li>
+<p>Start shell</p>
+</li>
+<li>
+<p>Run fate print to list all</p>
+</li>
+<li>
+<p>If completed, just delete with fate delete</p>
+</li>
+<li>
+<p>Start masters once there are no more fate operations</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>If any of the operations are not complete, you should rollback the upgrade and troubleshoot completing them with your prior version.</p>
+</div>
 </div>
 <div class="sect2">
 <h3 id="_file_naming_conventions">20.10. File Naming Conventions</h3>
@@ -10231,6 +10269,28 @@ $HADOOP_PREFIX/share/hadoop/yarn/lib/jersey.*.jar,
 </div>
 </div>
 <div class="sect4">
+<h5 id="_master_fate_metrics_enabled">master.fate.metrics.enabled</h5>
+<div class="paragraph">
+<p>Enable reporting of FATE metrics in JMX (and logging with Hadoop Metrics2</p>
+</div>
+<div class="paragraph">
+<p><em>Type:</em> BOOLEAN<br>
+<em>Zookeeper Mutable:</em> yes<br>
+<em>Default Value:</em> <code>false</code></p>
+</div>
+</div>
+<div class="sect4">
+<h5 id="_master_fate_metrics_min_update_interval">master.fate.metrics.min.update.interval</h5>
+<div class="paragraph">
+<p>Limit calls from metric sinks to zookeeper to update interval</p>
+</div>
+<div class="paragraph">
+<p><em>Type:</em> TIMEDURATION<br>
+<em>Zookeeper Mutable:</em> yes<br>
+<em>Default Value:</em> <code>60s</code></p>
+</div>
+</div>
+<div class="sect4">
 <h5 id="_master_fate_threadpool_size">master.fate.threadpool.size</h5>
 <div class="paragraph">
 <p>The number of threads used to run FAult-Tolerant Executions. These are primarily table operations like merge.</p>
@@ -10875,6 +10935,17 @@ $HADOOP_PREFIX/share/hadoop/yarn/lib/jersey.*.jar,
 </div>
 </div>
 <div class="sect4">
+<h5 id="_tserver_slow_filepermit_time">tserver.slow.filepermit.time</h5>
+<div class="paragraph">
+<p>If a thread blocks more than this period of time waiting to get file permits, debugging information will be written.</p>
+</div>
+<div class="paragraph">
+<p><em>Type:</em> TIMEDURATION<br>
+<em>Zookeeper Mutable:</em> yes<br>
+<em>Default Value:</em> <code>100ms</code></p>
+</div>
+</div>
+<div class="sect4">
 <h5 id="_tserver_slow_flush_time">tserver.slow.flush.time</h5>
 <div class="paragraph">
 <p>If a flush to the write-ahead log takes longer than this period of time, debugging information will written, and may result in a log rollover.</p>
@@ -11234,6 +11305,17 @@ $HADOOP_PREFIX/share/hadoop/yarn/lib/jersey.*.jar,
 </div>
 </div>
 <div class="sect4">
+<h5 id="_monitor_ssl_keypassword">monitor.ssl.keyPassword</h5>
+<div class="paragraph">
+<p>Optional: the password for the private key in the keyStore. When not provided, this defaults to the keystore password.</p>
+</div>
+<div class="paragraph">
+<p><em>Type:</em> STRING<br>
+<em>Zookeeper Mutable:</em> no<br>
+<em>Default Value:</em> <em>empty</em></p>
+</div>
+</div>
+<div class="sect4">
 <h5 id="_monitor_ssl_keystore">monitor.ssl.keyStore</h5>
 <div class="paragraph">
 <p>The keystore for enabling monitor SSL.</p>
@@ -12177,7 +12259,7 @@ An example is <em>java.lang.String</em>, rather than <em>String</em></p>
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2018-07-15 23:23:12 EDT
+Last updated 2019-04-11 16:24:53 EDT
 </div>
 </div>
 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
diff --git a/_config.yml b/_config.yml
index ed9cfa0..9998ce4 100644
--- a/_config.yml
+++ b/_config.yml
@@ -15,8 +15,8 @@ url: "https://accumulo.apache.org" # the base hostname & protocol for your site
 twitter_username: ApacheAccumulo
 exclude: [vendor]
 latest_minor_release: 1.9
-latest_release: 2.0.0-alpha-2
-javadoc_version: 1.9.2
+latest_release: 1.9.3
+javadoc_version: 1.9.3
 num_home_posts: 5
 javadoc_base: "https://static.javadoc.io/org.apache.accumulo"
 docs_baseurl: "/docs/2.x"
diff --git a/_includes/nav.html b/_includes/nav.html
index c56a6cc..c3cb246 100644
--- a/_includes/nav.html
+++ b/_includes/nav.html
@@ -18,7 +18,7 @@
           <a class="dropdown-toggle" data-toggle="dropdown" href="#">Releases<span class="caret"></span></a>
           <ul class="dropdown-menu">
             <li><a href="{{ site.baseurl }}/release/accumulo-2.0.0-alpha-2/">2.0.0-alpha-2 (Preview Release)</a></li>
-            <li><a href="{{ site.baseurl }}/release/accumulo-1.9.2/">1.9.2 (Latest)</a></li>
+            <li><a href="{{ site.baseurl }}/release/accumulo-1.9.3/">1.9.3 (Latest)</a></li>
             <li><a href="{{ site.baseurl }}/release/">Archive</a></li>
           </ul>
         </li>
diff --git a/_posts/release/2018-07-19-accumulo-1.9.2.md b/_posts/release/2018-07-19-accumulo-1.9.2.md
index c431f1c..9b4d788 100644
--- a/_posts/release/2018-07-19-accumulo-1.9.2.md
+++ b/_posts/release/2018-07-19-accumulo-1.9.2.md
@@ -1,5 +1,6 @@
 ---
 title: Apache Accumulo 1.9.2
+archived: true
 ---
 
 Apache Accumulo 1.9.2 contains fixes for critical write-ahead log bugs.
diff --git a/_posts/release/2018-07-18-accumulo-1.9.3.md b/_posts/release/2019-04-10-accumulo-1.9.3.md
similarity index 99%
rename from _posts/release/2018-07-18-accumulo-1.9.3.md
rename to _posts/release/2019-04-10-accumulo-1.9.3.md
index 584e785..0daacf9 100644
--- a/_posts/release/2018-07-18-accumulo-1.9.3.md
+++ b/_posts/release/2019-04-10-accumulo-1.9.3.md
@@ -1,6 +1,5 @@
 ---
 title: Apache Accumulo 1.9.3
-draft: true
 ---
 
 Apache Accumulo 1.9.3 contains bug fixes for Write Ahead Logs and compaction.
diff --git a/doap/accumulo.rdf b/doap/accumulo.rdf
index 073dc52..4182074 100644
--- a/doap/accumulo.rdf
+++ b/doap/accumulo.rdf
@@ -37,6 +37,13 @@
     <release>
       <Version>
         <name>Apache Accumulo</name>
+        <created>2019-04-10</created>
+        <revision>1.9.3</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
+        <name>Apache Accumulo</name>
         <created>2019-01-31</created>
         <revision>2.0.0-alpha-2</revision>
       </Version>
diff --git a/pages/downloads.md b/pages/downloads.md
index 3e2d27e..cbbebaa 100644
--- a/pages/downloads.md
+++ b/pages/downloads.md
@@ -72,13 +72,13 @@ and should be used for feedback and testing purposes only. See the
 * [Online Documentation][MANUAL_20]
 * [Java API][JAVADOC_20]
 
-### 1.9.2 **latest**{: .label .label-primary }
+### 1.9.3 **latest**{: .label .label-primary }
 
-The most recent stable Apache Accumulo&reg; release is version 1.9.2. See the [release notes][REL_NOTES_19].
+The most recent stable Apache Accumulo&reg; release is version 1.9.3. See the [release notes][REL_NOTES_19].
 
 {: .table }
-| **Binary** | [accumulo-1.9.2-bin.tar.gz][BIN_19] | [ASC][ASC_BIN_19] | [SHA][SHA_BIN_19] |
-| **Source** | [accumulo-1.9.2-src.tar.gz][SRC_19] | [ASC][ASC_SRC_19] | [SHA][SHA_SRC_19] |
+| **Binary** | [accumulo-1.9.3-bin.tar.gz][BIN_19] | [ASC][ASC_BIN_19] | [SHA][SHA_BIN_19] |
+| **Source** | [accumulo-1.9.3-src.tar.gz][SRC_19] | [ASC][ASC_SRC_19] | [SHA][SHA_SRC_19] |
 
 #### 1.9 Documentation
 * [README][README_19]
@@ -100,22 +100,22 @@ downloaded from the [download archive][ARCHIVE_DOWN].
 [ASC_SRC_20]: https://www.apache.org/dist/accumulo/2.0.0-alpha-2/accumulo-2.0.0-alpha-2-src.tar.gz.asc
 [SHA_BIN_20]: https://www.apache.org/dist/accumulo/2.0.0-alpha-2/accumulo-2.0.0-alpha-2-bin.tar.gz.sha512
 [SHA_SRC_20]: https://www.apache.org/dist/accumulo/2.0.0-alpha-2/accumulo-2.0.0-alpha-2-src.tar.gz.sha512
-[ASC_BIN_19]: https://www.apache.org/dist/accumulo/1.9.2/accumulo-1.9.2-bin.tar.gz.asc
-[ASC_SRC_19]: https://www.apache.org/dist/accumulo/1.9.2/accumulo-1.9.2-src.tar.gz.asc
-[SHA_BIN_19]: https://www.apache.org/dist/accumulo/1.9.2/accumulo-1.9.2-bin.tar.gz.sha512
-[SHA_SRC_19]: https://www.apache.org/dist/accumulo/1.9.2/accumulo-1.9.2-src.tar.gz.sha512
+[ASC_BIN_19]: https://www.apache.org/dist/accumulo/1.9.3/accumulo-1.9.3-bin.tar.gz.asc
+[ASC_SRC_19]: https://www.apache.org/dist/accumulo/1.9.3/accumulo-1.9.3-src.tar.gz.asc
+[SHA_BIN_19]: https://www.apache.org/dist/accumulo/1.9.3/accumulo-1.9.3-bin.tar.gz.sha512
+[SHA_SRC_19]: https://www.apache.org/dist/accumulo/1.9.3/accumulo-1.9.3-src.tar.gz.sha512
 
 [BIN_20]: https://www.apache.org/dyn/closer.lua/accumulo/2.0.0-alpha-2/accumulo-2.0.0-alpha-2-bin.tar.gz
 {: link-suffix="/accumulo/2.0.0-alpha-2/accumulo-2.0.0-alpha-2-bin.tar.gz" }
 [SRC_20]: https://www.apache.org/dyn/closer.lua/accumulo/2.0.0-alpha-2/accumulo-2.0.0-alpha-2-src.tar.gz
 {: link-suffix="/accumulo/2.0.0-alpha-2/accumulo-2.0.0-alpha-2-src.tar.gz" }
-[BIN_19]: https://www.apache.org/dyn/closer.lua/accumulo/1.9.2/accumulo-1.9.2-bin.tar.gz
-{: link-suffix="/accumulo/1.9.2/accumulo-1.9.2-bin.tar.gz" }
-[SRC_19]: https://www.apache.org/dyn/closer.lua/accumulo/1.9.2/accumulo-1.9.2-src.tar.gz
-{: link-suffix="/accumulo/1.9.2/accumulo-1.9.2-src.tar.gz" }
+[BIN_19]: https://www.apache.org/dyn/closer.lua/accumulo/1.9.3/accumulo-1.9.3-bin.tar.gz
+{: link-suffix="/accumulo/1.9.3/accumulo-1.9.3-bin.tar.gz" }
+[SRC_19]: https://www.apache.org/dyn/closer.lua/accumulo/1.9.3/accumulo-1.9.3-src.tar.gz
+{: link-suffix="/accumulo/1.9.3/accumulo-1.9.3-src.tar.gz" }
 
 [README_20]: https://github.com/apache/accumulo/blob/rel/2.0.0-alpha-2/README.md
-[README_19]: https://github.com/apache/accumulo/blob/rel/1.9.2/README.md
+[README_19]: https://github.com/apache/accumulo/blob/rel/1.9.3/README.md
 
 [JAVADOC_20]: {{ site.baseurl }}/docs/2.x/apidocs/
 [JAVADOC_19]: {{ site.baseurl }}/1.9/apidocs/
@@ -126,5 +126,5 @@ downloaded from the [download archive][ARCHIVE_DOWN].
 [EXAMPLES_19]: {{ site.baseurl }}/1.9/examples "1.9 examples"
 
 [REL_NOTES_20]: {{ site.baseurl }}/release/accumulo-2.0.0-alpha-2/ "2.0.0-alpha-2 Release Notes"
-[REL_NOTES_19]: {{ site.baseurl }}/release/accumulo-1.9.2/ "1.9.2 Release Notes"
+[REL_NOTES_19]: {{ site.baseurl }}/release/accumulo-1.9.3/ "1.9.3 Release Notes"