org.apache.hadoop.hbase.protobuf.generated.AdminProtos Java Examples
The following examples show how to use
org.apache.hadoop.hbase.protobuf.generated.AdminProtos.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 5 votes |
@Override public org.apache.hadoop.hbase.protobuf.generated.AdminProtos.UpdateConfigurationResponse updateConfiguration( com.google.protobuf.RpcController controller, org.apache.hadoop.hbase.protobuf.generated.AdminProtos.UpdateConfigurationRequest request) throws com.google.protobuf.ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #2
Source File: SepConsumer.java From hbase-indexer with Apache License 2.0 | 5 votes |
private List<RpcServer.BlockingServiceAndInterface> getServices() { List<RpcServer.BlockingServiceAndInterface> bssi = new ArrayList<RpcServer.BlockingServiceAndInterface>(1); bssi.add(new RpcServer.BlockingServiceAndInterface( AdminProtos.AdminService.newReflectiveBlockingService(this), AdminProtos.AdminService.BlockingInterface.class)); return bssi; }
Example #3
Source File: ReplicateHRegionServer.java From DataLink with Apache License 2.0 | 5 votes |
private List<RpcServer.BlockingServiceAndInterface> getServices() { List<RpcServer.BlockingServiceAndInterface> bssi = new ArrayList<>(1); bssi.add(new RpcServer.BlockingServiceAndInterface( AdminProtos.AdminService.newReflectiveBlockingService(this), AdminProtos.AdminService.BlockingInterface.class)); return bssi; }
Example #4
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.CloseRegionResponse closeRegion(RpcController rpcController, AdminProtos.CloseRegionRequest closeRegionRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #5
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.ReplicateWALEntryResponse replicateWALEntry(RpcController rpcController, AdminProtos.ReplicateWALEntryRequest replicateWALEntryRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #6
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.ReplicateWALEntryResponse replay(final RpcController controller, final AdminProtos.ReplicateWALEntryRequest request) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #7
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.RollWALWriterResponse rollWALWriter(RpcController rpcController, AdminProtos.RollWALWriterRequest rollWALWriterRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #8
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.GetServerInfoResponse getServerInfo(RpcController rpcController, AdminProtos.GetServerInfoRequest getServerInfoRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #9
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.StopServerResponse stopServer(RpcController rpcController, AdminProtos.StopServerRequest stopServerRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #10
Source File: SepConsumer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.ReplicateWALEntryResponse replicateWALEntry(final RpcController controller, final AdminProtos.ReplicateWALEntryRequest request) throws ServiceException { try { // TODO Recording of last processed timestamp won't work if two batches of log entries are sent out of order long lastProcessedTimestamp = -1; SepEventExecutor eventExecutor = new SepEventExecutor(listener, executors, 100, sepMetrics); List<AdminProtos.WALEntry> entries = request.getEntryList(); CellScanner cells = ((PayloadCarryingRpcController)controller).cellScanner(); for (final AdminProtos.WALEntry entry : entries) { TableName tableName = (entry.getKey().getWriteTime() < subscriptionTimestamp) ? null : TableName.valueOf(entry.getKey().getTableName().toByteArray()); Multimap<ByteBuffer, Cell> keyValuesPerRowKey = ArrayListMultimap.create(); final Map<ByteBuffer, byte[]> payloadPerRowKey = Maps.newHashMap(); int count = entry.getAssociatedCellCount(); for (int i = 0; i < count; i++) { if (!cells.advance()) { throw new ArrayIndexOutOfBoundsException("Expected=" + count + ", index=" + i); } // this signals to us that we simply need to skip over count of cells if (tableName == null) { continue; } Cell cell = cells.current(); ByteBuffer rowKey = ByteBuffer.wrap(cell.getRowArray(), cell.getRowOffset(), cell.getRowLength()); byte[] payload; KeyValue kv = KeyValueUtil.ensureKeyValue(cell); if (payloadExtractor != null && (payload = payloadExtractor.extractPayload(tableName.toBytes(), kv)) != null) { if (payloadPerRowKey.containsKey(rowKey)) { log.error("Multiple payloads encountered for row " + Bytes.toStringBinary(rowKey) + ", choosing " + Bytes.toStringBinary(payloadPerRowKey.get(rowKey))); } else { payloadPerRowKey.put(rowKey, payload); } } keyValuesPerRowKey.put(rowKey, kv); } for (final ByteBuffer rowKeyBuffer : keyValuesPerRowKey.keySet()) { final List<Cell> keyValues = (List<Cell>) keyValuesPerRowKey.get(rowKeyBuffer); final SepEvent sepEvent = new SepEvent(tableName.toBytes(), CellUtil.cloneRow(keyValues.get(0)), keyValues, payloadPerRowKey.get(rowKeyBuffer)); eventExecutor.scheduleSepEvent(sepEvent); lastProcessedTimestamp = Math.max(lastProcessedTimestamp, entry.getKey().getWriteTime()); } } List<Future<?>> futures = eventExecutor.flush(); waitOnSepEventCompletion(futures); if (lastProcessedTimestamp > 0) { sepMetrics.reportSepTimestamp(lastProcessedTimestamp); } return AdminProtos.ReplicateWALEntryResponse.newBuilder().build(); } catch (IOException ie) { throw new ServiceException(ie); } }
Example #11
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.GetRegionInfoResponse getRegionInfo(RpcController rpcController, AdminProtos.GetRegionInfoRequest getRegionInfoRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #12
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.GetStoreFileResponse getStoreFile(RpcController rpcController, AdminProtos.GetStoreFileRequest getStoreFileRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #13
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.GetOnlineRegionResponse getOnlineRegion(RpcController rpcController, AdminProtos.GetOnlineRegionRequest getOnlineRegionRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #14
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.OpenRegionResponse openRegion(RpcController rpcController, AdminProtos.OpenRegionRequest openRegionRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #15
Source File: BaseHRegionServer.java From hbase-indexer with Apache License 2.0 | 4 votes |
@Override public AdminProtos.MergeRegionsResponse mergeRegions(RpcController rpcController, AdminProtos.MergeRegionsRequest mergeRegionsRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #16
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.UpdateFavoredNodesResponse updateFavoredNodes(RpcController controller, AdminProtos.UpdateFavoredNodesRequest request) { throw new UnsupportedOperationException("Not implemented"); }
Example #17
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.FlushRegionResponse flushRegion(RpcController rpcController, AdminProtos.FlushRegionRequest flushRegionRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #18
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.SplitRegionResponse splitRegion(RpcController rpcController, AdminProtos.SplitRegionRequest splitRegionRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #19
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.CompactRegionResponse compactRegion(RpcController rpcController, AdminProtos.CompactRegionRequest compactRegionRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #20
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.MergeRegionsResponse mergeRegions(RpcController rpcController, AdminProtos.MergeRegionsRequest mergeRegionsRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #21
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.ReplicateWALEntryResponse replicateWALEntry(RpcController rpcController, AdminProtos.ReplicateWALEntryRequest replicateWALEntryRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #22
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.ReplicateWALEntryResponse replay(RpcController controller, AdminProtos.ReplicateWALEntryRequest request) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #23
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.RollWALWriterResponse rollWALWriter(RpcController rpcController, AdminProtos.RollWALWriterRequest rollWALWriterRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #24
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.GetServerInfoResponse getServerInfo(RpcController rpcController, AdminProtos.GetServerInfoRequest getServerInfoRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #25
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.StopServerResponse stopServer(RpcController rpcController, AdminProtos.StopServerRequest stopServerRequest) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #26
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.UpdateConfigurationResponse updateConfiguration(RpcController controller, AdminProtos.UpdateConfigurationRequest request) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #27
Source File: BaseHRegionServer.java From spliceengine with GNU Affero General Public License v3.0 | 4 votes |
public AdminProtos.WarmupRegionResponse warmupRegion(RpcController controller, AdminProtos.WarmupRegionRequest request) throws ServiceException { throw new UnsupportedOperationException("Not implemented"); }
Example #28
Source File: BaseHRegionServer.java From DataLink with Apache License 2.0 | 4 votes |
@Override public AdminProtos.StopServerResponse stopServer(RpcController controller, AdminProtos.StopServerRequest request) throws ServiceException { throw new UnsupportedOperationException("No need to support."); }
Example #29
Source File: BaseHRegionServer.java From DataLink with Apache License 2.0 | 4 votes |
@Override public AdminProtos.GetStoreFileResponse getStoreFile(RpcController controller, AdminProtos.GetStoreFileRequest request) throws ServiceException { throw new UnsupportedOperationException("No need to support."); }
Example #30
Source File: BaseHRegionServer.java From DataLink with Apache License 2.0 | 4 votes |
@Override public AdminProtos.GetOnlineRegionResponse getOnlineRegion(RpcController controller, AdminProtos.GetOnlineRegionRequest request) throws ServiceException { throw new UnsupportedOperationException("No need to support."); }