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

Packages that use Store
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.compactions   
 

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

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type Store
 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.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.
 InternalScanner BaseRegionObserver.preCompact(ObserverContext<RegionCoprocessorEnvironment> e, Store store, InternalScanner scanner)
           
 InternalScanner RegionObserver.preCompact(ObserverContext<RegionCoprocessorEnvironment> c, Store store, InternalScanner scanner)
          Called prior to writing the StoreFiles selected for compaction into a new StoreFile.
 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.
 

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

Fields in org.apache.hadoop.hbase.regionserver with type parameters of type Store
protected  Map<byte[],Store> HRegion.stores
           
 

Methods in org.apache.hadoop.hbase.regionserver that return Store
 Store HRegion.getStore(byte[] column)
          Return HStore instance.
protected  Store HRegion.instantiateHStore(org.apache.hadoop.fs.Path tableDir, HColumnDescriptor c)
           
 

Methods in org.apache.hadoop.hbase.regionserver that return types with arguments of type Store
 Map<byte[],Store> HRegion.getStores()
           
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type Store
 void RegionCoprocessorHost.postCompact(Store store, StoreFile resultFile)
          Called after the store compaction has completed.
 void RegionCoprocessorHost.postCompactSelection(Store store, com.google.common.collect.ImmutableList<StoreFile> selected)
          Called after the StoreFiles to be compacted have been selected from the available candidates.
 InternalScanner RegionCoprocessorHost.preCompact(Store store, InternalScanner scanner)
          Called prior to rewriting the store files selected for compaction
 boolean RegionCoprocessorHost.preCompactSelection(Store store, List<StoreFile> candidates)
          Called prior to selecting the StoreFiles for compaction from the list of currently available candidates.
 void CompactionRequestor.requestCompaction(HRegion r, Store s, String why)
           
 void CompactSplitThread.requestCompaction(HRegion r, Store s, String why)
           
 void CompactionRequestor.requestCompaction(HRegion r, Store s, String why, int pri)
           
 void CompactSplitThread.requestCompaction(HRegion r, Store s, String why, int priority)
           
protected  boolean HRegion.restoreEdit(Store s, KeyValue kv)
          Used by tests
 

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

Methods in org.apache.hadoop.hbase.regionserver.compactions that return Store
 Store CompactionRequest.getStore()
          Gets the Store for the request
 

Constructors in org.apache.hadoop.hbase.regionserver.compactions with parameters of type Store
CompactionRequest(HRegion r, Store s, List<StoreFile> files, boolean isMajor, int p)
           
 



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