org.apache.hadoop.hbase.regionserver.Store.getTotalStaticIndexSize()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(210)

本文整理了Java中org.apache.hadoop.hbase.regionserver.Store.getTotalStaticIndexSize()方法的一些代码示例,展示了Store.getTotalStaticIndexSize()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Store.getTotalStaticIndexSize()方法的具体详情如下:
包路径:org.apache.hadoop.hbase.regionserver.Store
类名称:Store
方法名:getTotalStaticIndexSize

Store.getTotalStaticIndexSize介绍

[英]Returns the total size of all index blocks in the data block indexes, including the root level, intermediate levels, and the leaf level for multi-level indexes, or just the root level for single-level indexes.
[中]返回数据块索引中所有索引块的总大小,包括多级别索引的根级别、中间级别和叶级别,或仅返回单级别索引的根级别。

代码示例

代码示例来源:origin: apache/hbase

tempTotalStaticIndexSize += store.getTotalStaticIndexSize();
tempFlushedCellsCount += store.getFlushedCellsCount();
tempCompactedCellsCount += store.getCompactedCellsCount();

代码示例来源:origin: co.cask.hbase/hbase

(int) (store.getTotalStaticIndexSize() / 1024);

代码示例来源:origin: co.cask.hbase/hbase

long tmpStaticIndexSize = store.getTotalStaticIndexSize();
schemaMetrics.accumulateStoreMetric(tempVals,
  StoreMetricType.STATIC_INDEX_SIZE_KB,

代码示例来源:origin: harbby/presto-connectors

tempStorefileIndexSize += store.getStorefilesIndexSize();
tempTotalStaticBloomSize += store.getTotalStaticBloomSize();
tempTotalStaticIndexSize += store.getTotalStaticIndexSize();
tempFlushedCellsCount += store.getFlushedCellsCount();
tempCompactedCellsCount += store.getCompactedCellsCount();

代码示例来源:origin: harbby/presto-connectors

totalStaticIndexSizeKB += (int) (store.getTotalStaticIndexSize() / 1024);
totalStaticBloomSizeKB += (int) (store.getTotalStaticBloomSize() / 1024);

相关文章