Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 962E610D7C for ; Thu, 6 Mar 2014 17:51:37 +0000 (UTC) Received: (qmail 89269 invoked by uid 500); 6 Mar 2014 17:51:37 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 89158 invoked by uid 500); 6 Mar 2014 17:51:35 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 89135 invoked by uid 500); 6 Mar 2014 17:51:32 -0000 Delivered-To: apmail-incubator-accumulo-commits@incubator.apache.org Received: (qmail 89127 invoked by uid 99); 6 Mar 2014 17:51:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Mar 2014 17:51:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Mar 2014 17:51:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9C6AC238890D for ; Thu, 6 Mar 2014 17:51:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r900317 - in /websites/staging/accumulo/trunk/content: ./ release_notes/ release_notes/1.5.1_release_notes.md Date: Thu, 06 Mar 2014 17:51:09 -0000 To: accumulo-commits@incubator.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140306175109.9C6AC238890D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: buildbot Date: Thu Mar 6 17:51:09 2014 New Revision: 900317 Log: Staging update by buildbot for accumulo Added: websites/staging/accumulo/trunk/content/release_notes/ websites/staging/accumulo/trunk/content/release_notes/1.5.1_release_notes.md Modified: websites/staging/accumulo/trunk/content/ (props changed) Propchange: websites/staging/accumulo/trunk/content/ ------------------------------------------------------------------------------ --- cms:source-revision (original) +++ cms:source-revision Thu Mar 6 17:51:09 2014 @@ -1 +1 @@ -1574955 +1574979 Added: websites/staging/accumulo/trunk/content/release_notes/1.5.1_release_notes.md ============================================================================== --- websites/staging/accumulo/trunk/content/release_notes/1.5.1_release_notes.md (added) +++ websites/staging/accumulo/trunk/content/release_notes/1.5.1_release_notes.md Thu Mar 6 17:51:09 2014 @@ -0,0 +1,89 @@ +Title: Apache Accumulo 1.5.1 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. + +## Accumulo 1.5.1 Release Notes (Work in progress) + + +### Notable Improvements + +Accumulo client code creates background threads that users can not stop. This +causes problems when using Accumulo with Tomcat or JBoss. [ACCUMULO-2128][3] +introduced the static utility org.apache.accumulo.core.util.CleanUp to clean +these threads up. + +If IPv6 is enabled on nodes but not in use on the network, then Accumulo may +have issues communicating with itself. [ACCUMULO-2262][4] adds java +configuration to startup scripts to prefer IPv4. + +[ACCUMULO-1933][7] allows lower case memory units in Accumulo configuration. + +[ACCUMULO-2360][14] allows users to configure the maximum frame size an +Accumulo server will read. This prevents non Accumulo client from connecting +and causing memory exhaustion. + +The following documentation updates were made : [ACCUMULO-2127][17], +[ACCUMULO-1956][18], and [ACCUMULO-1428][19]. + +### Notable Bug Fixes + + * [ACCUMULO-1800][5] fixed deletes made via the Proxy. + * [ACCUMULO-1994][6] fixed ranges in the Proxy. + * [ACCUMULO-2234][8] fixed offline map reduce over non default HDFS location + * [ACCUMULO-1615][15] fixed service accumulo-tserver stop + * [ACCUMULO-1876][16] fixed issues with ivy + +Some important internal bugs were fixed in Accumulo that should be considered +when deciding to upgrade. These bugs are : [ACCUMULO-2057][9], +[ACCUMULO-2261][10], [ACCUMULO-2037][11], [ACCUMULO-1821][12], +[ACCUMULO-1572][13], [ACCUMULO-2078][20], [ACCUMULO-1985][21], +[ACCUMULO-1999][22],[ACCUMULO-2065][23], and [ACCUMULO-1630][24]. + + +### Known Issues + +When using Accumulo 1.5 and Hadoop 2, Accumulo will call hsync() on hdfs. +Calling hsync improves durability by ensuring data is on disk, however calling +it frequently slows writes. A work around is to increase +tserver.mutation.queue.max. See [ACCUMULO-1905 comment][1], [ACCUMULO-1950][2], and +the new tserver.mutation.queue.max documentation for more information. + + +[1]: https://issues.apache.org/jira/browse/ACCUMULO-1905?focusedCommentId=13915208&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13915208 +[2]: https://issues.apache.org/jira/browse/ACCUMULO-1950 +[3]: https://issues.apache.org/jira/browse/ACCUMULO-2128 +[4]: https://issues.apache.org/jira/browse/ACCUMULO-2262 +[5]: https://issues.apache.org/jira/browse/ACCUMULO-1800 +[6]: https://issues.apache.org/jira/browse/ACCUMULO-1994 +[7]: https://issues.apache.org/jira/browse/ACCUMULO-1933 +[8]: https://issues.apache.org/jira/browse/ACCUMULO-2234 +[9]: https://issues.apache.org/jira/browse/ACCUMULO-2057 +[10]: https://issues.apache.org/jira/browse/ACCUMULO-2261 +[11]: https://issues.apache.org/jira/browse/ACCUMULO-2037 +[12]: https://issues.apache.org/jira/browse/ACCUMULO-1821 +[13]: https://issues.apache.org/jira/browse/ACCUMULO-1572 +[14]: https://issues.apache.org/jira/browse/ACCUMULO-2360 +[15]: https://issues.apache.org/jira/browse/ACCUMULO-1615 +[16]: https://issues.apache.org/jira/browse/ACCUMULO-1876 +[17]: https://issues.apache.org/jira/browse/ACCUMULO-2127 +[18]: https://issues.apache.org/jira/browse/ACCUMULO-1956 +[19]: https://issues.apache.org/jira/browse/ACCUMULO-1428 +[20]: https://issues.apache.org/jira/browse/ACCUMULO-2078 +[21]: https://issues.apache.org/jira/browse/ACCUMULO-1985 +[22]: https://issues.apache.org/jira/browse/ACCUMULO-1999 +[23]: https://issues.apache.org/jira/browse/ACCUMULO-2065 +[24]: https://issues.apache.org/jira/browse/ACCUMULO-1630 \ No newline at end of file