You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/10/29 18:46:28 UTC

[3/6] git commit: ACCUMULO-3275 Include number of unhosted tablets in log message.

ACCUMULO-3275 Include number of unhosted tablets in log message.


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

Branch: refs/heads/master
Commit: a598b77923c679c667ceab18e8b0ae9321a5fc9c
Parents: d3d6986
Author: Josh Elser <el...@apache.org>
Authored: Wed Oct 29 12:31:32 2014 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Wed Oct 29 12:31:32 2014 -0400

----------------------------------------------------------------------
 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/a598b779/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 05ada81..6648ed6 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
@@ -2169,7 +2169,7 @@ public class Master implements LiveTServerSet.Listener, TableObserver, CurrentSt
       if (!badServers.isEmpty()) {
         log.debug("not balancing because the balance information is out-of-date " + badServers.keySet());
       } else if (notHosted() > 0) {
-        log.debug("not balancing because there are unhosted tablets");
+        log.debug("not balancing because there are unhosted tablets: " + notHosted());
       } else if (getMasterGoalState() == MasterGoalState.CLEAN_STOP) {
         log.debug("not balancing because the master is attempting to stop cleanly");
       } else if (!serversToShutdown.isEmpty()) {