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 7803B114BE for ; Fri, 23 May 2014 20:32:41 +0000 (UTC) Received: (qmail 45733 invoked by uid 500); 23 May 2014 20:32:41 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 45617 invoked by uid 500); 23 May 2014 20:32:41 -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 45606 invoked by uid 99); 23 May 2014 20:32:41 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 May 2014 20:32:41 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id EBA829A32B5; Fri, 23 May 2014 20:32:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Fri, 23 May 2014 20:32:41 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/6] git commit: ACCUMULO-2842 Mention hflush as an alternative configuration for the property ACCUMULO-2842 Mention hflush as an alternative configuration for the property Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/2526f0a2 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/2526f0a2 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/2526f0a2 Branch: refs/heads/1.6.1-SNAPSHOT Commit: 2526f0a2cc2d1dca63483b614e938fcb1ddd7f35 Parents: f654e7f Author: Josh Elser Authored: Fri May 23 16:25:38 2014 -0400 Committer: Josh Elser Committed: Fri May 23 16:25:38 2014 -0400 ---------------------------------------------------------------------- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/2526f0a2/core/src/main/java/org/apache/accumulo/core/conf/Property.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index 3d82046..d8f9beb 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -206,7 +206,8 @@ public enum Property { "Use the SYNC_BLOCK create flag to sync WAL writes to disk. Prevents problems recovering from sudden system resets."), TSERV_WAL_SYNC_METHOD("tserver.wal.sync.method", "hsync", PropertyType.STRING, "The method to invoke when sync'ing WALs. HSync will provide " + "resiliency in the face of unexpected power outages, at the cost of speed. If method is not available, the legacy 'sync' method " + - "will be used to ensure backwards compatibility with older Hadoop versions"), + "will be used to ensure backwards compatibility with older Hadoop versions. A value of 'hflush' is the alternative to the default value " + + "of 'hsync' which will result in faster writes, but with less durability"), // properties that are specific to logger server behavior LOGGER_PREFIX("logger.", null, PropertyType.PREFIX, "Properties in this category affect the behavior of the write-ahead logger servers"),