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

Packages that use WALEdit
org.apache.hadoop.hbase.constraint Restrict the domain of a data attribute, often times to fulfill business rules/requirements. 
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   
org.apache.hadoop.hbase.security.access   
 

Uses of WALEdit in org.apache.hadoop.hbase.constraint
 

Methods in org.apache.hadoop.hbase.constraint with parameters of type WALEdit
 void ConstraintProcessor.prePut(ObserverContext<RegionCoprocessorEnvironment> e, Put put, WALEdit edit, Durability durability)
           
 

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

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type WALEdit
 void BaseRegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> e, Delete delete, WALEdit edit, Durability durability)
           
 void RegionObserver.postDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
          Called after the client deletes a value.
 void BaseRegionObserver.postPut(ObserverContext<RegionCoprocessorEnvironment> e, Put put, WALEdit edit, Durability durability)
           
 void RegionObserver.postPut(ObserverContext<RegionCoprocessorEnvironment> c, Put put, WALEdit edit, Durability durability)
          Called after the client stores a value.
 void BaseRegionObserver.postWALRestore(ObserverContext<RegionCoprocessorEnvironment> env, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void RegionObserver.postWALRestore(ObserverContext<RegionCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called after a WALEdit replayed for this region.
 void WALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called after a WALEdit is writen to WAL.
 void BaseWALObserver.postWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void BaseRegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> e, Delete delete, WALEdit edit, Durability durability)
           
 void RegionObserver.preDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
          Called before the client deletes a value.
 void BaseRegionObserver.prePut(ObserverContext<RegionCoprocessorEnvironment> e, Put put, WALEdit edit, Durability durability)
           
 void RegionObserver.prePut(ObserverContext<RegionCoprocessorEnvironment> c, Put put, WALEdit edit, Durability durability)
          Called before the client stores a value.
 void BaseRegionObserver.preWALRestore(ObserverContext<RegionCoprocessorEnvironment> env, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void RegionObserver.preWALRestore(ObserverContext<RegionCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called before a WALEdit replayed for this region.
 boolean WALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called before a WALEdit is writen to WAL.
 boolean BaseWALObserver.preWALWrite(ObserverContext<WALCoprocessorEnvironment> ctx, HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 

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

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

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

Methods in org.apache.hadoop.hbase.regionserver that return WALEdit
 WALEdit MiniBatchOperationInProgress.getWalEdit(int index)
           
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type WALEdit
 void RegionCoprocessorHost.postDelete(Delete delete, WALEdit edit, Durability durability)
           
 void BaseRowProcessor.postProcess(HRegion region, WALEdit walEdit, boolean success)
           
 void RowProcessor.postProcess(HRegion region, WALEdit walEdit, boolean success)
          The hook to be executed after process() and applying the Mutations to region.
 void RegionCoprocessorHost.postPut(Put put, WALEdit edit, Durability durability)
           
 void RegionCoprocessorHost.postWALRestore(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void BaseRowProcessor.preBatchMutate(HRegion region, WALEdit walEdit)
           
 void RowProcessor.preBatchMutate(HRegion region, WALEdit walEdit)
          The hook to be executed after the process() but before applying the Mutations to region.
 boolean RegionCoprocessorHost.preDelete(Delete delete, WALEdit edit, Durability durability)
           
 void BaseRowProcessor.preProcess(HRegion region, WALEdit walEdit)
           
 void RowProcessor.preProcess(HRegion region, WALEdit walEdit)
          The hook to be executed before process().
 boolean RegionCoprocessorHost.prePut(Put put, WALEdit edit, Durability durability)
           
 boolean RegionCoprocessorHost.preWALRestore(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void RowProcessor.process(long now, HRegion region, List<Mutation> mutations, WALEdit walEdit)
          HRegion handles the locks and MVCC and invokes this method properly.
 void MiniBatchOperationInProgress.setWalEdit(int index, WALEdit walEdit)
          Sets the walEdit for the operation(Mutation) at the specified position.
 

Constructors in org.apache.hadoop.hbase.regionserver with parameters of type WALEdit
MiniBatchOperationInProgress(T[] operations, OperationStatus[] retCodeDetails, WALEdit[] walEditsFromCoprocessors, int firstIndex, int lastIndexExclusive)
           
 

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

Methods in org.apache.hadoop.hbase.regionserver.wal that return WALEdit
 WALEdit WALEdit.add(Cell cell)
          Adds a Cell to this edit
 WALEdit WALEdit.add(KeyValue kv)
          Deprecated. Use add(Cell) instead
static WALEdit WALEdit.createCompaction(HRegionInfo hri, WALProtos.CompactionDescriptor c)
          Create a compacion WALEdit
 WALEdit HLog.Entry.getEdit()
          Gets the edit
 

Methods in org.apache.hadoop.hbase.regionserver.wal with parameters of type WALEdit
 void HLog.append(HRegionInfo info, TableName tableName, WALEdit edits, long now, HTableDescriptor htd, AtomicLong sequenceId)
          Same as appendNoSync(HRegionInfo, TableName, WALEdit, List, long, HTableDescriptor), except it causes a sync on the log
 long HLog.appendNoSync(HRegionInfo info, TableName tableName, WALEdit edits, List<UUID> clusterIds, long now, HTableDescriptor htd, AtomicLong sequenceId, boolean isInMemstore, long nonceGroup, long nonce)
          Deprecated. 
 void WALCoprocessorHost.postWALWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 boolean WALCoprocessorHost.preWALWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void MetricsWAL.visitLogEntryBeforeWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void WALActionsListener.visitLogEntryBeforeWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
          Called before each write.
 void MetricsWAL.visitLogEntryBeforeWrite(HTableDescriptor htd, HLogKey logKey, WALEdit logEdit)
           
 void WALActionsListener.visitLogEntryBeforeWrite(HTableDescriptor htd, HLogKey logKey, WALEdit logEdit)
           
 

Method parameters in org.apache.hadoop.hbase.regionserver.wal with type arguments of type WALEdit
static List<HLogSplitter.MutationReplay> HLogSplitter.getMutationsFromWALEntry(AdminProtos.WALEntry entry, CellScanner cells, Pair<HLogKey,WALEdit> logEntry, boolean addLogReplayTag)
          This function is used to construct mutations from a WALEntry.
 

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

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

Methods in org.apache.hadoop.hbase.replication.regionserver with parameters of type WALEdit
static void Replication.scopeWALEdits(HTableDescriptor htd, HLogKey logKey, WALEdit logEdit)
          Utility method used to set the correct scopes on each log key.
 void Replication.visitLogEntryBeforeWrite(HRegionInfo info, HLogKey logKey, WALEdit logEdit)
           
 void Replication.visitLogEntryBeforeWrite(HTableDescriptor htd, HLogKey logKey, WALEdit logEdit)
           
 

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

Methods in org.apache.hadoop.hbase.security.access with parameters of type WALEdit
 void AccessController.postDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
           
 void AccessController.postPut(ObserverContext<RegionCoprocessorEnvironment> c, Put put, WALEdit edit, Durability durability)
           
 void AccessController.preDelete(ObserverContext<RegionCoprocessorEnvironment> c, Delete delete, WALEdit edit, Durability durability)
           
 void AccessController.prePut(ObserverContext<RegionCoprocessorEnvironment> c, Put put, WALEdit edit, Durability durability)
           
 



Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.