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 BB72ACC16 for ; Fri, 19 Dec 2014 06:37:25 +0000 (UTC) Received: (qmail 51083 invoked by uid 500); 19 Dec 2014 06:37:25 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 50977 invoked by uid 500); 19 Dec 2014 06:37:25 -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 50944 invoked by uid 99); 19 Dec 2014 06:37:25 -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, 19 Dec 2014 06:37:25 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5EB8AA313D5; Fri, 19 Dec 2014 06:37:25 +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, 19 Dec 2014 06:37:28 -0000 Message-Id: In-Reply-To: <8e28410c692a4766ae5cab3723291ad1@git.apache.org> References: <8e28410c692a4766ae5cab3723291ad1@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/5] accumulo git commit: ACCUMULO-3435 Use RawLocalFileSystem ACCUMULO-3435 Use RawLocalFileSystem Restarting the nodes and expecting recovery to actually working with the ChecksumFileSystem just ain't gonna happen. Checksum errors prevent recovery from happening which means the test can never finish. RawLocalFilesystem ensures that we have the necessary filesystem semantics for WALs. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/59238d04 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/59238d04 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/59238d04 Branch: refs/heads/1.6 Commit: 59238d046a39a859a28bc1a0ea79b8a93156e554 Parents: c558211 Author: Josh Elser Authored: Fri Dec 19 01:19:44 2014 -0500 Committer: Josh Elser Committed: Fri Dec 19 01:19:44 2014 -0500 ---------------------------------------------------------------------- .../org/apache/accumulo/test/functional/MetadataMaxFilesIT.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/59238d04/test/src/test/java/org/apache/accumulo/test/functional/MetadataMaxFilesIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/MetadataMaxFilesIT.java b/test/src/test/java/org/apache/accumulo/test/functional/MetadataMaxFilesIT.java index be03d1e..b0da8b6 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/MetadataMaxFilesIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/MetadataMaxFilesIT.java @@ -37,6 +37,7 @@ import org.apache.accumulo.harness.AccumuloClusterIT; import org.apache.accumulo.minicluster.impl.MiniAccumuloConfigImpl; import org.apache.accumulo.trace.instrument.Tracer; import org.apache.hadoop.conf.Configuration; +import org.apache.hadoop.fs.RawLocalFileSystem; import org.apache.hadoop.io.Text; import org.junit.After; import org.junit.Before; @@ -53,6 +54,7 @@ public class MetadataMaxFilesIT extends AccumuloClusterIT { siteConfig.put(Property.TSERV_MAJC_DELAY.getKey(), "1"); siteConfig.put(Property.TSERV_SCAN_MAX_OPENFILES.getKey(), "10"); cfg.setSiteConfig(siteConfig); + hadoopCoreSite.set("fs.file.impl", RawLocalFileSystem.class.getName()); } @Override