当前位置: 首页>>代码示例>>Java>>正文


Java ServerInfo类代码示例

本文整理汇总了Java中org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo的典型用法代码示例。如果您正苦于以下问题:Java ServerInfo类的具体用法?Java ServerInfo怎么用?Java ServerInfo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ServerInfo类属于org.apache.hadoop.hbase.protobuf.generated.AdminProtos包,在下文中一共展示了ServerInfo类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getServerHoldingRegion

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
@Override
public ServerName getServerHoldingRegion(TableName tn, byte[] regionName) throws IOException {
  HRegionLocation regionLoc = null;
  try (RegionLocator locator = connection.getRegionLocator(tn)) {
    regionLoc = locator.getRegionLocation(regionName);
  }
  if (regionLoc == null) {
    LOG.warn("Cannot find region server holding region " + Bytes.toString(regionName) +
      ", start key [" + Bytes.toString(HRegionInfo.getStartKey(regionName)) + "]");
    return null;
  }

  AdminProtos.AdminService.BlockingInterface client =
      ((ClusterConnection)this.connection).getAdmin(regionLoc.getServerName());
  ServerInfo info = ProtobufUtil.getServerInfo(null, client);
  return ProtobufUtil.toServerName(info.getServerName());
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:18,代码来源:DistributedHBaseCluster.java

示例2: isServerReachable

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * Check if a region server is reachable and has the expected start code
 */
public boolean isServerReachable(ServerName server) {
  if (server == null) throw new NullPointerException("Passed server is null");

  RetryCounter retryCounter = pingRetryCounterFactory.create();
  while (retryCounter.shouldRetry()) {
    try {
      AdminService.BlockingInterface admin = getRsAdmin(server);
      if (admin != null) {
        ServerInfo info = ProtobufUtil.getServerInfo(admin);
        return info != null && info.hasServerName()
          && server.getStartcode() == info.getServerName().getStartCode();
      }
    } catch (IOException ioe) {
      LOG.debug("Couldn't reach " + server + ", try=" + retryCounter.getAttemptTimes()
        + " of " + retryCounter.getMaxAttempts(), ioe);
      try {
        retryCounter.sleepUntilNextRetry();
      } catch(InterruptedException ie) {
        Thread.currentThread().interrupt();
      }
    }
  }
  return false;
}
 
开发者ID:grokcoder,项目名称:pbase,代码行数:28,代码来源:ServerManager.java

示例3: isServerReachable

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * Check if a region server is reachable and has the expected start code
 */
public boolean isServerReachable(ServerName server) {
  if (server == null) throw new NullPointerException("Passed server is null");
  int maximumAttempts = Math.max(1, master.getConfiguration().getInt(
    "hbase.master.maximum.ping.server.attempts", 10));
  for (int i = 0; i < maximumAttempts; i++) {
    try {
      AdminService.BlockingInterface admin = getRsAdmin(server);
      if (admin != null) {
        ServerInfo info = ProtobufUtil.getServerInfo(admin);
        return info != null && info.hasServerName()
          && server.getStartcode() == info.getServerName().getStartCode();
      }
    } catch (IOException ioe) {
      LOG.debug("Couldn't reach " + server + ", try=" + i
        + " of " + maximumAttempts, ioe);
    }
  }
  return false;
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:23,代码来源:ServerManager.java

示例4: getServerHoldingRegion

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
@Override
public ServerName getServerHoldingRegion(byte[] regionName) throws IOException {
  HConnection connection = admin.getConnection();
  HRegionLocation regionLoc = connection.locateRegion(regionName);
  if (regionLoc == null) {
    LOG.warn("Cannot find region server holding region " + Bytes.toString(regionName)
        + " for table " + HRegionInfo.getTableName(regionName) + ", start key [" +
        Bytes.toString(HRegionInfo.getStartKey(regionName)) + "]");
    return null;
  }

  AdminProtos.AdminService.BlockingInterface client =
    connection.getAdmin(regionLoc.getServerName());
  ServerInfo info = ProtobufUtil.getServerInfo(client);
  return ProtobufUtil.toServerName(info.getServerName());
}
 
开发者ID:tenggyut,项目名称:HIndex,代码行数:17,代码来源:DistributedHBaseCluster.java

示例5: isServerReachable

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * Check if a region server is reachable and has the expected start code
 */
public boolean isServerReachable(ServerName server) {
  if (server == null) throw new NullPointerException("Passed server is null");


  RetryCounter retryCounter = pingRetryCounterFactory.create();
  while (retryCounter.shouldRetry()) {
    synchronized (this.onlineServers) {
      if (this.deadservers.isDeadServer(server)) {
        return false;
      }
    }
    try {
      PayloadCarryingRpcController controller = newRpcController();
      AdminService.BlockingInterface admin = getRsAdmin(server);
      if (admin != null) {
        ServerInfo info = ProtobufUtil.getServerInfo(controller, admin);
        return info != null && info.hasServerName()
          && server.getStartcode() == info.getServerName().getStartCode();
      }
    } catch (IOException ioe) {
      if (LOG.isDebugEnabled()) {
        LOG.debug("Couldn't reach " + server + ", try=" + retryCounter.getAttemptTimes() + " of "
            + retryCounter.getMaxAttempts(), ioe);
      }
      try {
        retryCounter.sleepUntilNextRetry();
      } catch(InterruptedException ie) {
        Thread.currentThread().interrupt();
        break;
      }
    }
  }
  return false;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:38,代码来源:ServerManager.java

示例6: buildGetServerInfoResponse

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * A utility to build a GetServerInfoResponse.
 *
 * @param serverName
 * @param webuiPort
 * @return the response
 */
public static GetServerInfoResponse buildGetServerInfoResponse(
    final ServerName serverName, final int webuiPort) {
  GetServerInfoResponse.Builder builder = GetServerInfoResponse.newBuilder();
  ServerInfo.Builder serverInfoBuilder = ServerInfo.newBuilder();
  serverInfoBuilder.setServerName(ProtobufUtil.toServerName(serverName));
  if (webuiPort >= 0) {
    serverInfoBuilder.setWebuiPort(webuiPort);
  }
  builder.setServerInfo(serverInfoBuilder.build());
  return builder.build();
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:19,代码来源:ResponseConverter.java

示例7: getServerInfo

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * A helper to get the info of a region server using admin protocol.
 * @return the server name
 */
public static ServerInfo getServerInfo(final RpcController controller,
    final AdminService.BlockingInterface admin)
throws IOException {
  GetServerInfoRequest request = RequestConverter.buildGetServerInfoRequest();
  try {
    GetServerInfoResponse response = admin.getServerInfo(controller, request);
    return response.getServerInfo();
  } catch (ServiceException se) {
    throw getRemoteException(se);
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:16,代码来源:ProtobufUtil.java

示例8: getServerInfo

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * A helper to get the info of a region server using admin protocol.
 *
 * @param admin
 * @return the server name
 * @throws IOException
 */
public static ServerInfo getServerInfo(final AdminService.BlockingInterface admin)
throws IOException {
  GetServerInfoRequest request = RequestConverter.buildGetServerInfoRequest();
  try {
    GetServerInfoResponse response = admin.getServerInfo(null, request);
    return response.getServerInfo();
  } catch (ServiceException se) {
    throw getRemoteException(se);
  }
}
 
开发者ID:grokcoder,项目名称:pbase,代码行数:18,代码来源:ProtobufUtil.java

示例9: getServerInfo

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * A helper to get the info of a region server using admin protocol.
 * @return the server name
 */
public static ServerInfo getServerInfo(final RpcController controller,
    final AdminService.BlockingInterface admin)
throws IOException {
  GetServerInfoRequest request = buildGetServerInfoRequest();
  try {
    GetServerInfoResponse response = admin.getServerInfo(controller, request);
    return response.getServerInfo();
  } catch (ServiceException se) {
    throw getRemoteException(se);
  }
}
 
开发者ID:apache,项目名称:hbase,代码行数:16,代码来源:ProtobufUtil.java

示例10: getServerInfo

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
/**
 * A helper to get the info of a region server using admin protocol.
 *
 * @param admin
 * @return the server name
 * @throws IOException
 */
public static ServerInfo getServerInfo(
    final AdminProtocol admin) throws IOException {
  GetServerInfoRequest request = RequestConverter.buildGetServerInfoRequest();
  try {
    GetServerInfoResponse response = admin.getServerInfo(null, request);
    return response.getServerInfo();
  } catch (ServiceException se) {
    throw getRemoteException(se);
  }
}
 
开发者ID:daidong,项目名称:DominoHBase,代码行数:18,代码来源:ProtobufUtil.java

示例11: getServerHoldingRegion

import org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo; //导入依赖的package包/类
@Override
public ServerName getServerHoldingRegion(byte[] regionName) throws IOException {
  HConnection connection = admin.getConnection();
  HRegionLocation regionLoc = connection.locateRegion(regionName);
  if (regionLoc == null) {
    return null;
  }

  AdminProtocol client = connection.getAdmin(regionLoc.getHostname(), regionLoc.getPort());
  ServerInfo info = ProtobufUtil.getServerInfo(client);
  return ProtobufUtil.toServerName(info.getServerName());
}
 
开发者ID:daidong,项目名称:DominoHBase,代码行数:13,代码来源:DistributedHBaseCluster.java


注:本文中的org.apache.hadoop.hbase.protobuf.generated.AdminProtos.ServerInfo类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。