本文整理匯總了Java中org.apache.hadoop.hbase.replication.ReplicationLoadSink類的典型用法代碼示例。如果您正苦於以下問題:Java ReplicationLoadSink類的具體用法?Java ReplicationLoadSink怎麽用?Java ReplicationLoadSink使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ReplicationLoadSink類屬於org.apache.hadoop.hbase.replication包,在下文中一共展示了ReplicationLoadSink類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: ServerMetricsImpl
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
ServerMetricsImpl(ServerName serverName, long requestCountPerSecond, long requestCount,
Size usedHeapSize, Size maxHeapSize, int infoServerPort, List<ReplicationLoadSource> sources,
ReplicationLoadSink sink, Map<byte[], RegionMetrics> regionStatus,
Set<String> coprocessorNames, long reportTimestamp, long lastReportTimestamp) {
this.serverName = Preconditions.checkNotNull(serverName);
this.requestCountPerSecond = requestCountPerSecond;
this.requestCount = requestCount;
this.usedHeapSize = Preconditions.checkNotNull(usedHeapSize);
this.maxHeapSize = Preconditions.checkNotNull(maxHeapSize);
this.infoServerPort = infoServerPort;
this.sources = Preconditions.checkNotNull(sources);
this.sink = sink;
this.regionStatus = Preconditions.checkNotNull(regionStatus);
this.coprocessorNames =Preconditions.checkNotNull(coprocessorNames);
this.reportTimestamp = reportTimestamp;
this.lastReportTimestamp = lastReportTimestamp;
}
示例2: getReplicationLoadSink
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
/**
* Call directly from client such as hbase shell
* @return ReplicationLoadSink
*/
public ReplicationLoadSink getReplicationLoadSink() {
if (serverLoad.hasReplLoadSink()) {
return ProtobufUtil.toReplicationLoadSink(serverLoad.getReplLoadSink());
} else {
return null;
}
}
示例3: toReplicationLoadSink
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
public static ClusterStatusProtos.ReplicationLoadSink toReplicationLoadSink(
ReplicationLoadSink rls) {
return ClusterStatusProtos.ReplicationLoadSink.newBuilder()
.setAgeOfLastAppliedOp(rls.getAgeOfLastAppliedOp())
.setTimeStampsOfLastAppliedOp(rls.getTimeStampsOfLastAppliedOp())
.build();
}
示例4: toReplicationLoadSink
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
public static ReplicationLoadSink toReplicationLoadSink(
ClusterStatusProtos.ReplicationLoadSink cls) {
return new ReplicationLoadSink(cls.getAgeOfLastAppliedOp(), cls.getTimeStampsOfLastAppliedOp());
}
示例5: getReplicationLoadSink
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
/**
* Call directly from client such as hbase shell
* @return ReplicationLoadSink
*/
@Override
public ReplicationLoadSink getReplicationLoadSink() {
return metrics.getReplicationLoadSink();
}
示例6: setReplicationLoadSink
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
public ServerMetricsBuilder setReplicationLoadSink(ReplicationLoadSink value) {
this.sink = value;
return this;
}
示例7: getReplicationLoadSink
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
@Override
public ReplicationLoadSink getReplicationLoadSink() {
return sink;
}
示例8: getReplicationLoadSink
import org.apache.hadoop.hbase.replication.ReplicationLoadSink; //導入依賴的package包/類
/**
* Call directly from client such as hbase shell
* @return ReplicationLoadSink
*/
@Nullable
ReplicationLoadSink getReplicationLoadSink();