Return-Path: X-Original-To: apmail-accumulo-notifications-archive@minotaur.apache.org Delivered-To: apmail-accumulo-notifications-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7D4E9107FD for ; Fri, 10 Jan 2014 23:38:50 +0000 (UTC) Received: (qmail 80655 invoked by uid 500); 10 Jan 2014 23:38:50 -0000 Delivered-To: apmail-accumulo-notifications-archive@accumulo.apache.org Received: (qmail 80574 invoked by uid 500); 10 Jan 2014 23:38:50 -0000 Mailing-List: contact notifications-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jira@apache.org Delivered-To: mailing list notifications@accumulo.apache.org Received: (qmail 80565 invoked by uid 99); 10 Jan 2014 23:38:50 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Jan 2014 23:38:50 +0000 Date: Fri, 10 Jan 2014 23:38:50 +0000 (UTC) From: "Josh Elser (JIRA)" To: notifications@accumulo.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (ACCUMULO-1493) documentation clarification for MapR MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/ACCUMULO-1493?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Josh Elser updated ACCUMULO-1493: --------------------------------- Fix Version/s: (was: 1.5.1) (was: 1.6.0) > documentation clarification for MapR > ------------------------------------ > > Key: ACCUMULO-1493 > URL: https://issues.apache.org/jira/browse/ACCUMULO-1493 > Project: Accumulo > Issue Type: Improvement > Components: docs > Affects Versions: 1.5.0 > Environment: MapR 2.1.1 > Reporter: Keys Botzum > Priority: Minor > Labels: Documentation > > When testing Accumulo with MapR we encountered a few minor issues that should be addressable via documentation. They are: > 1) Accumulo 1.5 requires these jar files: > commons-configuration-1.6.jar > commons-collections-3.2.1.jar > commons-io-2.1.jar > They are not part of the MapR distribution and do not appear to be part of the standard Hadoop distribution either. These dependencies should be documented. > 2) MapR has the requirement that the block/chunk size be a multiple of 64K. As a result the default Accumulo algorithm for defining the WAL block size does not work with MapR. This should be documented. In more detail... > By default, the property tserver.wal.blocksize is 0, in which case Accumlo sets it to 1.1 * tserver.walog.max.size, which defaults to 512M. This results in a MapR chunksize that is not a multiple of 64k, which means any writes to the WAL will fail. So in accumulo-site.xml, set tserver.wal.blocksize to a multiple of 64K (such as 562M, which is about 1.1 times the WAL max. Insert these lines: > > tserver.wal.blocksize > 562M > > 3) Need to document the Accumulo log sync mechanism for MapR. Accumulo 1.5 changed the way the WAL is sync'ed and now uses the distributed file system. A filesystem-specific property is needed to specify the class for MapR. Add this to accumulo-site.xml: > > master.walog.closer.implementation > org.apache.accumulo.server.master.recovery.MapRLogCloser > -- This message was sent by Atlassian JIRA (v6.1.5#6160)