@InterfaceAudience.Private public class ValueRewritingObserver extends Object implements RegionObserver, RegionCoprocessor
RegionObserver.MutationTypeCoprocessor.State| Modifier and Type | Field and Description |
|---|---|
private CellBuilder |
cellBuilder |
private Bytes.ByteArrayComparator |
comparator |
static String |
ORIGINAL_VALUE_KEY |
static String |
REPLACED_VALUE_KEY |
private byte[] |
replacedValue |
private byte[] |
sourceValue |
PRIORITY_HIGHEST, PRIORITY_LOWEST, PRIORITY_SYSTEM, PRIORITY_USER, VERSION| Constructor and Description |
|---|
ValueRewritingObserver() |
| Modifier and Type | Method and Description |
|---|---|
Optional<RegionObserver> |
getRegionObserver() |
InternalScanner |
preCompact(ObserverContext<RegionCoprocessorEnvironment> c,
Store store,
InternalScanner scanner,
ScanType scanType,
CompactionLifeCycleTracker tracker,
CompactionRequest request)
Called prior to writing the
StoreFiles selected for compaction into a new
StoreFile. |
void |
start(CoprocessorEnvironment env)
Called by the
CoprocessorEnvironment during it's own startup to initialize the
coprocessor. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitpostAppend, postBatchMutate, postBatchMutateIndispensably, postBulkLoadHFile, postCheckAndDelete, postCheckAndPut, postClose, postCloseRegionOperation, postCommitStoreFile, postCompact, postCompactSelection, postDelete, postExists, postFlush, postFlush, postGetOp, postIncrement, postInstantiateDeleteTracker, postMemStoreCompaction, postMutationBeforeWAL, postOpen, postPut, postReplayWALs, postScannerClose, postScannerFilterRow, postScannerNext, postScannerOpen, postStartRegionOperation, postStoreFileReaderOpen, postWALRestore, preAppend, preAppendAfterRowLock, preBatchMutate, preBulkLoadHFile, preCheckAndDelete, preCheckAndDeleteAfterRowLock, preCheckAndPut, preCheckAndPutAfterRowLock, preClose, preCommitStoreFile, preCompactScannerOpen, preCompactSelection, preDelete, preExists, preFlush, preFlush, preFlushScannerOpen, preGetOp, preIncrement, preIncrementAfterRowLock, preMemStoreCompaction, preMemStoreCompactionCompact, preMemStoreCompactionCompactScannerOpen, preOpen, prePrepareTimeStampForDeleteVersion, prePut, preReplayWALs, preScannerClose, preScannerNext, preScannerOpen, preStoreFileReaderOpen, preStoreScannerOpen, preWALRestoregetBulkLoadObserver, getEndpointObservergetServices, stoppublic static final String ORIGINAL_VALUE_KEY
public static final String REPLACED_VALUE_KEY
private byte[] sourceValue
private byte[] replacedValue
private Bytes.ByteArrayComparator comparator
private CellBuilder cellBuilder
public ValueRewritingObserver()
public Optional<RegionObserver> getRegionObserver()
getRegionObserver in interface RegionCoprocessorpublic void start(CoprocessorEnvironment env) throws IOException
CoprocessorCoprocessorEnvironment during it's own startup to initialize the
coprocessor.start in interface CoprocessorIOExceptionpublic InternalScanner preCompact(ObserverContext<RegionCoprocessorEnvironment> c, Store store, InternalScanner scanner, ScanType scanType, CompactionLifeCycleTracker tracker, CompactionRequest request)
RegionObserverStoreFiles selected for compaction into a new
StoreFile.
To override or modify the compaction process, implementing classes can wrap the provided
InternalScanner with a custom implementation that is returned from this method. The
custom scanner can then inspect Cells from the wrapped scanner,
applying its own policy to what gets written.
preCompact in interface RegionObserverc - the environment provided by the region serverstore - the store being compactedscanner - the scanner over existing data used in the store file rewritingscanType - type of Scantracker - tracker used to track the life cycle of a compactionrequest - the requested compactionnull unless the
implementation is writing new store files on its own.Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.