...
- preGetOp
- prePut
- preDelete
- preScannerOpen
- postScannerOpen
- preFlush
- preCompact
Queue Queue Coprocessors
CDAP flow-queue has two coprocessors on HBase region servers.
- Source: HBaseQueueRegionObserver.java
...
-
- Responsibles for eviction of consumed data
- Overrides the
preFlushandpreCompactmethods- Returns an
InternalScannerthat will skip over cells that are already processed based on the queue logic
- Returns an
- Source: DequeueScanObserver.java
...
- Responsibles for scan time filtering based on transaction information provided by the client
- Overrides the
preScannerOpenmethod- Returns a
RegionScannerthat will skip over cells that are not yet committed based on the transaction information
- Returns a