You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/10/03 23:28:47 UTC

svn commit: r1706636 - in /accumulo/site/trunk: content/extpaths.txt content/release_notes/1.6.4.mdtext templates/nav.html templates/skeleton.html

Author: elserj
Date: Sat Oct  3 21:28:47 2015
New Revision: 1706636

URL: http://svn.apache.org/viewvc?rev=1706636&view=rev
Log:
Add 1.6.4 release notes, update pointers from 1.6.3 to 1.6.4

(actually committed extpaths changes, apparently I missed them last time?)

Added:
    accumulo/site/trunk/content/release_notes/1.6.4.mdtext
Modified:
    accumulo/site/trunk/content/extpaths.txt
    accumulo/site/trunk/templates/nav.html
    accumulo/site/trunk/templates/skeleton.html

Modified: accumulo/site/trunk/content/extpaths.txt
URL: http://svn.apache.org/viewvc/accumulo/site/trunk/content/extpaths.txt?rev=1706636&r1=1706635&r2=1706636&view=diff
==============================================================================
--- accumulo/site/trunk/content/extpaths.txt (original)
+++ accumulo/site/trunk/content/extpaths.txt Sat Oct  3 21:28:47 2015
@@ -1,4 +1,3 @@
 1.4/apidocs
 1.5/apidocs
-1.6/apidocs
 1.7/apidocs

Added: accumulo/site/trunk/content/release_notes/1.6.4.mdtext
URL: http://svn.apache.org/viewvc/accumulo/site/trunk/content/release_notes/1.6.4.mdtext?rev=1706636&view=auto
==============================================================================
--- accumulo/site/trunk/content/release_notes/1.6.4.mdtext (added)
+++ accumulo/site/trunk/content/release_notes/1.6.4.mdtext Sat Oct  3 21:28:47 2015
@@ -0,0 +1,97 @@
+Title:     Apache Accumulo 1.6.4 Release Notes
+Notice:    Licensed to the Apache Software Foundation (ASF) under one
+           or more contributor license agreements.  See the NOTICE file
+           distributed with this work for additional information
+           regarding copyright ownership.  The ASF licenses this file
+           to you 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.
+
+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 [JIRA][JIRA_164] for a
+complete list.
+
+Users of any previous 1.6.x release are strongly encouraged to update as soon as
+possible to benefit from the improvements with very little concern in change
+of underlying functionality. Users of 1.4 or 1.5 that are seeking to upgrade
+to 1.6 should consider 1.6.4 as a starting point.
+
+## Silent data-loss via bulk imported files
+
+A user recently reported that a simple bulk-import application would occasionally
+lose some records. Through investigation, it was found that when bulk imports into
+a table failed the initial assignment, the logic that automatically retries the
+imports was incorrectly choosing the tablets to import the files into. [ACCUMULO-3967][ACCUMULO-3967]
+contains more information on the cause and identification of the bug. The data-loss
+condition would only affect entire files. If records from a file exist in Accumulo,
+it is still guaranteed that all records within that imported file were successful.
+
+As such, users who have bulk import applications using previous versions of Accumulo
+should verify that all of their data was correctly ingested into Accumulo and
+immediately update to Accumulo 1.6.4.
+
+## Other bug fixes
+
+ * [ACCUMULO-3979][ACCUMULO-3979] Fixed an issue where the BulkImporter failed
+   with an error message "QUERY_METADATA already started".
+ * [ACCUMULO-3965][ACCUMULO-3965] The `listscans` shell command did not contain
+   the `scanId` attribute for currently running scans.
+ * [ACCUMULO-3946][ACCUMULO-3946] Verified that all user-facing operations contained
+   appropriate audit messages.
+ * [ACCUMULO-3977][ACCUMULO-3977] Isolated scans with Iterators in use incorrectly
+   fail around invocation of `deepCopy`.
+ * [ACCUMULO-3905][ACCUMULO-3905] RowDeletingIterator functions incorrectly when
+   columns are provided by the client. This restores intended functionality without
+	 the need for a [workaround][3905-workaround].
+ * [ACCUMULO-3959][ACCUMULO-3959] [ACCUMULO-3934][ACCUMULO-3934] Multiple documentation
+   improvements to `BatchScanner`.
+
+## Testing
+
+Each unit and functional test only runs on a single node, while the RandomWalk
+and Continuous Ingest tests run on any number of nodes. *Agitation* refers to
+randomly restarting Accumulo processes and Hadoop Datanode processes, and, in
+HDFS High-Availability instances, forcing NameNode failover.
+
+<table id="release_notes_testing">
+  <tr>
+    <th>OS</th>
+    <th>Hadoop</th>
+    <th>Nodes</th>
+    <th>ZooKeeper</th>
+    <th>HDFS High-Availability</th>
+    <th>Tests</th>
+  </tr>
+  <tr>
+    <td>(TBD Keith) Amazon Linux 2014.09</td>
+    <td>2.6.0</td>
+    <td>20</td>
+    <td>3.4.5</td>
+    <td>No</td>
+    <td>ContinuousIngest w/ verification w/ and w/o agitation</td>
+  </tr>
+</table>
+
+
+[ACCUMULO-3979]: https://issues.apache.org/jira/browse/ACCUMULO-3979
+[ACCUMULO-3965]: https://issues.apache.org/jira/browse/ACCUMULO-3965
+[ACCUMULO-3946]: https://issues.apache.org/jira/browse/ACCUMULO-3946
+[ACCUMULO-3977]: https://issues.apache.org/jira/browse/ACCUMULO-3977
+[ACCUMULO-3905]: https://issues.apache.org/jira/browse/ACCUMULO-3905
+[3905-workaround]: https://issues.apache.org/jira/browse/ACCUMULO-1801?focusedCommentId=13970204&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13970204
+[ACCUMULO-3959]: https://issues.apache.org/jira/browse/ACCUMULO-3959
+[ACCUMULO-3934]: https://issues.apache.org/jira/browse/ACCUMULO-3934
+[ACCUMULO-3967]: https://issues.apache.org/jira/browse/ACCUMULO-3967
+
+
+[JIRA_164]: https://issues.apache.org/jira/browse/ACCUMULO/fixforversion/12332840

Modified: accumulo/site/trunk/templates/nav.html
URL: http://svn.apache.org/viewvc/accumulo/site/trunk/templates/nav.html?rev=1706636&r1=1706635&r2=1706636&view=diff
==============================================================================
--- accumulo/site/trunk/templates/nav.html (original)
+++ accumulo/site/trunk/templates/nav.html Sat Oct  3 21:28:47 2015
@@ -89,7 +89,7 @@
 	  <a class="dropdown-toggle" data-toggle="dropdown" href="#">Release Notes <span class="caret"></span></a>
       <ul class="dropdown-menu">
 		  <li><a href="/release_notes/1.7.0.html">1.7.0</a></li>
-		  <li><a href="/release_notes/1.6.3.html">1.6.3</a></li>
+		  <li><a href="/release_notes/1.6.4.html">1.6.4</a></li>
 		  <li><a href="/release_notes/1.5.4.html">1.5.4</a></li>
           <li class="divider"></li>
 		  <li><a href="/release_notes/">Archives</a></li>

Modified: accumulo/site/trunk/templates/skeleton.html
URL: http://svn.apache.org/viewvc/accumulo/site/trunk/templates/skeleton.html?rev=1706636&r1=1706635&r2=1706636&view=diff
==============================================================================
--- accumulo/site/trunk/templates/skeleton.html (original)
+++ accumulo/site/trunk/templates/skeleton.html Sat Oct  3 21:28:47 2015
@@ -61,7 +61,7 @@
     <a href="/index.html"><img id="logo" alt="Apache Accumulo &trade;" class="img-responsive" src="/images/accumulo-logo.png"/></a>
 	  <br />
 Latest 1.7 release: <strong>1.7.0</strong><br />
-Latest 1.6 release: <strong>1.6.3</strong><br />
+Latest 1.6 release: <strong>1.6.4</strong><br />
 Latest 1.5 release: <strong>1.5.4</strong><br />
       <br>
     <a id="download-button-sidebar" class="btn btn-success btn-block" href="/downloads/" role="button">Download</a>