本文整理了Java中org.apache.hadoop.hbase.regionserver.HStore.flushCache()
方法的一些代码示例,展示了HStore.flushCache()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HStore.flushCache()
方法的具体详情如下:
包路径:org.apache.hadoop.hbase.regionserver.HStore
类名称:HStore
方法名:flushCache
[英]Write out current snapshot. Presumes #snapshot() has been called previously.
[中]写出当前快照。假定以前已调用过#snapshot()。
代码示例来源:origin: apache/hbase
@Override
public void flushCache(MonitoredTask status) throws IOException {
RegionServerServices rsService = region.getRegionServerServices();
ThroughputController throughputController =
rsService == null ? null : rsService.getFlushThroughputController();
tempFiles =
HStore.this.flushCache(cacheFlushSeqNum, snapshot, status, throughputController, tracker);
}
代码示例来源:origin: harbby/presto-connectors
@Override
public void flushCache(MonitoredTask status) throws IOException {
tempFiles = HStore.this.flushCache(cacheFlushSeqNum, snapshot, status);
}
内容来源于网络,如有侵权,请联系作者删除!