You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mw...@apache.org on 2017/09/05 19:29:31 UTC

[accumulo-website] branch asf-site updated: Jekyll build from master:e8352ec

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

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


The following commit(s) were added to refs/heads/asf-site by this push:
     new a1ed637  Jekyll build from master:e8352ec
a1ed637 is described below

commit a1ed6373ef5a29110a27de2c5dbf39afbfe06979
Author: Mike Walch <mw...@apache.org>
AuthorDate: Tue Sep 5 15:29:14 2017 -0400

    Jekyll build from master:e8352ec
    
    Adding draft release notes for 2.0.0 (#22)
---
 feed.xml                                | 198 ++++----------------------------
 index.html                              |  14 +--
 news/index.html                         |   7 ++
 release/accumulo-1.5.1/index.html       |   2 +
 release/accumulo-1.5.2/index.html       |   2 +
 release/accumulo-1.5.3/index.html       |   2 +
 release/accumulo-1.5.4/index.html       |   2 +
 release/accumulo-1.6.0/index.html       |   2 +
 release/accumulo-1.6.1/index.html       |   2 +
 release/accumulo-1.6.2/index.html       |   2 +
 release/accumulo-1.6.3/index.html       |   2 +
 release/accumulo-1.6.4/index.html       |   2 +
 release/accumulo-1.6.5/index.html       |   2 +
 release/accumulo-1.6.6/index.html       |   2 +
 release/accumulo-1.7.0/index.html       |   2 +
 release/accumulo-1.7.1/index.html       |   2 +
 release/accumulo-1.7.2/index.html       |   2 +
 release/accumulo-1.7.3/index.html       |   2 +
 release/accumulo-1.8.0/index.html       |   2 +
 release/accumulo-1.8.1/index.html       |   2 +
 release/{ => accumulo-2.0.0}/index.html | 139 ++--------------------
 release/index.html                      |   7 ++
 22 files changed, 85 insertions(+), 314 deletions(-)

diff --git a/feed.xml b/feed.xml
index 3340f7e..3e5b5c2 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,11 +6,30 @@
 </description>
     <link>https://accumulo.apache.org/</link>
     <atom:link href="https://accumulo.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Tue, 29 Aug 2017 18:10:08 -0400</pubDate>
-    <lastBuildDate>Tue, 29 Aug 2017 18:10:08 -0400</lastBuildDate>
+    <pubDate>Tue, 05 Sep 2017 15:29:06 -0400</pubDate>
+    <lastBuildDate>Tue, 05 Sep 2017 15:29:06 -0400</lastBuildDate>
     <generator>Jekyll v3.3.1</generator>
     
       <item>
+        <title>Apache Accumulo 2.0.0</title>
+        <description>&lt;h2 id=&quot;major-changes&quot;&gt;Major Changes&lt;/h2&gt;
+
+&lt;h2 id=&quot;other-notable-changes&quot;&gt;Other Notable Changes&lt;/h2&gt;
+
+&lt;h2 id=&quot;upgrading&quot;&gt;Upgrading&lt;/h2&gt;
+
+&lt;h2 id=&quot;testing&quot;&gt;Testing&lt;/h2&gt;
+</description>
+        <pubDate>Tue, 05 Sep 2017 00:00:00 -0400</pubDate>
+        <link>https://accumulo.apache.org/release/accumulo-2.0.0/</link>
+        <guid isPermaLink="true">https://accumulo.apache.org/release/accumulo-2.0.0/</guid>
+        
+        
+        <category>release</category>
+        
+      </item>
+    
+      <item>
         <title>Accumulo Summit is on October 16th!</title>
         <description>&lt;p&gt;&lt;a href=&quot;http://accumulosummit.com/&quot;&gt;&lt;img src=&quot;/images/accumulo-summit-2017-logo-horizontal.png&quot; alt=&quot;Accumulo Summit&quot; width=&quot;400px&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
 
@@ -1349,180 +1368,5 @@ Commands:
         
       </item>
     
-      <item>
-        <title>Durability Performance Implications</title>
-        <description>&lt;h2 id=&quot;overview&quot;&gt;Overview&lt;/h2&gt;
-
-&lt;p&gt;Accumulo stores recently written data in a sorted in memory map.  Before data is
-added to this map, it’s written to an unsorted write ahead log(WAL).  In the
-case when a tablet server dies, the recently written data is recovered from the
-WAL.&lt;/p&gt;
-
-&lt;p&gt;When data is written to Accumulo the following happens :&lt;/p&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;Client sends a batch of mutations to a tablet server&lt;/li&gt;
-  &lt;li&gt;Tablet server does the following :
-    &lt;ul&gt;
-      &lt;li&gt;Writes mutation to tablet servers’ WAL&lt;/li&gt;
-      &lt;li&gt;Sync or flush tablet servers’ WAL&lt;/li&gt;
-      &lt;li&gt;Adds mutations to sorted in memory map of each tablet.&lt;/li&gt;
-      &lt;li&gt;Reports success back to client.&lt;/li&gt;
-    &lt;/ul&gt;
-  &lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;The sync/flush step above moves data written to the WAL from memory to disk.
-Write ahead logs are stored in HDFS. HDFS supports two ways of forcing data to
-disk for an open file : &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; and &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt;.&lt;/p&gt;
-
-&lt;h2 id=&quot;hdfs-syncflush-details&quot;&gt;HDFS Sync/Flush Details&lt;/h2&gt;
-
-&lt;p&gt;When &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt; is called on a WAL, it does not guarantee data is on disk.  It
-only guarantees that data is in OS buffers on each datanode and on its way to disk.
-As a result calls to &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt; are very fast.  If a WAL is replicated to 3 data
-nodes then data may be lost if all three machines reboot or die.  If the datanode
-process dies, then data loss will not happen because the data was in OS buffers
-waiting to be written to disk.  The machines have to reboot or die for data loss to
-occur.&lt;/p&gt;
-
-&lt;p&gt;In order to avoid data loss in the event of reboot, &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; can be called.  This
-will ensure data is written to disk on all datanodes before returning.  When
-using &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; for the WAL, if Accumulo reports success to a user it means the
-data is on disk.  However &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; is much slower than &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt; and the way it’s
-implemented exacerbates the problem.  For example &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt; make take 1ms and
-&lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; may take 50ms.  This difference will impact writes to Accumulo and can
-be mitigated in some situations with larger buffers in Accumulo.&lt;/p&gt;
-
-&lt;p&gt;HDFS keeps checksum data internally by default.  Datanodes store checksum data
-in a separate file in the local filesystem.  This means when &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; is called
-on a WAL, two files must be synced on each datanode.  Syncing two files doubles
-the time. To make matters even worse, when the two files are synced the local
-filesystem metadata is also synced.  Depending on the local filesystem and its
-configuration, syncing the metadata may or may not take time.  In the worst
-case, we need to wait for four sync operations at the local filesystem level on
-each datanode. One thing I am not sure about, is if these sync operations occur
-in parallel on the replicas on different datanodes.  If anyone can answer this
-question, please let us know on the &lt;a href=&quot;/mailing_list&quot;&gt;dev list&lt;/a&gt;. The following pointers show
-where sync occurs in the datanode code.&lt;/p&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;a href=&quot;https://github.com/apache/hadoop/blob/release-2.7.1/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/BlockReceiver.java#L358&quot;&gt;BlockReceiver.flushOrSync()&lt;/a&gt; calls &lt;a href=&quot;https://github.com/apache/hadoop/blob/release-2.7.1/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/ReplicaOutputStreams.java#L78&quot;&gt;ReplicaOutputStreams.syncDataOut()&lt;/a&gt; a [...]
-  &lt;li&gt;The methods in ReplicaOutputStreams call &lt;a href=&quot;https://docs.oracle.com/javase/8/docs/api/java/nio/channels/FileChannel.html#force-boolean-&quot;&gt;FileChannel.force(true)&lt;/a&gt; which
-synchronously flushes data and filesystem metadata.&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;If files were preallocated (this would avoid syncing local filesystem metadata)
-and checksums were stored in-line, then 1 sync could be done instead of 4.&lt;/p&gt;
-
-&lt;h2 id=&quot;configuring-wal-flushsync-in-accumulo-16&quot;&gt;Configuring WAL flush/sync in Accumulo 1.6&lt;/h2&gt;
-
-&lt;p&gt;Accumulo 1.6.0 only supported &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; and this caused &lt;a href=&quot;/release/accumulo-1.6.0#slower-writes-than-previous-accumulo-versions&quot;&gt;performance
-problems&lt;/a&gt;.  In order to offer better performance, the option to
-configure &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt; was &lt;a href=&quot;/release/accumulo-1.6.1#write-ahead-log-sync-implementation&quot;&gt;added in 1.6.1&lt;/a&gt;.  The
-&lt;a href=&quot;/1.6/accumulo_user_manual#_tserver_wal_sync_method&quot;&gt;tserver.wal.sync.method&lt;/a&gt; configuration option was added to support
-this feature.  This was a tablet server wide option that applied to everything
-written to any table.&lt;/p&gt;
-
-&lt;h2 id=&quot;group-commit&quot;&gt;Group Commit&lt;/h2&gt;
-
-&lt;p&gt;Each Accumulo tablet server has a single WAL.  When multiple clients send
-mutations to a tablet server at around the same time, the tablet sever may group
-all of this into a single WAL operation.  It will do this instead of writing and
-syncing or flushing each client’s mutations to the WAL separately.  Doing this
-increase throughput and lowers average latency for clients.&lt;/p&gt;
-
-&lt;h2 id=&quot;configuring-wal-flushsync-in-accumulo-17&quot;&gt;Configuring WAL flush/sync in Accumulo 1.7+&lt;/h2&gt;
-
-&lt;p&gt;Accumulo 1.7.0 introduced &lt;a href=&quot;/1.7/accumulo_user_manual#_table_durability&quot;&gt;table.durability&lt;/a&gt;, a new per table property
-for configuring durability.  It also stopped using the &lt;code class=&quot;highlighter-rouge&quot;&gt;tserver.wal.sync.method&lt;/code&gt;
-property.  The &lt;code class=&quot;highlighter-rouge&quot;&gt;table.durability&lt;/code&gt; property has the following four legal values.
-This property defaults to the most durable option which is &lt;code class=&quot;highlighter-rouge&quot;&gt;sync&lt;/code&gt;.&lt;/p&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;strong&gt;none&lt;/strong&gt; : Do not write to WAL&lt;/li&gt;
-  &lt;li&gt;&lt;strong&gt;log&lt;/strong&gt;  : Write to WAL, but do not sync&lt;/li&gt;
-  &lt;li&gt;&lt;strong&gt;flush&lt;/strong&gt; : Write to WAL and call &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;strong&gt;sync&lt;/strong&gt; : Write to WAL and call &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;If multiple writes arrive at around the same time with different durability
-settings, then the group commit code will choose the most durable.  This can
-cause one tables settings to slow down writes to another table.  Basically, one
-table that is set to &lt;code class=&quot;highlighter-rouge&quot;&gt;sync&lt;/code&gt; can impact the entire system.&lt;/p&gt;
-
-&lt;p&gt;In Accumulo 1.6, it was easy to make all writes use &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt; because there was
-only one tserver setting.  Getting everything to use &lt;code class=&quot;highlighter-rouge&quot;&gt;flush&lt;/code&gt; in 1.7 and later
-can be a little tricky because by default the Accumulo metadata table is set to
-use &lt;code class=&quot;highlighter-rouge&quot;&gt;sync&lt;/code&gt;.  The following shell commands show this. The first command sets
-&lt;code class=&quot;highlighter-rouge&quot;&gt;table.durability=flush&lt;/code&gt; as a system wide default for all tables.  However, the
-metadata table is still set to &lt;code class=&quot;highlighter-rouge&quot;&gt;sync&lt;/code&gt;, because it has a per table override for
-that setting.  This override is set when Accumulo is initialized.  To get this
-table to use &lt;code class=&quot;highlighter-rouge&quot;&gt;flush&lt;/code&gt;, the per table override must be deleted.  After deleting
-those properties, the metadata tables will inherit the system wide setting.&lt;/p&gt;
-
-&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;root@uno&amp;gt; config -s table.durability=flush
-root@uno&amp;gt; createtable foo
-root@uno foo&amp;gt; config -t foo -f table.durability
------------+---------------------+----------------------------------------------
-SCOPE      | NAME                | VALUE
------------+---------------------+----------------------------------------------
-default    | table.durability .. | sync
-system     |    @override ...... | flush
------------+---------------------+----------------------------------------------
-root@uno&amp;gt; config -t accumulo.metadata -f table.durability
------------+---------------------+----------------------------------------------
-SCOPE      | NAME                | VALUE
------------+---------------------+----------------------------------------------
-default    | table.durability .. | sync
-system     |    @override ...... | flush
-table      |    @override ...... | sync
------------+---------------------+----------------------------------------------
-root@uno&amp;gt; config -t accumulo.metadata -d table.durability
-root@uno&amp;gt; config -t accumulo.metadata -f table.durability
------------+---------------------+----------------------------------------------
-SCOPE      | NAME                | VALUE
------------+---------------------+----------------------------------------------
-default    | table.durability .. | sync
-system     |    @override ...... | flush
------------+---------------------+----------------------------------------------
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/div&gt;
-
-&lt;p&gt;In short, executing the following commands will make all writes use &lt;code class=&quot;highlighter-rouge&quot;&gt;flush&lt;/code&gt;
-(assuming no other tables or namespaces have been specifically set to &lt;code class=&quot;highlighter-rouge&quot;&gt;sync&lt;/code&gt;).&lt;/p&gt;
-
-&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;config -s table.durability=flush
-config -t accumulo.metadata -d table.durability
-config -t accumulo.root -d table.durability
-&lt;/code&gt;&lt;/pre&gt;
-&lt;/div&gt;
-
-&lt;p&gt;Even with these settings adjusted, minor compactions could still force &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt;
-to be called in 1.7.0 and 1.7.1.  This was fixed in 1.7.2 and 1.8.0.  See the
-&lt;a href=&quot;/release/accumulo-1.7.2#minor-performance-improvements&quot;&gt;1.7.2 release notes&lt;/a&gt; and &lt;a href=&quot;https://issues.apache.org/jira/browse/ACCUMULO-4112&quot;&gt;ACCUMULO-4112&lt;/a&gt; for more details.&lt;/p&gt;
-
-&lt;p&gt;In addition to the per table durability setting, a per batch writer durability
-setting was also added in 1.7.0.  See
-&lt;a href=&quot;/1.8/apidocs/org/apache/accumulo/core/client/BatchWriterConfig.html#setDurability(org.apache.accumulo.core.client.Durability)&quot;&gt;BatchWriterConfig.setDurability(…)&lt;/a&gt;.  This means any client could
-potentially cause a &lt;code class=&quot;highlighter-rouge&quot;&gt;hsync&lt;/code&gt; operation to occur, even if the system is
-configured to use &lt;code class=&quot;highlighter-rouge&quot;&gt;hflush&lt;/code&gt;.&lt;/p&gt;
-
-&lt;h2 id=&quot;improving-the-situation&quot;&gt;Improving the situation&lt;/h2&gt;
-
-&lt;p&gt;The more granular durability settings introduced in 1.7.0 can cause some
-unexpected problems.  &lt;a href=&quot;https://issues.apache.org/jira/browse/ACCUMULO-4146&quot;&gt;ACCUMULO-4146&lt;/a&gt; suggests one possible way to solve these
-problems with Per-durability write ahead logs.&lt;/p&gt;
-
-</description>
-        <pubDate>Wed, 02 Nov 2016 13:00:00 -0400</pubDate>
-        <link>https://accumulo.apache.org/blog/2016/11/02/durability-performance.html</link>
-        <guid isPermaLink="true">https://accumulo.apache.org/blog/2016/11/02/durability-performance.html</guid>
-        
-        
-        <category>blog</category>
-        
-      </item>
-    
   </channel>
 </rss>
diff --git a/index.html b/index.html
index 5484155..25b68f8 100644
--- a/index.html
+++ b/index.html
@@ -189,6 +189,13 @@
         
         <div class="row latest-news-item">
           <div class="col-sm-12" style="margin-bottom: 5px">
+           <span style="font-size: 12px; margin-right: 5px;">Sep 2017</span>
+           <a href="/release/accumulo-2.0.0/">Apache Accumulo 2.0.0</a>
+          </div>
+        </div>
+        
+        <div class="row latest-news-item">
+          <div class="col-sm-12" style="margin-bottom: 5px">
            <span style="font-size: 12px; margin-right: 5px;">Jul 2017</span>
            <a href="/blog/2017/07/27/accumulo-summmit-on-october-16.html">Accumulo Summit is on October 16th!</a>
           </div>
@@ -215,13 +222,6 @@
           </div>
         </div>
         
-        <div class="row latest-news-item">
-          <div class="col-sm-12" style="margin-bottom: 5px">
-           <span style="font-size: 12px; margin-right: 5px;">Mar 2017</span>
-           <a href="/blog/2017/03/21/happy-anniversary-accumulo.html">Happy Anniversary Accumulo</a>
-          </div>
-        </div>
-        
         <div id="news-archive-link">
          <p>View all posts in the <a href="/news">news archive</a></p>
         </div>
diff --git a/news/index.html b/news/index.html
index 951fd77..ae2afa3 100644
--- a/news/index.html
+++ b/news/index.html
@@ -155,6 +155,13 @@
   
   
   <div class="row" style="margin-top: 15px">
+    <div class="col-md-1">Sep 05</div>
+    <div class="col-md-10"><a href="/release/accumulo-2.0.0/">Apache Accumulo 2.0.0</a></div>
+  </div>
+
+  
+  
+  <div class="row" style="margin-top: 15px">
     <div class="col-md-1">Jul 27</div>
     <div class="col-md-10"><a href="/blog/2017/07/27/accumulo-summmit-on-october-16.html">Accumulo Summit is on October 16th!</a></div>
   </div>
diff --git a/release/accumulo-1.5.1/index.html b/release/accumulo-1.5.1/index.html
index 1b1d5d1..f00819a 100644
--- a/release/accumulo-1.5.1/index.html
+++ b/release/accumulo-1.5.1/index.html
@@ -150,6 +150,8 @@
           
           <p>06 Mar 2014</p>
 
+
+
 <p>Apache Accumulo 1.5.1 is a maintenance release on the 1.5 version branch.
 This release contains changes from over 200 issues, comprised of bug fixes
 (client side and server side), new test cases, and updated Hadoop support
diff --git a/release/accumulo-1.5.2/index.html b/release/accumulo-1.5.2/index.html
index 19401b4..72739d1 100644
--- a/release/accumulo-1.5.2/index.html
+++ b/release/accumulo-1.5.2/index.html
@@ -150,6 +150,8 @@
           
           <p>19 Sep 2015</p>
 
+
+
 <p>Apache Accumulo 1.5.2 is a maintenance release on the 1.5 version branch.
 This release contains changes from over 100 issues, comprised of bug fixes
 (client side and server side), new test cases, and updated Hadoop support
diff --git a/release/accumulo-1.5.3/index.html b/release/accumulo-1.5.3/index.html
index e04ef70..bd96904 100644
--- a/release/accumulo-1.5.3/index.html
+++ b/release/accumulo-1.5.3/index.html
@@ -150,6 +150,8 @@
           
           <p>25 Jun 2015</p>
 
+
+
 <p>Apache Accumulo 1.5.3 is a bug-fix release for the 1.5 series. It is likely to be the last
 1.5 release, with development shifting towards newer release lines. We recommend upgrading
 to a newer version to continue to get bug fixes and new features.</p>
diff --git a/release/accumulo-1.5.4/index.html b/release/accumulo-1.5.4/index.html
index 9017420..6e038d1 100644
--- a/release/accumulo-1.5.4/index.html
+++ b/release/accumulo-1.5.4/index.html
@@ -150,6 +150,8 @@
           
           <p>21 Sep 2015</p>
 
+
+
 <p>Apache Accumulo 1.5.4 is one more bug-fix release for the 1.5 series. Like 1.5.3 before it, this release contains a
 very small changeset when considering the normal size of changes in a release.</p>
 
diff --git a/release/accumulo-1.6.0/index.html b/release/accumulo-1.6.0/index.html
index 761b9ea..e78c92f 100644
--- a/release/accumulo-1.6.0/index.html
+++ b/release/accumulo-1.6.0/index.html
@@ -150,6 +150,8 @@
           
           <p>02 May 2014</p>
 
+
+
 <p>Apache Accumulo 1.6.0 adds some major new features and fixes many bugs.  This release contains changes from 609 issues contributed by 36 contributors and committers.</p>
 
 <p>Below are resources for this release:</p>
diff --git a/release/accumulo-1.6.1/index.html b/release/accumulo-1.6.1/index.html
index e9a7f74..8f6f9f7 100644
--- a/release/accumulo-1.6.1/index.html
+++ b/release/accumulo-1.6.1/index.html
@@ -150,6 +150,8 @@
           
           <p>25 Sep 2014</p>
 
+
+
 <p>Apache Accumulo 1.6.1 is a maintenance release on the 1.6 version branch.
 This release contains changes from over 175 issues, comprised of bug-fixes, performance
 improvements and better test cases.</p>
diff --git a/release/accumulo-1.6.2/index.html b/release/accumulo-1.6.2/index.html
index 9d20de0..6334d9d 100644
--- a/release/accumulo-1.6.2/index.html
+++ b/release/accumulo-1.6.2/index.html
@@ -150,6 +150,8 @@
           
           <p>16 Feb 2015</p>
 
+
+
 <p>Apache Accumulo 1.6.2 is a maintenance release on the 1.6 version branch.
 This release contains changes from over 150 issues, comprised of bug-fixes, performance
 improvements and better test cases. Apache Accumulo 1.6.2 is the first release since the
diff --git a/release/accumulo-1.6.3/index.html b/release/accumulo-1.6.3/index.html
index 6d293b6..9b5edf8 100644
--- a/release/accumulo-1.6.3/index.html
+++ b/release/accumulo-1.6.3/index.html
@@ -150,6 +150,8 @@
           
           <p>04 Jul 2015</p>
 
+
+
 <p>Apache Accumulo 1.6.3 is a maintenance release on the 1.6 version branch.
 This release contains changes from over 63 issues, comprised of bug-fixes,
 performance improvements and better test cases. See <a href="https://issues.apache.org/jira/browse/ACCUMULO/fixforversion/12329154">JIRA</a> for a
diff --git a/release/accumulo-1.6.4/index.html b/release/accumulo-1.6.4/index.html
index 7470f0e..ec7c83f 100644
--- a/release/accumulo-1.6.4/index.html
+++ b/release/accumulo-1.6.4/index.html
@@ -150,6 +150,8 @@
           
           <p>03 Oct 2015</p>
 
+
+
 <p>Apache Accumulo 1.6.4 is a maintenance release on the 1.6 version branch.
 This release contains changes from 21 issues, comprised of bug-fixes,
 performance improvements and better test cases. See <a href="https://issues.apache.org/jira/browse/ACCUMULO/fixforversion/12332840">JIRA</a> for a
diff --git a/release/accumulo-1.6.5/index.html b/release/accumulo-1.6.5/index.html
index 9e80c58..6e42272 100644
--- a/release/accumulo-1.6.5/index.html
+++ b/release/accumulo-1.6.5/index.html
@@ -150,6 +150,8 @@
           
           <p>17 Feb 2016</p>
 
+
+
 <p>Apache Accumulo 1.6.5 is a maintenance release on the 1.6 version branch. This
 release contains changes from 55 issues, comprised of bug-fixes, performance
 improvements, build quality improvements, and more. See <a href="https://issues.apache.org/jira/browse/ACCUMULO/fixforversion/12333674">JIRA</a> for a
diff --git a/release/accumulo-1.6.6/index.html b/release/accumulo-1.6.6/index.html
index 62d8417..6176db5 100644
--- a/release/accumulo-1.6.6/index.html
+++ b/release/accumulo-1.6.6/index.html
@@ -150,6 +150,8 @@
           
           <p>18 Sep 2016</p>
 
+
+
 <p>Apache Accumulo 1.6.6 is a maintenance release on the 1.6 version branch. This
 release contains changes from more than 40 issues, comprised of bug-fixes,
 performance improvements, build quality improvements, and more. See
diff --git a/release/accumulo-1.7.0/index.html b/release/accumulo-1.7.0/index.html
index 985ced4..3e94ee4 100644
--- a/release/accumulo-1.7.0/index.html
+++ b/release/accumulo-1.7.0/index.html
@@ -150,6 +150,8 @@
           
           <p>18 May 2015</p>
 
+
+
 <p>Apache Accumulo 1.7.0 is a significant release that includes many important
 milestone features which expand the functionality of Accumulo. These include
 features related to security, availability, and extensibility. Nearly 700 JIRA
diff --git a/release/accumulo-1.7.1/index.html b/release/accumulo-1.7.1/index.html
index dab5305..a045806 100644
--- a/release/accumulo-1.7.1/index.html
+++ b/release/accumulo-1.7.1/index.html
@@ -150,6 +150,8 @@
           
           <p>26 Feb 2016</p>
 
+
+
 <p>Apache Accumulo 1.7.1 is a maintenance release on the 1.7 version branch. This
 release contains changes from more than 150 issues, comprised of bug-fixes,
 performance improvements, build quality improvements, and more. See
diff --git a/release/accumulo-1.7.2/index.html b/release/accumulo-1.7.2/index.html
index a483fb8..727f5b6 100644
--- a/release/accumulo-1.7.2/index.html
+++ b/release/accumulo-1.7.2/index.html
@@ -150,6 +150,8 @@
           
           <p>22 Jun 2016</p>
 
+
+
 <p>Apache Accumulo 1.7.2 is a maintenance release on the 1.7 version branch. This
 release contains changes from more than 150 issues, comprised of bug-fixes,
 performance improvements, build quality improvements, and more. See
diff --git a/release/accumulo-1.7.3/index.html b/release/accumulo-1.7.3/index.html
index b5a766f..c799bf1 100644
--- a/release/accumulo-1.7.3/index.html
+++ b/release/accumulo-1.7.3/index.html
@@ -150,6 +150,8 @@
           
           <p>06 Apr 2017</p>
 
+
+
 <p>Apache Accumulo 1.7.3 is a maintenance release on the 1.7 version branch. This release contains changes from 79 issues, comprised of bug-fixes, 
 performance improvements, build quality improvements, and more. See<br />
 <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12312121&amp;version=12335841">JIRA</a> for a complete list.</p>
diff --git a/release/accumulo-1.8.0/index.html b/release/accumulo-1.8.0/index.html
index 8b0a5e8..cd7627a 100644
--- a/release/accumulo-1.8.0/index.html
+++ b/release/accumulo-1.8.0/index.html
@@ -150,6 +150,8 @@
           
           <p>06 Sep 2016</p>
 
+
+
 <p>Apache Accumulo 1.8.0 is a significant release that includes many important
 milestone features which expand the functionality of Accumulo. These include
 features related to security, availability, and extensibility. Over
diff --git a/release/accumulo-1.8.1/index.html b/release/accumulo-1.8.1/index.html
index 388cd38..ad53a1e 100644
--- a/release/accumulo-1.8.1/index.html
+++ b/release/accumulo-1.8.1/index.html
@@ -150,6 +150,8 @@
           
           <p>26 Feb 2017</p>
 
+
+
 <p>Apache Accumulo 1.8.1 is a maintenance release on the 1.8 version branch. This
 release contains changes from more then 40 issues, comprised of bug-fixes,
 performance improvements, build quality improvements, and more. See
diff --git a/release/index.html b/release/accumulo-2.0.0/index.html
similarity index 67%
copy from release/index.html
copy to release/accumulo-2.0.0/index.html
index 72d2219..988d554 100644
--- a/release/index.html
+++ b/release/accumulo-2.0.0/index.html
@@ -25,7 +25,7 @@
 <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs/jq-2.2.3/dt-1.10.12/datatables.min.css">
 <link href="/css/accumulo.css" rel="stylesheet" type="text/css">
 
-<title>Release Archive</title>
+<title>Apache Accumulo 2.0.0</title>
 
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
@@ -146,145 +146,24 @@
         </div>
         <div id="content">
           
-          <h1 class="title">Release Archive</h1>
+          <h1 class="title">Apache Accumulo 2.0.0</h1>
           
-          <div>
-<hr />
+          <p>05 Sep 2017</p>
 
-<h3>2017</h3>
 
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Apr 06</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.7.3/">Apache Accumulo 1.7.3</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Feb 26</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.8.1/">Apache Accumulo 1.8.1</a></div>
-  </div>
-
-  
-  
-    
-    <hr />
-    <h3>2016</h3>
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Sep 18</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.6.6/">Apache Accumulo 1.6.6</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Sep 06</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.8.0/">Apache Accumulo 1.8.0</a></div>
-  </div>
+<div class="alert alert-danger" style="margin-bottom: 0px;" role="alert">These are draft release notes for a future release of Accumulo! <a href="/release/accumulo-1.8.1/">View the latest release notes</a>.</div>
 
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Jun 22</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.7.2/">Apache Accumulo 1.7.2</a></div>
-  </div>
 
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Feb 26</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.7.1/">Apache Accumulo 1.7.1</a></div>
-  </div>
+<h2 id="major-changes">Major Changes</h2>
 
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Feb 17</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.6.5/">Apache Accumulo 1.6.5</a></div>
-  </div>
+<h2 id="other-notable-changes">Other Notable Changes</h2>
 
-  
-  
-    
-    <hr />
-    <h3>2015</h3>
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Oct 03</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.6.4/">Apache Accumulo 1.6.4</a></div>
-  </div>
+<h2 id="upgrading">Upgrading</h2>
 
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Sep 21</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.5.4/">Apache Accumulo 1.5.4</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Sep 19</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.5.2/">Apache Accumulo 1.5.2</a></div>
-  </div>
+<h2 id="testing">Testing</h2>
 
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Jul 04</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.6.3/">Apache Accumulo 1.6.3</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Jun 25</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.5.3/">Apache Accumulo 1.5.3</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">May 18</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.7.0/">Apache Accumulo 1.7.0</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Feb 16</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.6.2/">Apache Accumulo 1.6.2</a></div>
-  </div>
-
-  
-  
-    
-    <hr />
-    <h3>2014</h3>
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Sep 25</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.6.1/">Apache Accumulo 1.6.1</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">May 02</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.6.0/">Apache Accumulo 1.6.0</a></div>
-  </div>
-
-  
-  
-  <div class="row" style="margin-top: 15px">
-    <div class="col-md-1">Mar 06</div>
-    <div class="col-md-10"><a href="/release/accumulo-1.5.1/">Apache Accumulo 1.5.1</a></div>
-  </div>
 
-</div>
+<p><strong>View all releases in the <a href="/release/">archive</a></strong></p>
 
         </div>
 
diff --git a/release/index.html b/release/index.html
index 72d2219..2d86807 100644
--- a/release/index.html
+++ b/release/index.html
@@ -156,6 +156,13 @@
   
   
   <div class="row" style="margin-top: 15px">
+    <div class="col-md-1">Sep 05</div>
+    <div class="col-md-10"><a href="/release/accumulo-2.0.0/">Apache Accumulo 2.0.0</a></div>
+  </div>
+
+  
+  
+  <div class="row" style="margin-top: 15px">
     <div class="col-md-1">Apr 06</div>
     <div class="col-md-10"><a href="/release/accumulo-1.7.3/">Apache Accumulo 1.7.3</a></div>
   </div>

-- 
To stop receiving notification emails like this one, please contact
['"commits@accumulo.apache.org" <co...@accumulo.apache.org>'].