Uses of Class
org.apache.hadoop.hbase.regionserver.wal.HLogKey

Packages that use HLogKey
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.mapreduce Provides HBase MapReduce Input/OutputFormats, a table indexing MapReduce job, and utility 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.regionserver.wal   
org.apache.hadoop.hbase.replication.regionserver   
 

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

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type HLogKey
 void RegionObserver.postWALRestore(ObserverContext<RegionCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called after a WALEdit replayed for this region.
 void BaseRegionObserver.postWALRestore(ObserverContext<RegionCoprocessorEnvironment> env, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void WALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called after a WALEdit is writen to WAL.
 void RegionObserver.preWALRestore(ObserverContext<RegionCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called before a WALEdit replayed for this region.
 void BaseRegionObserver.preWALRestore(ObserverContext<RegionCoprocessorEnvironment> env, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 boolean WALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called before a WALEdit is writen to WAL.
 

Uses of HLogKey in org.apache.hadoop.hbase.mapreduce
 

Methods in org.apache.hadoop.hbase.mapreduce that return types with arguments of type HLogKey
 org.apache.hadoop.mapreduce.RecordReader<HLogKey,WALEdit> HLogInputFormat.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split, org.apache.hadoop.mapreduce.TaskAttemptContext context)
           
 

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type HLogKey
 void RegionCoprocessorHost.postWALRestore(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 boolean RegionCoprocessorHost.preWALRestore(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 

Uses of HLogKey in org.apache.hadoop.hbase.regionserver.wal
 

Fields in org.apache.hadoop.hbase.regionserver.wal with type parameters of type HLogKey
protected  Class<? extends HLogKey> SequenceFileLogReader.keyClass
           
 

Methods in org.apache.hadoop.hbase.regionserver.wal that return HLogKey
 HLogKey HLog.Entry.getKey()
          Gets the key
static HLogKey HLogUtil.newKey(org.apache.hadoop.conf.Configuration conf)
           
 

Methods in org.apache.hadoop.hbase.regionserver.wal that return types with arguments of type HLogKey
static Class<? extends HLogKey> HLogUtil.getKeyClass(org.apache.hadoop.conf.Configuration conf)
           
 

Methods in org.apache.hadoop.hbase.regionserver.wal with parameters of type HLogKey
 long HLog.append(HRegionInfo regionInfo, HLogKey logKey, WALEdit logEdit, HTableDescriptor htd, boolean doSync)
          Append an entry to the log.
 int HLogKey.compareTo(HLogKey o)
           
 void WALCoprocessorHost.postWALWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 boolean WALCoprocessorHost.preWALWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void WALActionsListener.visitLogEntryBeforeWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called before each write.
 void WALActionsListener.visitLogEntryBeforeWrite(HTableDescriptor htd, HLogKey logKey, WALEdit logEdit)
           
 

Constructors in org.apache.hadoop.hbase.regionserver.wal with parameters of type HLogKey
HLog.Entry(HLogKey key, WALEdit edit)
          Constructor for both params
 

Constructor parameters in org.apache.hadoop.hbase.regionserver.wal with type arguments of type HLogKey
SequenceFileLogReader(Class<? extends HLogKey> keyClass)
          This constructor allows a specific HLogKey implementation to override that which would otherwise be chosen via configuration property.
SequenceFileLogWriter(Class<? extends HLogKey> keyClass)
          This constructor allows a specific HLogKey implementation to override that which would otherwise be chosen via configuration property.
 

Uses of HLogKey in org.apache.hadoop.hbase.replication.regionserver
 

Methods in org.apache.hadoop.hbase.replication.regionserver with parameters of type HLogKey
 void Replication.visitLogEntryBeforeWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void Replication.visitLogEntryBeforeWrite(HTableDescriptor htd, HLogKey logKey, WALEdit logEdit)
           
 



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