Class StoreBasedTridentWindowManager
- java.lang.Object
-
- org.apache.storm.trident.windowing.AbstractTridentWindowManager<TridentBatchTuple>
-
- org.apache.storm.trident.windowing.StoreBasedTridentWindowManager
-
- All Implemented Interfaces:
ITridentWindowManager
public class StoreBasedTridentWindowManager extends AbstractTridentWindowManager<TridentBatchTuple>
This window manager usesWindowsStore
for storing tuples and other trigger related information. It maintains tuples cache ofmaxCachedTuplesSize
without accessing store for getting them.
-
-
Field Summary
-
Fields inherited from class org.apache.storm.trident.windowing.AbstractTridentWindowManager
aggregator, delegateCollector, pendingTriggers, triggerId, windowManager, windowStore, windowTaskId
-
-
Constructor Summary
Constructors Constructor Description StoreBasedTridentWindowManager(WindowConfig windowConfig, String windowTaskId, WindowsStore windowStore, Aggregator aggregator, BatchOutputCollector delegateCollector, Long maxTuplesCacheSize, Fields inputFields)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addTuplesBatch(Object batchId, List<TridentTuple> tuples)
Add received batch of tuples to cache/store and add them toWindowManager
.TridentTuple
collectTridentTupleOrKey(TridentBatchTuple tridentBatchTuple, List<String> keys)
String
getBatchTxnId(Object batchId)
List<TridentTuple>
getTridentTuples(List<TridentBatchTuple> tridentBatchTuples)
ReturnTridentTuple
s from giventupleEvents
.protected void
initialize()
Load and initialize any resources into window manager before windowing for component/task is activated.String
keyOf(Object batchId)
void
onTuplesExpired(List<TridentBatchTuple> expiredTuples)
Handle expired tuple events which can be removing from cache or store.-
Methods inherited from class org.apache.storm.trident.windowing.AbstractTridentWindowManager
getPendingTriggers, prepare, shutdown
-
-
-
-
Constructor Detail
-
StoreBasedTridentWindowManager
public StoreBasedTridentWindowManager(WindowConfig windowConfig, String windowTaskId, WindowsStore windowStore, Aggregator aggregator, BatchOutputCollector delegateCollector, Long maxTuplesCacheSize, Fields inputFields)
-
-
Method Detail
-
initialize
protected void initialize()
Description copied from class:AbstractTridentWindowManager
Load and initialize any resources into window manager before windowing for component/task is activated.- Specified by:
initialize
in classAbstractTridentWindowManager<TridentBatchTuple>
-
addTuplesBatch
public void addTuplesBatch(Object batchId, List<TridentTuple> tuples)
Description copied from interface:ITridentWindowManager
Add received batch of tuples to cache/store and add them toWindowManager
.
-
getTridentTuples
public List<TridentTuple> getTridentTuples(List<TridentBatchTuple> tridentBatchTuples)
Description copied from class:AbstractTridentWindowManager
ReturnTridentTuple
s from giventupleEvents
.- Specified by:
getTridentTuples
in classAbstractTridentWindowManager<TridentBatchTuple>
-
collectTridentTupleOrKey
public TridentTuple collectTridentTupleOrKey(TridentBatchTuple tridentBatchTuple, List<String> keys)
-
onTuplesExpired
public void onTuplesExpired(List<TridentBatchTuple> expiredTuples)
Description copied from class:AbstractTridentWindowManager
Handle expired tuple events which can be removing from cache or store.- Specified by:
onTuplesExpired
in classAbstractTridentWindowManager<TridentBatchTuple>
-
-