Java 类org.apache.hadoop.hbase.protobuf.generated.AdminProtos.RollWALWriterResponse 实例源码

项目:ditb    文件:RSRpcServices.java   
/**
 * Roll the WAL writer of the region server.
 * @param controller the RPC controller
 * @param request the request
 * @throws ServiceException
 */
@Override
public RollWALWriterResponse rollWALWriter(final RpcController controller,
    final RollWALWriterRequest request) throws ServiceException {
  try {
    checkOpen();
    requestCount.increment();
    regionServer.getRegionServerCoprocessorHost().preRollWALWriterRequest();
    regionServer.walRoller.requestRollAll();
    regionServer.getRegionServerCoprocessorHost().postRollWALWriterRequest();
    RollWALWriterResponse.Builder builder = RollWALWriterResponse.newBuilder();
    return builder.build();
  } catch (IOException ie) {
    throw new ServiceException(ie);
  }
}
项目:pbase    文件:RSRpcServices.java   
/**
 * Roll the WAL writer of the region server.
 *
 * @param controller the RPC controller
 * @param request    the request
 * @throws ServiceException
 */
@Override
public RollWALWriterResponse rollWALWriter(final RpcController controller,
                                           final RollWALWriterRequest request) throws ServiceException {
    try {
        checkOpen();
        requestCount.increment();
        regionServer.getRegionServerCoprocessorHost().preRollWALWriterRequest();
        regionServer.walRoller.requestRollAll();
        regionServer.getRegionServerCoprocessorHost().postRollWALWriterRequest();
        RollWALWriterResponse.Builder builder = RollWALWriterResponse.newBuilder();
        return builder.build();
    } catch (IOException ie) {
        throw new ServiceException(ie);
    }
}
项目:HIndex    文件:HRegionServer.java   
/**
 * Roll the WAL writer of the region server.
 * @param controller the RPC controller
 * @param request the request
 * @throws ServiceException
 */
@Override
public RollWALWriterResponse rollWALWriter(final RpcController controller,
    final RollWALWriterRequest request) throws ServiceException {
  try {
    checkOpen();
    requestCount.increment();
    HLog wal = this.getWAL();
    byte[][] regionsToFlush = wal.rollWriter(true);
    RollWALWriterResponse.Builder builder = RollWALWriterResponse.newBuilder();
    if (regionsToFlush != null) {
      for (byte[] region: regionsToFlush) {
        builder.addRegionToFlush(HBaseZeroCopyByteString.wrap(region));
      }
    }
    return builder.build();
  } catch (IOException ie) {
    throw new ServiceException(ie);
  }
}
项目:HIndex    文件:HBaseAdmin.java   
/**
  * Roll the log writer. That is, start writing log messages to a new file.
  *
  * @param serverName
  *          The servername of the regionserver. A server name is made of host,
  *          port and startcode. This is mandatory. Here is an example:
  *          <code> host187.example.com,60020,1289493121758</code>
  * @return If lots of logs, flush the returned regions so next time through
  * we can clean logs. Returns null if nothing to flush.  Names are actual
  * region names as returned by {@link HRegionInfo#getEncodedName()}
  * @throws IOException if a remote or network exception occurs
  * @throws FailedLogCloseException
  */
public synchronized  byte[][] rollHLogWriter(String serverName)
     throws IOException, FailedLogCloseException {
   ServerName sn = ServerName.valueOf(serverName);
   AdminService.BlockingInterface admin = this.connection.getAdmin(sn);
   RollWALWriterRequest request = RequestConverter.buildRollWALWriterRequest();
   try {
     RollWALWriterResponse response = admin.rollWALWriter(null, request);
     int regionCount = response.getRegionToFlushCount();
     byte[][] regionsToFlush = new byte[regionCount][];
     for (int i = 0; i < regionCount; i++) {
       ByteString region = response.getRegionToFlush(i);
       regionsToFlush[i] = region.toByteArray();
     }
     return regionsToFlush;
   } catch (ServiceException se) {
     throw ProtobufUtil.getRemoteException(se);
   }
 }
项目:PyroDB    文件:RSRpcServices.java   
/**
 * Roll the WAL writer of the region server.
 * @param controller the RPC controller
 * @param request the request
 * @throws ServiceException
 */
@Override
public RollWALWriterResponse rollWALWriter(final RpcController controller,
    final RollWALWriterRequest request) throws ServiceException {
  try {
    checkOpen();
    requestCount.increment();
    HLog wal = regionServer.getWAL();
    byte[][] regionsToFlush = wal.rollWriter(true);
    RollWALWriterResponse.Builder builder = RollWALWriterResponse.newBuilder();
    if (regionsToFlush != null) {
      for (byte[] region: regionsToFlush) {
        builder.addRegionToFlush(HBaseZeroCopyByteString.wrap(region));
      }
    }
    return builder.build();
  } catch (IOException ie) {
    throw new ServiceException(ie);
  }
}
项目:PyroDB    文件:HBaseAdmin.java   
/**
  * Roll the log writer. That is, start writing log messages to a new file.
  *
  * @param serverName
  *          The servername of the regionserver. A server name is made of host,
  *          port and startcode. This is mandatory. Here is an example:
  *          <code> host187.example.com,60020,1289493121758</code>
  * @return If lots of logs, flush the returned regions so next time through
  * we can clean logs. Returns null if nothing to flush.  Names are actual
  * region names as returned by {@link HRegionInfo#getEncodedName()}
  * @throws IOException if a remote or network exception occurs
  * @throws FailedLogCloseException
  */
public synchronized  byte[][] rollHLogWriter(String serverName)
     throws IOException, FailedLogCloseException {
   ServerName sn = ServerName.valueOf(serverName);
   AdminService.BlockingInterface admin = this.connection.getAdmin(sn);
   RollWALWriterRequest request = RequestConverter.buildRollWALWriterRequest();
   try {
     RollWALWriterResponse response = admin.rollWALWriter(null, request);
     int regionCount = response.getRegionToFlushCount();
     byte[][] regionsToFlush = new byte[regionCount][];
     for (int i = 0; i < regionCount; i++) {
       ByteString region = response.getRegionToFlush(i);
       regionsToFlush[i] = region.toByteArray();
     }
     return regionsToFlush;
   } catch (ServiceException se) {
     throw ProtobufUtil.getRemoteException(se);
   }
 }
项目:c5    文件:HRegionServer.java   
/**
 * Roll the WAL writer of the region server.
 * @param controller the RPC controller
 * @param request the request
 * @throws ServiceException
 */
@Override
public RollWALWriterResponse rollWALWriter(final RpcController controller,
    final RollWALWriterRequest request) throws ServiceException {
  try {
    requestCount.increment();
    HLog wal = this.getWAL();
    byte[][] regionsToFlush = wal.rollWriter(true);
    RollWALWriterResponse.Builder builder = RollWALWriterResponse.newBuilder();
    if (regionsToFlush != null) {
      for (byte[] region: regionsToFlush) {
        builder.addRegionToFlush(ZeroCopyLiteralByteString.wrap(region));
      }
    }
    return builder.build();
  } catch (IOException ie) {
    throw new ServiceException(ie);
  }
}
项目:c5    文件:HBaseAdmin.java   
/**
  * Roll the log writer. That is, start writing log messages to a new file.
  *
  * @param serverName
  *          The servername of the regionserver. A server name is made of host,
  *          port and startcode. This is mandatory. Here is an example:
  *          <code> host187.example.com,60020,1289493121758</code>
  * @return If lots of logs, flush the returned regions so next time through
  * we can clean logs. Returns null if nothing to flush.  Names are actual
  * region names as returned by {@link HRegionInfo#getEncodedName()}
  * @throws IOException if a remote or network exception occurs
  * @throws FailedLogCloseException
  */
public synchronized  byte[][] rollHLogWriter(String serverName)
     throws IOException, FailedLogCloseException {
   ServerName sn = ServerName.valueOf(serverName);
   AdminService.BlockingInterface admin = this.connection.getAdmin(sn);
   RollWALWriterRequest request = RequestConverter.buildRollWALWriterRequest();
   try {
     RollWALWriterResponse response = admin.rollWALWriter(null, request);
     int regionCount = response.getRegionToFlushCount();
     byte[][] regionsToFlush = new byte[regionCount][];
     for (int i = 0; i < regionCount; i++) {
       ByteString region = response.getRegionToFlush(i);
       regionsToFlush[i] = region.toByteArray();
     }
     return regionsToFlush;
   } catch (ServiceException se) {
     throw ProtobufUtil.getRemoteException(se);
   }
 }
项目:DominoHBase    文件:HBaseAdmin.java   
/**
  * Roll the log writer. That is, start writing log messages to a new file.
  *
  * @param serverName
  *          The servername of the regionserver. A server name is made of host,
  *          port and startcode. This is mandatory. Here is an example:
  *          <code> host187.example.com,60020,1289493121758</code>
  * @return If lots of logs, flush the returned regions so next time through
  * we can clean logs. Returns null if nothing to flush.  Names are actual
  * region names as returned by {@link HRegionInfo#getEncodedName()}
  * @throws IOException if a remote or network exception occurs
  * @throws FailedLogCloseException
  */
public synchronized  byte[][] rollHLogWriter(String serverName)
     throws IOException, FailedLogCloseException {
   ServerName sn = new ServerName(serverName);
   AdminProtocol admin = this.connection.getAdmin(
       sn.getHostname(), sn.getPort());
   RollWALWriterRequest request = RequestConverter.buildRollWALWriterRequest();;
   try {
     RollWALWriterResponse response = admin.rollWALWriter(null, request);
     int regionCount = response.getRegionToFlushCount();
     byte[][] regionsToFlush = new byte[regionCount][];
     for (int i = 0; i < regionCount; i++) {
       ByteString region = response.getRegionToFlush(i);
       regionsToFlush[i] = region.toByteArray();
     }
     return regionsToFlush;
   } catch (ServiceException se) {
     throw ProtobufUtil.getRemoteException(se);
   }
 }
项目:DominoHBase    文件:HRegionServer.java   
/**
 * Roll the WAL writer of the region server.
 *
 * @param controller the RPC controller
 * @param request the request
 * @throws ServiceException
 */
@Override
public RollWALWriterResponse rollWALWriter(final RpcController controller,
    final RollWALWriterRequest request) throws ServiceException {
  try {
    requestCount.increment();
    HLog wal = this.getWAL();
    byte[][] regionsToFlush = wal.rollWriter(true);
    RollWALWriterResponse.Builder builder = RollWALWriterResponse.newBuilder();
    if (regionsToFlush != null) {
      for (byte[] region: regionsToFlush) {
        builder.addRegionToFlush(ByteString.copyFrom(region));
      }
    }
    return builder.build();
  } catch (IOException ie) {
    throw new ServiceException(ie);
  }
}
项目:ditb    文件:HBaseAdmin.java   
private RollWALWriterResponse rollWALWriterImpl(final ServerName sn) throws IOException,
    FailedLogCloseException {
  AdminService.BlockingInterface admin = this.connection.getAdmin(sn);
  RollWALWriterRequest request = RequestConverter.buildRollWALWriterRequest();
  PayloadCarryingRpcController controller = rpcControllerFactory.newController();

  try {
    // TODO: this does not do retries, it should. Set priority and timeout in controller
    return admin.rollWALWriter(controller, request);
  } catch (ServiceException se) {
    throw ProtobufUtil.getRemoteException(se);
  }
}
项目:pbase    文件:HBaseAdmin.java   
private RollWALWriterResponse rollWALWriterImpl(final ServerName sn) throws IOException,
    FailedLogCloseException {
  AdminService.BlockingInterface admin = this.connection.getAdmin(sn);
  RollWALWriterRequest request = RequestConverter.buildRollWALWriterRequest();
  try {
    return admin.rollWALWriter(null, request);
  } catch (ServiceException se) {
    throw ProtobufUtil.getRemoteException(se);
  }
}
项目:HIndex    文件:ResponseConverter.java   
/**
 * Get the list of regions to flush from a RollLogWriterResponse
 *
 * @param proto the RollLogWriterResponse
 * @return the the list of regions to flush
 */
public static byte[][] getRegions(final RollWALWriterResponse proto) {
  if (proto == null || proto.getRegionToFlushCount() == 0) return null;
  List<byte[]> regions = new ArrayList<byte[]>();
  for (ByteString region: proto.getRegionToFlushList()) {
    regions.add(region.toByteArray());
  }
  return (byte[][])regions.toArray();
}
项目:PyroDB    文件:ResponseConverter.java   
/**
 * Get the list of regions to flush from a RollLogWriterResponse
 *
 * @param proto the RollLogWriterResponse
 * @return the the list of regions to flush
 */
public static byte[][] getRegions(final RollWALWriterResponse proto) {
  if (proto == null || proto.getRegionToFlushCount() == 0) return null;
  List<byte[]> regions = new ArrayList<byte[]>();
  for (ByteString region: proto.getRegionToFlushList()) {
    regions.add(region.toByteArray());
  }
  return (byte[][])regions.toArray();
}
项目:c5    文件:ResponseConverter.java   
/**
 * Get the list of regions to flush from a RollLogWriterResponse
 *
 * @param proto the RollLogWriterResponse
 * @return the the list of regions to flush
 */
public static byte[][] getRegions(final RollWALWriterResponse proto) {
  if (proto == null || proto.getRegionToFlushCount() == 0) return null;
  List<byte[]> regions = new ArrayList<byte[]>();
  for (ByteString region: proto.getRegionToFlushList()) {
    regions.add(region.toByteArray());
  }
  return (byte[][])regions.toArray();
}
项目:DominoHBase    文件:ResponseConverter.java   
/**
 * Get the list of regions to flush from a RollLogWriterResponse
 *
 * @param proto the RollLogWriterResponse
 * @return the the list of regions to flush
 */
public static byte[][] getRegions(final RollWALWriterResponse proto) {
  if (proto == null || proto.getRegionToFlushCount() == 0) return null;
  List<byte[]> regions = new ArrayList<byte[]>();
  for (ByteString region: proto.getRegionToFlushList()) {
    regions.add(region.toByteArray());
  }
  return (byte[][])regions.toArray();
}
项目:ditb    文件:MockRegionServer.java   
@Override
public RollWALWriterResponse rollWALWriter(RpcController controller,
    RollWALWriterRequest request) throws ServiceException {
  // TODO Auto-generated method stub
  return null;
}
项目:ditb    文件:HBaseAdmin.java   
/**
 * Roll the log writer. I.e. when using a file system based write ahead log,
 * start writing log messages to a new file.
 *
 * Note that when talking to a version 1.0+ HBase deployment, the rolling is asynchronous.
 * This method will return as soon as the roll is requested and the return value will
 * always be null. Additionally, the named region server may schedule store flushes at the
 * request of the wal handling the roll request.
 *
 * When talking to a 0.98 or older HBase deployment, the rolling is synchronous and the
 * return value may be either null or a list of encoded region names.
 *
 * @param serverName
 *          The servername of the regionserver. A server name is made of host,
 *          port and startcode. This is mandatory. Here is an example:
 *          <code> host187.example.com,60020,1289493121758</code>
 * @return a set of {@link HRegionInfo#getEncodedName()} that would allow the wal to
 *         clean up some underlying files. null if there's nothing to flush.
 * @throws IOException if a remote or network exception occurs
 * @throws FailedLogCloseException
 * @deprecated use {@link #rollWALWriter(ServerName)}
 */
@Deprecated
public synchronized byte[][] rollHLogWriter(String serverName)
    throws IOException, FailedLogCloseException {
  ServerName sn = ServerName.valueOf(serverName);
  final RollWALWriterResponse response = rollWALWriterImpl(sn);
  int regionCount = response.getRegionToFlushCount();
  if (0 == regionCount) {
    return null;
  }
  byte[][] regionsToFlush = new byte[regionCount][];
  for (int i = 0; i < regionCount; i++) {
    ByteString region = response.getRegionToFlush(i);
    regionsToFlush[i] = region.toByteArray();
  }
  return regionsToFlush;
}
项目:pbase    文件:MockRegionServer.java   
@Override
public RollWALWriterResponse rollWALWriter(RpcController controller,
    RollWALWriterRequest request) throws ServiceException {
  // TODO Auto-generated method stub
  return null;
}
项目:pbase    文件:HBaseAdmin.java   
/**
 * Roll the log writer. I.e. when using a file system based write ahead log,
 * start writing log messages to a new file.
 *
 * Note that when talking to a version 1.0+ HBase deployment, the rolling is asynchronous.
 * This method will return as soon as the roll is requested and the return value will
 * always be null. Additionally, the named region server may schedule store flushes at the
 * request of the wal handling the roll request.
 *
 * When talking to a 0.98 or older HBase deployment, the rolling is synchronous and the
 * return value may be either null or a list of encoded region names.
 *
 * @param serverName
 *          The servername of the regionserver. A server name is made of host,
 *          port and startcode. This is mandatory. Here is an example:
 *          <code> host187.example.com,60020,1289493121758</code>
 * @return a set of {@link HRegionInfo#getEncodedName()} that would allow the wal to
 *         clean up some underlying files. null if there's nothing to flush.
 * @throws IOException if a remote or network exception occurs
 * @throws FailedLogCloseException
 * @deprecated use {@link #rollWALWriter(ServerName)}
 */
@Deprecated
public synchronized byte[][] rollHLogWriter(String serverName)
    throws IOException, FailedLogCloseException {
  ServerName sn = ServerName.valueOf(serverName);
  final RollWALWriterResponse response = rollWALWriterImpl(sn);
  int regionCount = response.getRegionToFlushCount();
  if (0 == regionCount) {
    return null;
  }
  byte[][] regionsToFlush = new byte[regionCount][];
  for (int i = 0; i < regionCount; i++) {
    ByteString region = response.getRegionToFlush(i);
    regionsToFlush[i] = region.toByteArray();
  }
  return regionsToFlush;
}
项目:HIndex    文件:MockRegionServer.java   
@Override
public RollWALWriterResponse rollWALWriter(RpcController controller,
    RollWALWriterRequest request) throws ServiceException {
  // TODO Auto-generated method stub
  return null;
}
项目:PyroDB    文件:MockRegionServer.java   
@Override
public RollWALWriterResponse rollWALWriter(RpcController controller,
    RollWALWriterRequest request) throws ServiceException {
  // TODO Auto-generated method stub
  return null;
}
项目:c5    文件:MockRegionServer.java   
@Override
public RollWALWriterResponse rollWALWriter(RpcController controller,
    RollWALWriterRequest request) throws ServiceException {
  // TODO Auto-generated method stub
  return null;
}
项目:DominoHBase    文件:MockRegionServer.java   
@Override
public RollWALWriterResponse rollWALWriter(RpcController controller,
    RollWALWriterRequest request) throws ServiceException {
  // TODO Auto-generated method stub
  return null;
}