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


Java ReplicationLoadSource类代码示例

本文整理汇总了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;
}
 
开发者ID:apache,项目名称:hbase,代码行数:18,代码来源:ServerMetricsBuilder.java

示例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;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:9,代码来源:ProtobufUtil.java

示例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();
}
 
开发者ID:apache,项目名称:hbase,代码行数:11,代码来源:ProtobufUtil.java

示例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());
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:6,代码来源:ProtobufUtil.java

示例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();
}
 
开发者ID:apache,项目名称:hbase,代码行数:9,代码来源:ServerLoad.java

示例6: setReplicationLoadSources

import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //导入依赖的package包/类
public ServerMetricsBuilder setReplicationLoadSources(List<ReplicationLoadSource> value) {
  this.sources = value;
  return this;
}
 
开发者ID:apache,项目名称:hbase,代码行数:5,代码来源:ServerMetricsBuilder.java

示例7: getReplicationLoadSourceList

import org.apache.hadoop.hbase.replication.ReplicationLoadSource; //导入依赖的package包/类
@Override
public List<ReplicationLoadSource> getReplicationLoadSourceList() {
  return Collections.unmodifiableList(sources);
}
 
开发者ID:apache,项目名称:hbase,代码行数:5,代码来源:ServerMetricsBuilder.java

示例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());
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:8,代码来源:ServerLoad.java

示例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();
 
开发者ID:apache,项目名称:hbase,代码行数:6,代码来源:ServerMetrics.java


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