org.apache.hadoop.hbase.YouAreDeadException类的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(123)

本文整理了Java中org.apache.hadoop.hbase.YouAreDeadException类的一些代码示例,展示了YouAreDeadException类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YouAreDeadException类的具体详情如下:
包路径:org.apache.hadoop.hbase.YouAreDeadException
类名称:YouAreDeadException

YouAreDeadException介绍

[英]This exception is thrown by the master when a region server reports and is already being processed as dead. This can happen when a region server loses its session but didn't figure it yet.
[中]当区域服务器报告并已被处理为死机时,主服务器会引发此异常。当区域服务器丢失其会话但尚未找到它时,可能会发生这种情况。

代码示例

代码示例来源:origin: apache/hbase

  1. /**
  2. * If this server is on the dead list, reject it with a YouAreDeadException.
  3. * If it was dead but came back with a new start code, remove the old entry
  4. * from the dead list.
  5. * @param what START or REPORT
  6. */
  7. private void checkIsDead(final ServerName serverName, final String what)
  8. throws YouAreDeadException {
  9. if (this.deadservers.isDeadServer(serverName)) {
  10. // host name, port and start code all match with existing one of the
  11. // dead servers. So, this server must be dead.
  12. String message = "Server " + what + " rejected; currently processing " +
  13. serverName + " as dead server";
  14. LOG.debug(message);
  15. throw new YouAreDeadException(message);
  16. }
  17. // remove dead server with same hostname and port of newly checking in rs after master
  18. // initialization.See HBASE-5916 for more information.
  19. if ((this.master == null || this.master.isInitialized())
  20. && this.deadservers.cleanPreviousInstance(serverName)) {
  21. // This server has now become alive after we marked it as dead.
  22. // We removed it's previous entry from the dead list to reflect it.
  23. LOG.debug(what + ":" + " Server " + serverName + " came back up," +
  24. " removed it from the dead servers list");
  25. }
  26. }

代码示例来源:origin: co.cask.hbase/hbase

  1. /**
  2. * If this server is on the dead list, reject it with a YouAreDeadException.
  3. * If it was dead but came back with a new start code, remove the old entry
  4. * from the dead list.
  5. * @param serverName
  6. * @param what START or REPORT
  7. * @throws YouAreDeadException
  8. */
  9. private void checkIsDead(final ServerName serverName, final String what)
  10. throws YouAreDeadException {
  11. if (this.deadservers.isDeadServer(serverName)) {
  12. // host name, port and start code all match with existing one of the
  13. // dead servers. So, this server must be dead.
  14. String message = "Server " + what + " rejected; currently processing " +
  15. serverName + " as dead server";
  16. LOG.debug(message);
  17. throw new YouAreDeadException(message);
  18. }
  19. // remove dead server with same hostname and port of newly checking in rs after master
  20. // initialization.See HBASE-5916 for more information.
  21. if ((this.services == null || ((HMaster) this.services).isInitialized())
  22. && this.deadservers.cleanPreviousInstance(serverName)) {
  23. // This server has now become alive after we marked it as dead.
  24. // We removed it's previous entry from the dead list to reflect it.
  25. LOG.debug(what + ":" + " Server " + serverName + " came back up," +
  26. " removed it from the dead servers list");
  27. }
  28. }

代码示例来源:origin: harbby/presto-connectors

  1. /**
  2. * If this server is on the dead list, reject it with a YouAreDeadException.
  3. * If it was dead but came back with a new start code, remove the old entry
  4. * from the dead list.
  5. * @param serverName
  6. * @param what START or REPORT
  7. * @throws org.apache.hadoop.hbase.YouAreDeadException
  8. */
  9. private void checkIsDead(final ServerName serverName, final String what)
  10. throws YouAreDeadException {
  11. if (this.deadservers.isDeadServer(serverName)) {
  12. // host name, port and start code all match with existing one of the
  13. // dead servers. So, this server must be dead.
  14. String message = "Server " + what + " rejected; currently processing " +
  15. serverName + " as dead server";
  16. LOG.debug(message);
  17. throw new YouAreDeadException(message);
  18. }
  19. // remove dead server with same hostname and port of newly checking in rs after master
  20. // initialization.See HBASE-5916 for more information.
  21. if ((this.services == null || ((HMaster) this.services).isInitialized())
  22. && this.deadservers.cleanPreviousInstance(serverName)) {
  23. // This server has now become alive after we marked it as dead.
  24. // We removed it's previous entry from the dead list to reflect it.
  25. LOG.debug(what + ":" + " Server " + serverName + " came back up," +
  26. " removed it from the dead servers list");
  27. }
  28. }

相关文章

YouAreDeadException类方法