You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2014/03/14 17:56:22 UTC

[1/5] git commit: ACCUMULO-2475 recovery failed due to using the wrong filesystem

Repository: accumulo
Updated Branches:
  refs/heads/master 1a6873815 -> ea076646b


ACCUMULO-2475 recovery failed due to using the wrong filesystem


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/ae750622
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/ae750622
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/ae750622

Branch: refs/heads/master
Commit: ae750622c2baf4761afd9354540383f3b01ab6e2
Parents: 6dd1bd3
Author: Eric Newton <er...@gmail.com>
Authored: Fri Mar 14 12:55:32 2014 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Mar 14 12:55:32 2014 -0400

----------------------------------------------------------------------
 .../org/apache/accumulo/test/MasterRepairsDualAssignmentIT.java   | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/ae750622/test/src/test/java/org/apache/accumulo/test/MasterRepairsDualAssignmentIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/MasterRepairsDualAssignmentIT.java b/test/src/test/java/org/apache/accumulo/test/MasterRepairsDualAssignmentIT.java
index 86c5004..7cb1fe5 100644
--- a/test/src/test/java/org/apache/accumulo/test/MasterRepairsDualAssignmentIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/MasterRepairsDualAssignmentIT.java
@@ -46,6 +46,7 @@ import org.apache.accumulo.server.master.state.TabletLocationState;
 import org.apache.accumulo.test.functional.ConfigurableMacIT;
 import org.apache.accumulo.test.functional.FunctionalTestUtils;
 import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.RawLocalFileSystem;
 import org.apache.hadoop.io.Text;
 import org.junit.Test;
 
@@ -56,6 +57,8 @@ public class MasterRepairsDualAssignmentIT extends ConfigurableMacIT {
   public void configure(MiniAccumuloConfigImpl cfg, Configuration hadoopCoreSite) {
     cfg.setProperty(Property.INSTANCE_ZK_TIMEOUT, "5s");
     cfg.setProperty(Property.MASTER_RECOVERY_DELAY, "5s");
+    // use raw local file system so walogs sync and flush will work
+    hadoopCoreSite.set("fs.file.impl", RawLocalFileSystem.class.getName());
   }
 
   @Test(timeout = 5 * 60 * 1000)


[2/5] git commit: Merge branch '1.6.0-SNAPSHOT'

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT'


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/2610f66e
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/2610f66e
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/2610f66e

Branch: refs/heads/master
Commit: 2610f66e500ee0f4cd523842503ec66bf7e1cee3
Parents: 20375b6 ae75062
Author: Eric Newton <er...@gmail.com>
Authored: Fri Mar 14 12:55:47 2014 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Mar 14 12:55:47 2014 -0400

----------------------------------------------------------------------
 .../org/apache/accumulo/test/MasterRepairsDualAssignmentIT.java   | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------



[5/5] git commit: Merge branch '1.6.0-SNAPSHOT'

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT'


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/ea076646
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/ea076646
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/ea076646

Branch: refs/heads/master
Commit: ea076646bf03c18bc3ee61325be85dce307c61d7
Parents: 7f009d8 7c2a552
Author: Eric Newton <er...@gmail.com>
Authored: Fri Mar 14 12:56:31 2014 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Mar 14 12:56:31 2014 -0400

----------------------------------------------------------------------

----------------------------------------------------------------------



[4/5] git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/accumulo

Posted by ec...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/accumulo


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/7f009d84
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/7f009d84
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/7f009d84

Branch: refs/heads/master
Commit: 7f009d845725b19ad52ba2fadf8f93300fc0d3e8
Parents: 2610f66 1a68738
Author: Eric Newton <er...@gmail.com>
Authored: Fri Mar 14 12:56:23 2014 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Mar 14 12:56:23 2014 -0400

----------------------------------------------------------------------
 README                                          |   5 +-
 .../accumulo/core/data/ArrayByteSequence.java   |   7 +-
 .../apache/accumulo/core/data/KeyExtent.java    |   3 +-
 .../core/security/NamespacePermission.java      |   1 +
 .../core/data/ArrayByteSequenceTest.java        | 107 +++++++++
 .../accumulo/core/data/ByteSequenceTest.java    |  41 ++++
 .../apache/accumulo/core/data/ColumnTest.java   |  70 ++++--
 .../accumulo/core/data/KeyExtentTest.java       | 240 ++++++++++++++-----
 .../org/apache/accumulo/core/data/KeyTest.java  |  33 +++
 .../iterators/user/BigDecimalCombinerTest.java  |  91 +++++--
 .../core/iterators/user/CombinerTest.java       |   2 +-
 .../core/security/ColumnVisibilityTest.java     |  34 ++-
 .../core/security/NamespacePermissionsTest.java |  39 +++
 .../core/security/VisibilityConstraintTest.java | 106 ++++++++
 pom.xml                                         |   7 +
 .../tserver/TabletServerResourceManager.java    |  19 +-
 .../randomwalk/security/SecurityFixture.java    |   2 +
 17 files changed, 694 insertions(+), 113 deletions(-)
----------------------------------------------------------------------



[3/5] git commit: Merge branch '1.6.0-SNAPSHOT' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.6.0-SNAPSHOT

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.6.0-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/7c2a5526
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/7c2a5526
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/7c2a5526

Branch: refs/heads/master
Commit: 7c2a5526a1ce9b729e8a14ce9a34b457959bfa5e
Parents: ae75062 e68d748
Author: Eric Newton <er...@gmail.com>
Authored: Fri Mar 14 12:55:59 2014 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Mar 14 12:55:59 2014 -0400

----------------------------------------------------------------------
 README                                          |   5 +-
 .../accumulo/core/data/ArrayByteSequence.java   |   7 +-
 .../apache/accumulo/core/data/KeyExtent.java    |   3 +-
 .../core/security/NamespacePermission.java      |   1 +
 .../core/data/ArrayByteSequenceTest.java        | 107 +++++++++
 .../accumulo/core/data/ByteSequenceTest.java    |  41 ++++
 .../apache/accumulo/core/data/ColumnTest.java   |  70 ++++--
 .../accumulo/core/data/KeyExtentTest.java       | 240 ++++++++++++++-----
 .../org/apache/accumulo/core/data/KeyTest.java  |  33 +++
 .../iterators/user/BigDecimalCombinerTest.java  |  91 +++++--
 .../core/iterators/user/CombinerTest.java       |   2 +-
 .../core/security/ColumnVisibilityTest.java     |  34 ++-
 .../core/security/NamespacePermissionsTest.java |  39 +++
 .../core/security/VisibilityConstraintTest.java | 106 ++++++++
 pom.xml                                         |   7 +
 .../tserver/TabletServerResourceManager.java    |  19 +-
 .../randomwalk/security/SecurityFixture.java    |   2 +
 17 files changed, 694 insertions(+), 113 deletions(-)
----------------------------------------------------------------------