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 2015/02/24 22:19:10 UTC

[04/11] accumulo git commit: ACCUMULO-3580 ACCUMULO-3618 disable metadata table scanning optimizations

ACCUMULO-3580 ACCUMULO-3618 disable metadata table scanning optimizations


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

Branch: refs/heads/master
Commit: 57ffd19c11de6984bfc2123b301917c807854ca9
Parents: 517757f
Author: Eric C. Newton <er...@gmail.com>
Authored: Tue Feb 24 14:41:51 2015 -0500
Committer: Eric C. Newton <er...@gmail.com>
Committed: Tue Feb 24 14:41:51 2015 -0500

----------------------------------------------------------------------
 server/src/main/java/org/apache/accumulo/server/master/Master.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/57ffd19c/server/src/main/java/org/apache/accumulo/server/master/Master.java
----------------------------------------------------------------------
diff --git a/server/src/main/java/org/apache/accumulo/server/master/Master.java b/server/src/main/java/org/apache/accumulo/server/master/Master.java
index 8e072e9..61ba7cf 100644
--- a/server/src/main/java/org/apache/accumulo/server/master/Master.java
+++ b/server/src/main/java/org/apache/accumulo/server/master/Master.java
@@ -2310,8 +2310,8 @@ public class Master implements LiveTServerSet.Listener, TableObserver, CurrentSt
     TCredentials systemAuths = SecurityConstants.getSystemCredentials();
     final TabletStateStore stores[] = {
         new ZooTabletStateStore(new ZooStore(zroot)),
-        new RootTabletStateStore(instance, systemAuths, this),
         // ACCUMULO-3580 ACCUMULO-3618 disable metadata table scanning optimizations
+        new RootTabletStateStore(instance, systemAuths, null),
         new MetaDataStateStore(instance, systemAuths, null)
         };
     watchers.add(new TabletGroupWatcher(stores[2], null));