本文整理了Java中org.apache.hadoop.hbase.regionserver.Store.getTotalStaticBloomSize()
方法的一些代码示例,展示了Store.getTotalStaticBloomSize()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Store.getTotalStaticBloomSize()
方法的具体详情如下:
包路径:org.apache.hadoop.hbase.regionserver.Store
类名称:Store
方法名:getTotalStaticBloomSize
[英]Returns the total byte size of all Bloom filter bit arrays. For compound Bloom filters even the Bloom blocks currently not loaded into the block cache are counted.
[中]返回所有Bloom筛选器位数组的总字节大小。对于复合Bloom过滤器,即使当前未加载到块缓存中的Bloom块也会被计数。
代码示例来源:origin: apache/hbase
tempTotalStaticBloomSize += store.getTotalStaticBloomSize();
tempTotalStaticIndexSize += store.getTotalStaticIndexSize();
tempFlushedCellsCount += store.getFlushedCellsCount();
代码示例来源:origin: co.cask.hbase/hbase
(int) (store.getTotalStaticBloomSize() / 1024);
代码示例来源:origin: co.cask.hbase/hbase
long tmpStaticBloomSize = store.getTotalStaticBloomSize();
schemaMetrics.accumulateStoreMetric(tempVals,
StoreMetricType.STATIC_BLOOM_SIZE_KB,
代码示例来源:origin: harbby/presto-connectors
tempStoreFileSize += store.getStorefilesSize();
tempStorefileIndexSize += store.getStorefilesIndexSize();
tempTotalStaticBloomSize += store.getTotalStaticBloomSize();
tempTotalStaticIndexSize += store.getTotalStaticIndexSize();
tempFlushedCellsCount += store.getFlushedCellsCount();
代码示例来源:origin: harbby/presto-connectors
totalStaticBloomSizeKB += (int) (store.getTotalStaticBloomSize() / 1024);
内容来源于网络,如有侵权,请联系作者删除!