本文整理汇总了Java中org.apache.hadoop.hbase.regionserver.metrics.OperationMetrics类的典型用法代码示例。如果您正苦于以下问题:Java OperationMetrics类的具体用法?Java OperationMetrics怎么用?Java OperationMetrics使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OperationMetrics类属于org.apache.hadoop.hbase.regionserver.metrics包,在下文中一共展示了OperationMetrics类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: HRegion
import org.apache.hadoop.hbase.regionserver.metrics.OperationMetrics; //导入依赖的package包/类
/**
* Should only be used for testing purposes
*/
public HRegion() {
this.tableDir = null;
this.blockingMemStoreSize = 0L;
this.conf = null;
this.rowLockWaitDuration = DEFAULT_ROWLOCK_WAIT_DURATION;
this.rsServices = null;
this.baseConf = null;
this.fs = null;
this.timestampSlop = HConstants.LATEST_TIMESTAMP;
this.memstoreFlushSize = 0L;
this.log = null;
this.regiondir = null;
this.regionInfo = null;
this.htableDescriptor = null;
this.threadWakeFrequency = 0L;
this.coprocessorHost = null;
this.scannerReadPoints = new ConcurrentHashMap<RegionScanner, Long>();
this.opMetrics = new OperationMetrics();
this.maxBusyWaitDuration = 2 * HConstants.DEFAULT_HBASE_RPC_TIMEOUT;
this.busyWaitDuration = DEFAULT_BUSY_WAIT_DURATION;
this.maxBusyWaitMultiplier = 2;
this.deferredLogSyncDisabled = false;
}
开发者ID:fengchen8086,项目名称:LCIndex-HBase-0.94.16,代码行数:28,代码来源:HRegion.java
示例2: HRegion
import org.apache.hadoop.hbase.regionserver.metrics.OperationMetrics; //导入依赖的package包/类
/**
* Should only be used for testing purposes
*/
public HRegion(){
this.tableDir = null;
this.blockingMemStoreSize = 0L;
this.conf = null;
this.rowLockWaitDuration = DEFAULT_ROWLOCK_WAIT_DURATION;
this.rsServices = null;
this.baseConf = null;
this.fs = null;
this.timestampSlop = HConstants.LATEST_TIMESTAMP;
this.memstoreFlushSize = 0L;
this.log = null;
this.regiondir = null;
this.regionInfo = null;
this.htableDescriptor = null;
this.threadWakeFrequency = 0L;
this.coprocessorHost = null;
this.scannerReadPoints = new ConcurrentHashMap<RegionScanner, Long>();
this.opMetrics = new OperationMetrics();
this.maxBusyWaitDuration = 2 * HConstants.DEFAULT_HBASE_RPC_TIMEOUT;
this.busyWaitDuration = DEFAULT_BUSY_WAIT_DURATION;
this.maxBusyWaitMultiplier = 2;
this.deferredLogSyncDisabled = false;
}
开发者ID:wanhao,项目名称:IRIndex,代码行数:28,代码来源:HRegion.java
注:本文中的org.apache.hadoop.hbase.regionserver.metrics.OperationMetrics类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论