Uses of Class
org.apache.hadoop.hbase.regionserver.StoreFile

Packages that use StoreFile
org.apache.hadoop.hbase.backup   
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.compactions   
org.apache.hadoop.hbase.security.access   
 

Uses of StoreFile in org.apache.hadoop.hbase.backup
 

Method parameters in org.apache.hadoop.hbase.backup with type arguments of type StoreFile
static void HFileArchiver.archiveStoreFiles(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, HRegion parent, byte[] family, Collection<StoreFile> compactedFiles)
          Remove the store files, either by archiving them or outright deletion
 

Uses of StoreFile in org.apache.hadoop.hbase.coprocessor
 

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type StoreFile
 void BaseRegionObserver.postCompact(ObserverContext<RegionCoprocessorEnvironment> e, Store store, StoreFile resultFile)
           
 void RegionObserver.postCompact(ObserverContext<RegionCoprocessorEnvironment> c, Store store, StoreFile resultFile)
          Called after compaction has completed and the new store file has been moved in to place.
 void BaseRegionObserver.postCompact(ObserverContext<RegionCoprocessorEnvironment> e, Store store, StoreFile resultFile, CompactionRequest request)
           
 void RegionObserver.postCompact(ObserverContext<RegionCoprocessorEnvironment> c, Store store, StoreFile resultFile, CompactionRequest request)
          Called after compaction has completed and the new store file has been moved in to place.
 void BaseRegionObserver.postFlush(ObserverContext<RegionCoprocessorEnvironment> e, Store store, StoreFile resultFile)
           
 void RegionObserver.postFlush(ObserverContext<RegionCoprocessorEnvironment> c, Store store, StoreFile resultFile)
          Called after a Store's memstore is flushed to disk.
 

Method parameters in org.apache.hadoop.hbase.coprocessor with type arguments of type StoreFile
 void BaseRegionObserver.postCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, com.google.common.collect.ImmutableList<StoreFile> selected)
           
 void RegionObserver.postCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, com.google.common.collect.ImmutableList<StoreFile> selected)
          Called after the StoreFiles to compact have been selected from the available candidates.
 void BaseRegionObserver.postCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, com.google.common.collect.ImmutableList<StoreFile> selected, CompactionRequest request)
           
 void RegionObserver.postCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, com.google.common.collect.ImmutableList<StoreFile> selected, CompactionRequest request)
          Called after the StoreFiles to compact have been selected from the available candidates.
 void BaseRegionObserver.preCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, List<StoreFile> candidates)
           
 void RegionObserver.preCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, List<StoreFile> candidates)
          Called prior to selecting the StoreFiles to compact from the list of available candidates.
 void BaseRegionObserver.preCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, List<StoreFile> candidates, CompactionRequest request)
           
 void RegionObserver.preCompactSelection(ObserverContext<RegionCoprocessorEnvironment> c, Store store, List<StoreFile> candidates, CompactionRequest request)
          Called prior to selecting the StoreFiles to compact from the list of available candidates.
 

Uses of StoreFile in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver that return types with arguments of type StoreFile
 List<StoreFile> HRegion.close()
          Close down this HRegion.
 List<StoreFile> HRegion.close(boolean abort)
          Close down this HRegion.
 List<StoreFile> Store.getStorefiles()
           
 com.google.common.collect.ImmutableList<StoreFile> Store.sortAndClone(List<StoreFile> storeFiles)
           
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type StoreFile
 void RegionCoprocessorHost.postCompact(Store store, StoreFile resultFile, CompactionRequest request)
          Called after the store compaction has completed.
 void RegionCoprocessorHost.postFlush(Store store, StoreFile storeFile)
          Invoked after a memstore flush
 

Method parameters in org.apache.hadoop.hbase.regionserver with type arguments of type StoreFile
static long Store.getLowestTimestamp(List<StoreFile> candidates)
           
static long StoreFile.getMaxMemstoreTSInList(Collection<StoreFile> sfs)
          Return the largest memstoreTS found across all storefiles in the given list.
static long StoreFile.getMaxSequenceIdInList(Collection<StoreFile> sfs)
          Return the highest sequence ID found across all storefiles in the given list.
static List<StoreFileScanner> StoreFileScanner.getScannersForStoreFiles(Collection<StoreFile> files, boolean cacheBlocks, boolean usePread)
          Return an array of scanners corresponding to the given set of store files.
static List<StoreFileScanner> StoreFileScanner.getScannersForStoreFiles(Collection<StoreFile> files, boolean cacheBlocks, boolean usePread, boolean isCompaction)
          Return an array of scanners corresponding to the given set of store files.
static List<StoreFileScanner> StoreFileScanner.getScannersForStoreFiles(Collection<StoreFile> files, boolean cacheBlocks, boolean usePread, boolean isCompaction, ScanQueryMatcher matcher)
          Return an array of scanners corresponding to the given set of store files, And set the ScanQueryMatcher for each store file scanner for further optimization
 void RegionCoprocessorHost.postCompactSelection(Store store, com.google.common.collect.ImmutableList<StoreFile> selected, CompactionRequest request)
          Called after the StoreFiles to be compacted have been selected from the available candidates.
 boolean RegionCoprocessorHost.preCompactSelection(Store store, List<StoreFile> candidates, CompactionRequest request)
          Called prior to selecting the StoreFiles for compaction from the list of currently available candidates.
 com.google.common.collect.ImmutableList<StoreFile> Store.sortAndClone(List<StoreFile> storeFiles)
           
 

Uses of StoreFile in org.apache.hadoop.hbase.regionserver.compactions
 

Methods in org.apache.hadoop.hbase.regionserver.compactions that return types with arguments of type StoreFile
 List<StoreFile> CompactionRequest.getFiles()
          Gets the StoreFiles for the request
 List<StoreFile> CompactSelection.getFilesToCompact()
           
 

Method parameters in org.apache.hadoop.hbase.regionserver.compactions with type arguments of type StoreFile
static CompactionRequest CompactionRequest.getRequestForTesting(Store store, org.apache.hadoop.conf.Configuration conf, Collection<StoreFile> selection, boolean isMajor)
          Create a simple compaction request just for testing - this lets you specify everything you would need in the general case of testing compactions from an external perspective (e.g.
 

Constructor parameters in org.apache.hadoop.hbase.regionserver.compactions with type arguments of type StoreFile
CompactSelection(org.apache.hadoop.conf.Configuration conf, List<StoreFile> filesToCompact)
           
 

Uses of StoreFile in org.apache.hadoop.hbase.security.access
 

Method parameters in org.apache.hadoop.hbase.security.access with type arguments of type StoreFile
 void AccessController.preCompactSelection(ObserverContext<RegionCoprocessorEnvironment> e, Store store, List<StoreFile> candidates)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.