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/08/07 20:56:57 UTC

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

Repository: accumulo
Updated Branches:
  refs/heads/master be7a43f62 -> 02dee23e1


Merge branch '1.6.1-SNAPSHOT' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.6.1-SNAPSHOT


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

Branch: refs/heads/master
Commit: 61720c7a3b33c1c1cff0ce886856e1c40cea3593
Parents: e856ea6 d5e094d
Author: Eric C. Newton <er...@gmail.com>
Authored: Thu Aug 7 14:37:13 2014 -0400
Committer: Eric C. Newton <er...@gmail.com>
Committed: Thu Aug 7 14:37:13 2014 -0400

----------------------------------------------------------------------
 .../accumulo_user_manual/chapters/administration.tex      |  4 ++++
 .../main/latex/accumulo_user_manual/chapters/clients.tex  | 10 ++++++++++
 2 files changed, 14 insertions(+)
----------------------------------------------------------------------



[2/3] git commit: ACCUMULO-2704 print information about dead servers

Posted by ec...@apache.org.
ACCUMULO-2704 print information about dead servers


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

Branch: refs/heads/master
Commit: d34887a23c1489cd0321989cad42f50ac26e622e
Parents: 61720c7
Author: Eric C. Newton <er...@gmail.com>
Authored: Thu Aug 7 14:54:00 2014 -0400
Committer: Eric C. Newton <er...@gmail.com>
Committed: Thu Aug 7 14:54:14 2014 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/accumulo/test/GetMasterStats.java  | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/d34887a2/test/src/main/java/org/apache/accumulo/test/GetMasterStats.java
----------------------------------------------------------------------
diff --git a/test/src/main/java/org/apache/accumulo/test/GetMasterStats.java b/test/src/main/java/org/apache/accumulo/test/GetMasterStats.java
index 5ec13f3..0ba4ab2 100644
--- a/test/src/main/java/org/apache/accumulo/test/GetMasterStats.java
+++ b/test/src/main/java/org/apache/accumulo/test/GetMasterStats.java
@@ -16,10 +16,13 @@
  */
 package org.apache.accumulo.test;
 
+import java.text.SimpleDateFormat;
+import java.util.Date;
 import java.util.Map.Entry;
 
 import org.apache.accumulo.core.client.Instance;
 import org.apache.accumulo.core.client.impl.MasterClient;
+import org.apache.accumulo.core.master.thrift.DeadServer;
 import org.apache.accumulo.core.master.thrift.MasterClientService;
 import org.apache.accumulo.core.master.thrift.MasterMonitorInfo;
 import org.apache.accumulo.core.master.thrift.RecoveryStatus;
@@ -58,6 +61,12 @@ public class GetMasterStats {
         out(1, "%s: %d", entry.getKey(), (int) entry.getValue());
       }
     }
+    out(0, "Dead tablet servers count: %s", stats.deadTabletServers.size());
+    for (DeadServer dead : stats.deadTabletServers) {
+      out(1, "Dead tablet server: %s", dead.server);
+      out(2, "Last report: %s", new SimpleDateFormat().format(new Date(dead.lastStatus)));
+      out(2, "Cause: %s", dead.status);
+    }
     if (stats.tableMap != null && stats.tableMap.size() > 0) {
       out(0, "Tables");
       for (Entry<String,TableInfo> entry : stats.tableMap.entrySet()) {


[3/3] git commit: Merge branch '1.6.1-SNAPSHOT'

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


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

Branch: refs/heads/master
Commit: 02dee23e1b37ed22d8e472822d5951a7bcce2233
Parents: be7a43f d34887a
Author: Eric C. Newton <er...@gmail.com>
Authored: Thu Aug 7 14:54:33 2014 -0400
Committer: Eric C. Newton <er...@gmail.com>
Committed: Thu Aug 7 14:54:33 2014 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/accumulo/test/GetMasterStats.java  | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------