Java 类org.apache.hadoop.hbase.protobuf.generated.RegionServerStatusProtos.ReportRSFatalErrorRequest 实例源码

项目:ditb    文件:MasterRpcServices.java   
@Override
public ReportRSFatalErrorResponse reportRSFatalError(
    RpcController controller, ReportRSFatalErrorRequest request) throws ServiceException {
  String errorText = request.getErrorMessage();
  ServerName sn = ProtobufUtil.toServerName(request.getServer());
  String msg = "Region server " + sn
    + " reported a fatal error:\n" + errorText;
  LOG.error(msg);
  master.rsFatals.add(msg);
  return ReportRSFatalErrorResponse.newBuilder().build();
}
项目:ditb    文件:HRegionServer.java   
/**
 * Cause the server to exit without closing the regions it is serving, the log
 * it is using and without notifying the master. Used unit testing and on
 * catastrophic events such as HDFS is yanked out from under hbase or we OOME.
 *
 * @param reason the reason we are aborting
 * @param cause  the exception that caused the abort, or null
 */
@Override public void abort(String reason, Throwable cause) {
  String msg = "ABORTING region server " + this + ": " + reason;
  if (cause != null) {
    LOG.fatal(msg, cause);
  } else {
    LOG.fatal(msg);
  }
  this.abortRequested = true;
  // HBASE-4014: show list of coprocessors that were loaded to help debug
  // regionserver crashes.Note that we're implicitly using
  // java.util.HashSet's toString() method to print the coprocessor names.
  LOG.fatal(
      "RegionServer abort: loaded coprocessors are: " + CoprocessorHost.getLoadedCoprocessors());
  // Try and dump metrics if abort -- might give clue as to how fatal came about....
  try {
    LOG.info("Dump of metrics as JSON on abort: " + JSONBean.dumpRegionServerMetrics());
  } catch (MalformedObjectNameException | IOException e) {
    LOG.warn("Failed dumping metrics", e);
  }

  // Do our best to report our abort to the master, but this may not work
  try {
    if (cause != null) {
      msg += "\nCause:\n" + StringUtils.stringifyException(cause);
    }
    // Report to the master but only if we have already registered with the master.
    if (rssStub != null && this.serverName != null) {
      ReportRSFatalErrorRequest.Builder builder = ReportRSFatalErrorRequest.newBuilder();
      ServerName sn = ServerName.parseVersionedServerName(this.serverName.getVersionedBytes());
      builder.setServer(ProtobufUtil.toServerName(sn));
      builder.setErrorMessage(msg);
      rssStub.reportRSFatalError(null, builder.build());
    }
  } catch (Throwable t) {
    LOG.warn("Unable to report fatal error to master", t);
  }
  stop(reason);
}
项目:pbase    文件:MasterRpcServices.java   
@Override
public ReportRSFatalErrorResponse reportRSFatalError(
    RpcController controller, ReportRSFatalErrorRequest request) throws ServiceException {
  String errorText = request.getErrorMessage();
  ServerName sn = ProtobufUtil.toServerName(request.getServer());
  String msg = "Region server " + sn
    + " reported a fatal error:\n" + errorText;
  LOG.error(msg);
  master.rsFatals.add(msg);
  return ReportRSFatalErrorResponse.newBuilder().build();
}
项目:HIndex    文件:HMaster.java   
@Override
public ReportRSFatalErrorResponse reportRSFatalError(
    RpcController controller, ReportRSFatalErrorRequest request) throws ServiceException {
  String errorText = request.getErrorMessage();
  ServerName sn = ProtobufUtil.toServerName(request.getServer());
  String msg = "Region server " + sn +
    " reported a fatal error:\n" + errorText;
  LOG.error(msg);
  rsFatals.add(msg);

  return ReportRSFatalErrorResponse.newBuilder().build();
}
项目:HIndex    文件:HRegionServer.java   
/**
 * Cause the server to exit without closing the regions it is serving, the log
 * it is using and without notifying the master. Used unit testing and on
 * catastrophic events such as HDFS is yanked out from under hbase or we OOME.
 *
 * @param reason
 *          the reason we are aborting
 * @param cause
 *          the exception that caused the abort, or null
 */
@Override
public void abort(String reason, Throwable cause) {
  String msg = "ABORTING region server " + this + ": " + reason;
  if (cause != null) {
    LOG.fatal(msg, cause);
  } else {
    LOG.fatal(msg);
  }
  this.abortRequested = true;
  // HBASE-4014: show list of coprocessors that were loaded to help debug
  // regionserver crashes.Note that we're implicitly using
  // java.util.HashSet's toString() method to print the coprocessor names.
  LOG.fatal("RegionServer abort: loaded coprocessors are: " +
      CoprocessorHost.getLoadedCoprocessors());
  // Do our best to report our abort to the master, but this may not work
  try {
    if (cause != null) {
      msg += "\nCause:\n" + StringUtils.stringifyException(cause);
    }
    // Report to the master but only if we have already registered with the master.
    if (rssStub != null && this.serverNameFromMasterPOV != null) {
      ReportRSFatalErrorRequest.Builder builder =
        ReportRSFatalErrorRequest.newBuilder();
      ServerName sn =
        ServerName.parseVersionedServerName(this.serverNameFromMasterPOV.getVersionedBytes());
      builder.setServer(ProtobufUtil.toServerName(sn));
      builder.setErrorMessage(msg);
      rssStub.reportRSFatalError(null, builder.build());
    }
  } catch (Throwable t) {
    LOG.warn("Unable to report fatal error to master", t);
  }
  stop(reason);
}
项目:PyroDB    文件:MasterRpcServices.java   
@Override
public ReportRSFatalErrorResponse reportRSFatalError(
    RpcController controller, ReportRSFatalErrorRequest request) throws ServiceException {
  String errorText = request.getErrorMessage();
  ServerName sn = ProtobufUtil.toServerName(request.getServer());
  String msg = "Region server " + sn
    + " reported a fatal error:\n" + errorText;
  LOG.error(msg);
  master.rsFatals.add(msg);
  return ReportRSFatalErrorResponse.newBuilder().build();
}
项目:PyroDB    文件:HRegionServer.java   
/**
 * Cause the server to exit without closing the regions it is serving, the log
 * it is using and without notifying the master. Used unit testing and on
 * catastrophic events such as HDFS is yanked out from under hbase or we OOME.
 *
 * @param reason
 *          the reason we are aborting
 * @param cause
 *          the exception that caused the abort, or null
 */
@Override
public void abort(String reason, Throwable cause) {
  String msg = "ABORTING region server " + this + ": " + reason;
  if (cause != null) {
    LOG.fatal(msg, cause);
  } else {
    LOG.fatal(msg);
  }
  this.abortRequested = true;
  // HBASE-4014: show list of coprocessors that were loaded to help debug
  // regionserver crashes.Note that we're implicitly using
  // java.util.HashSet's toString() method to print the coprocessor names.
  LOG.fatal("RegionServer abort: loaded coprocessors are: " +
      CoprocessorHost.getLoadedCoprocessors());
  // Do our best to report our abort to the master, but this may not work
  try {
    if (cause != null) {
      msg += "\nCause:\n" + StringUtils.stringifyException(cause);
    }
    // Report to the master but only if we have already registered with the master.
    if (rssStub != null && this.serverName != null) {
      ReportRSFatalErrorRequest.Builder builder =
        ReportRSFatalErrorRequest.newBuilder();
      ServerName sn =
        ServerName.parseVersionedServerName(this.serverName.getVersionedBytes());
      builder.setServer(ProtobufUtil.toServerName(sn));
      builder.setErrorMessage(msg);
      rssStub.reportRSFatalError(null, builder.build());
    }
  } catch (Throwable t) {
    LOG.warn("Unable to report fatal error to master", t);
  }
  stop(reason);
}
项目:c5    文件:HMaster.java   
@Override
public ReportRSFatalErrorResponse reportRSFatalError(
    RpcController controller, ReportRSFatalErrorRequest request) throws ServiceException {
  String errorText = request.getErrorMessage();
  ServerName sn = ProtobufUtil.toServerName(request.getServer());
  String msg = "Region server " + sn +
    " reported a fatal error:\n" + errorText;
  LOG.error(msg);
  rsFatals.add(msg);

  return ReportRSFatalErrorResponse.newBuilder().build();
}
项目:c5    文件:HRegionServer.java   
/**
 * Cause the server to exit without closing the regions it is serving, the log
 * it is using and without notifying the master. Used unit testing and on
 * catastrophic events such as HDFS is yanked out from under hbase or we OOME.
 *
 * @param reason
 *          the reason we are aborting
 * @param cause
 *          the exception that caused the abort, or null
 */
@Override
public void abort(String reason, Throwable cause) {
  String msg = "ABORTING region server " + this + ": " + reason;
  if (cause != null) {
    LOG.fatal(msg, cause);
  } else {
    LOG.fatal(msg);
  }
  this.abortRequested = true;
  // HBASE-4014: show list of coprocessors that were loaded to help debug
  // regionserver crashes.Note that we're implicitly using
  // java.util.HashSet's toString() method to print the coprocessor names.
  LOG.fatal("RegionServer abort: loaded coprocessors are: " +
      CoprocessorHost.getLoadedCoprocessors());
  // Do our best to report our abort to the master, but this may not work
  try {
    if (cause != null) {
      msg += "\nCause:\n" + StringUtils.stringifyException(cause);
    }
    // Report to the master but only if we have already registered with the master.
    if (rssStub != null && this.serverNameFromMasterPOV != null) {
      ReportRSFatalErrorRequest.Builder builder =
        ReportRSFatalErrorRequest.newBuilder();
      ServerName sn =
        ServerName.parseVersionedServerName(this.serverNameFromMasterPOV.getVersionedBytes());
      builder.setServer(ProtobufUtil.toServerName(sn));
      builder.setErrorMessage(msg);
      rssStub.reportRSFatalError(null, builder.build());
    }
  } catch (Throwable t) {
    LOG.warn("Unable to report fatal error to master", t);
  }
  stop(reason);
}
项目:DominoHBase    文件:HMaster.java   
@Override
public ReportRSFatalErrorResponse reportRSFatalError(
    RpcController controller, ReportRSFatalErrorRequest request) throws ServiceException {
  String errorText = request.getErrorMessage();
  ServerName sn = ProtobufUtil.toServerName(request.getServer());
  String msg = "Region server " + Bytes.toString(sn.getVersionedBytes()) +
    " reported a fatal error:\n" + errorText;
  LOG.error(msg);
  rsFatals.add(msg);

  return ReportRSFatalErrorResponse.newBuilder().build();
}
项目:DominoHBase    文件:HRegionServer.java   
/**
 * Cause the server to exit without closing the regions it is serving, the log
 * it is using and without notifying the master. Used unit testing and on
 * catastrophic events such as HDFS is yanked out from under hbase or we OOME.
 *
 * @param reason
 *          the reason we are aborting
 * @param cause
 *          the exception that caused the abort, or null
 */
public void abort(String reason, Throwable cause) {
  String msg = "ABORTING region server " + this + ": " + reason;
  if (cause != null) {
    LOG.fatal(msg, cause);
  } else {
    LOG.fatal(msg);
  }
  this.abortRequested = true;
  this.reservedSpace.clear();
  // HBASE-4014: show list of coprocessors that were loaded to help debug
  // regionserver crashes.Note that we're implicitly using
  // java.util.HashSet's toString() method to print the coprocessor names.
  LOG.fatal("RegionServer abort: loaded coprocessors are: " +
      CoprocessorHost.getLoadedCoprocessors());
  // Do our best to report our abort to the master, but this may not work
  try {
    if (cause != null) {
      msg += "\nCause:\n" + StringUtils.stringifyException(cause);
    }
    if (hbaseMaster != null) {
      ReportRSFatalErrorRequest.Builder builder =
        ReportRSFatalErrorRequest.newBuilder();
      ServerName sn =
        ServerName.parseVersionedServerName(this.serverNameFromMasterPOV.getVersionedBytes());
      builder.setServer(ProtobufUtil.toServerName(sn));
      builder.setErrorMessage(msg);
      hbaseMaster.reportRSFatalError(
        null,builder.build());
    }
  } catch (Throwable t) {
    LOG.warn("Unable to report fatal error to master", t);
  }
  stop(reason);
}
项目:pbase    文件:HRegionServer.java   
/**
 * Cause the server to exit without closing the regions it is serving, the log
 * it is using and without notifying the master. Used unit testing and on
 * catastrophic events such as HDFS is yanked out from under hbase or we OOME.
 *
 * @param reason the reason we are aborting
 * @param cause  the exception that caused the abort, or null
 */
@Override
public void abort(String reason, Throwable cause) {
    String msg = "ABORTING region server " + this + ": " + reason;
    if (cause != null) {
        LOG.fatal(msg, cause);
    } else {
        LOG.fatal(msg);
    }
    this.abortRequested = true;
    // HBASE-4014: show list of coprocessors that were loaded to help debug
    // regionserver crashes.Note that we're implicitly using
    // java.util.HashSet's toString() method to print the coprocessor names.
    LOG.fatal("RegionServer abort: loaded coprocessors are: " +
            CoprocessorHost.getLoadedCoprocessors());
    // Try and dump metrics if abort -- might give clue as to how fatal came about....
    try {
        LOG.info("Dump of metrics as JSON on abort: " + JSONBean.dumpRegionServerMetrics());
    } catch (MalformedObjectNameException | IOException e) {
        LOG.warn("Failed dumping metrics", e);
    }

    // Do our best to report our abort to the master, but this may not work
    try {
        if (cause != null) {
            msg += "\nCause:\n" + StringUtils.stringifyException(cause);
        }
        // Report to the master but only if we have already registered with the master.
        if (rssStub != null && this.serverName != null) {
            ReportRSFatalErrorRequest.Builder builder =
                    ReportRSFatalErrorRequest.newBuilder();
            ServerName sn =
                    ServerName.parseVersionedServerName(this.serverName.getVersionedBytes());
            builder.setServer(ProtobufUtil.toServerName(sn));
            builder.setErrorMessage(msg);
            rssStub.reportRSFatalError(null, builder.build());
        }
    } catch (Throwable t) {
        LOG.warn("Unable to report fatal error to master", t);
    }
    stop(reason);
}