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

x33g5p2x  于2022-01-20 转载在 其他  
字(4.6k)|赞(0)|评价(0)|浏览(167)

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

HStore.getScanners介绍

[英]Create scanners on the given files and if needed on the memstore with no filtering based on TTL (that happens further down the line).
[中]在给定的文件上创建扫描器,如果需要的话,在memstore上创建扫描器,而不基于TTL进行过滤(这种情况会进一步发生)。

代码示例

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

  1. /**
  2. * Get all scanners with no filtering based on TTL (that happens further down the line).
  3. * @param cacheBlocks cache the blocks or not
  4. * @param usePread true to use pread, false if not
  5. * @param isCompaction true if the scanner is created for compaction
  6. * @param matcher the scan query matcher
  7. * @param startRow the start row
  8. * @param stopRow the stop row
  9. * @param readPt the read point of the current scan
  10. * @return all scanners for this store
  11. */
  12. public List<KeyValueScanner> getScanners(boolean cacheBlocks, boolean isGet, boolean usePread,
  13. boolean isCompaction, ScanQueryMatcher matcher, byte[] startRow, byte[] stopRow, long readPt)
  14. throws IOException {
  15. return getScanners(cacheBlocks, usePread, isCompaction, matcher, startRow, true, stopRow, false,
  16. readPt);
  17. }

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

  1. /**
  2. * Create scanners on the given files and if needed on the memstore with no filtering based on TTL
  3. * (that happens further down the line).
  4. * @param files the list of files on which the scanners has to be created
  5. * @param cacheBlocks cache the blocks or not
  6. * @param usePread true to use pread, false if not
  7. * @param isCompaction true if the scanner is created for compaction
  8. * @param matcher the scan query matcher
  9. * @param startRow the start row
  10. * @param stopRow the stop row
  11. * @param readPt the read point of the current scan
  12. * @param includeMemstoreScanner true if memstore has to be included
  13. * @return scanners on the given files and on the memstore if specified
  14. */
  15. public List<KeyValueScanner> getScanners(List<HStoreFile> files, boolean cacheBlocks,
  16. boolean isGet, boolean usePread, boolean isCompaction, ScanQueryMatcher matcher,
  17. byte[] startRow, byte[] stopRow, long readPt, boolean includeMemstoreScanner)
  18. throws IOException {
  19. return getScanners(files, cacheBlocks, usePread, isCompaction, matcher, startRow, true, stopRow,
  20. false, readPt, includeMemstoreScanner);
  21. }

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

  1. @Override
  2. public List<KeyValueScanner> getScanners(List<HStoreFile> files, boolean cacheBlocks,
  3. boolean usePread, boolean isCompaction, ScanQueryMatcher matcher, byte[] startRow,
  4. boolean includeStartRow, byte[] stopRow, boolean includeStopRow, long readPt,
  5. boolean includeMemstoreScanner) throws IOException {
  6. hook.getScanners(this);
  7. return super.getScanners(files, cacheBlocks, usePread, isCompaction, matcher, startRow, true,
  8. stopRow, false, readPt, includeMemstoreScanner);
  9. }

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

  1. @Override
  2. public void updateReaders(List<HStoreFile> sfs, List<KeyValueScanner> memStoreScanners)
  3. throws IOException {
  4. if (CollectionUtils.isEmpty(sfs) && CollectionUtils.isEmpty(memStoreScanners)) {
  5. return;
  6. }
  7. flushLock.lock();
  8. try {
  9. flushed = true;
  10. final boolean isCompaction = false;
  11. boolean usePread = get || scanUsePread;
  12. // SEE HBASE-19468 where the flushed files are getting compacted even before a scanner
  13. // calls next(). So its better we create scanners here rather than next() call. Ensure
  14. // these scanners are properly closed() whether or not the scan is completed successfully
  15. // Eagerly creating scanners so that we have the ref counting ticking on the newly created
  16. // store files. In case of stream scanners this eager creation does not induce performance
  17. // penalty because in scans (that uses stream scanners) the next() call is bound to happen.
  18. List<KeyValueScanner> scanners = store.getScanners(sfs, cacheBlocks, get, usePread,
  19. isCompaction, matcher, scan.getStartRow(), scan.getStopRow(), this.readPt, false);
  20. flushedstoreFileScanners.addAll(scanners);
  21. if (!CollectionUtils.isEmpty(memStoreScanners)) {
  22. clearAndClose(memStoreScannersAfterFlush);
  23. memStoreScannersAfterFlush.addAll(memStoreScanners);
  24. }
  25. } finally {
  26. flushLock.unlock();
  27. }
  28. // Let the next() call handle re-creating and seeking
  29. }

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

  1. return null;
  2. return getScanners(filesToReopen, cacheBlocks, false, false, matcher, startRow,
  3. includeStartRow, stopRow, includeStopRow, readPt, false);
  4. } finally {

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

  1. store.getScanners(cacheBlocks, scanUsePread, false, matcher, scan.getStartRow(),
  2. scan.includeStartRow(), scan.getStopRow(), scan.includeStopRow(), this.readPt));

代码示例来源:origin: org.apache.hbase/hbase-server

  1. @Override
  2. public List<KeyValueScanner> getScanners(List<HStoreFile> files, boolean cacheBlocks,
  3. boolean usePread, boolean isCompaction, ScanQueryMatcher matcher, byte[] startRow,
  4. boolean includeStartRow, byte[] stopRow, boolean includeStopRow, long readPt,
  5. boolean includeMemstoreScanner) throws IOException {
  6. hook.getScanners(this);
  7. return super.getScanners(files, cacheBlocks, usePread, isCompaction, matcher, startRow, true,
  8. stopRow, false, readPt, includeMemstoreScanner);
  9. }

相关文章

HStore类方法