本文整理匯總了Java中org.apache.hadoop.hbase.replication.ReplicationLoadSource類的典型用法代碼示例。如果您正苦於以下問題:Java ReplicationLoadSource類的具體用法?Java ReplicationLoadSource怎麽用?Java ReplicationLoadSource使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ReplicationLoadSource類屬於org.apache.hadoop.hbase.replication包,在下文中一共展示了ReplicationLoadSource類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: ServerMetricsImpl
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的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: toReplicationLoadSourceList
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
public static List<ReplicationLoadSource> toReplicationLoadSourceList(
List<ClusterStatusProtos.ReplicationLoadSource> clsList) {
ArrayList<ReplicationLoadSource> rlsList = new ArrayList<ReplicationLoadSource>();
for (ClusterStatusProtos.ReplicationLoadSource cls : clsList) {
rlsList.add(toReplicationLoadSource(cls));
}
return rlsList;
}
示例3: toReplicationLoadSource
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
public static ClusterStatusProtos.ReplicationLoadSource toReplicationLoadSource(
ReplicationLoadSource rls) {
return ClusterStatusProtos.ReplicationLoadSource.newBuilder()
.setPeerID(rls.getPeerID())
.setAgeOfLastShippedOp(rls.getAgeOfLastShippedOp())
.setSizeOfLogQueue((int) rls.getSizeOfLogQueue())
.setTimeStampOfLastShippedOp(rls.getTimeStampOfLastShippedOp())
.setReplicationLag(rls.getReplicationLag())
.build();
}
示例4: toReplicationLoadSource
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
public static ReplicationLoadSource toReplicationLoadSource(
ClusterStatusProtos.ReplicationLoadSource cls) {
return new ReplicationLoadSource(cls.getPeerID(), cls.getAgeOfLastShippedOp(),
cls.getSizeOfLogQueue(), cls.getTimeStampOfLastShippedOp(), cls.getReplicationLag());
}
示例5: getReplicationLoadSourceList
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
/**
* Call directly from client such as hbase shell
* @return the list of ReplicationLoadSource
*/
@Override
public List<ReplicationLoadSource> getReplicationLoadSourceList() {
return metrics.getReplicationLoadSourceList();
}
示例6: setReplicationLoadSources
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
public ServerMetricsBuilder setReplicationLoadSources(List<ReplicationLoadSource> value) {
this.sources = value;
return this;
}
示例7: getReplicationLoadSourceList
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
@Override
public List<ReplicationLoadSource> getReplicationLoadSourceList() {
return Collections.unmodifiableList(sources);
}
示例8: getReplicationLoadSourceList
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
/**
* Call directly from client such as hbase shell
* @return the list of ReplicationLoadSource
*/
public List<ReplicationLoadSource> getReplicationLoadSourceList() {
return ProtobufUtil.toReplicationLoadSourceList(serverLoad.getReplLoadSourceList());
}
示例9: getReplicationLoadSourceList
import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //導入依賴的package包/類
/**
* Call directly from client such as hbase shell
* @return the list of ReplicationLoadSource
*/
List<ReplicationLoadSource> getReplicationLoadSourceList();