Class StoreBasedTridentWindowManager
java.lang.Object
org.apache.storm.trident.windowing.AbstractTridentWindowManager<TridentBatchTuple>
org.apache.storm.trident.windowing.StoreBasedTridentWindowManager
- All Implemented Interfaces:
- ITridentWindowManager
This window manager uses 
WindowsStore for storing tuples and other trigger related information. It maintains tuples cache of
 maxCachedTuplesSize without accessing store for getting them.- 
Field SummaryFields inherited from class org.apache.storm.trident.windowing.AbstractTridentWindowManageraggregator, delegateCollector, pendingTriggers, triggerId, windowManager, windowStore, windowTaskId
- 
Constructor SummaryConstructorsConstructorDescriptionStoreBasedTridentWindowManager(WindowConfig windowConfig, String windowTaskId, WindowsStore windowStore, Aggregator aggregator, BatchOutputCollector delegateCollector, Long maxTuplesCacheSize, Fields inputFields) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddTuplesBatch(Object batchId, List<TridentTuple> tuples) Add received batch of tuples to cache/store and add them toWindowManager.collectTridentTupleOrKey(TridentBatchTuple tridentBatchTuple, List<String> keys) getBatchTxnId(Object batchId) getTridentTuples(List<TridentBatchTuple> tridentBatchTuples) ReturnTridentTuples from giventupleEvents.protected voidLoad and initialize any resources into window manager before windowing for component/task is activated.voidonTuplesExpired(List<TridentBatchTuple> expiredTuples) Handle expired tuple events which can be removing from cache or store.Methods inherited from class org.apache.storm.trident.windowing.AbstractTridentWindowManagergetPendingTriggers, prepare, shutdown
- 
Constructor Details- 
StoreBasedTridentWindowManagerpublic StoreBasedTridentWindowManager(WindowConfig windowConfig, String windowTaskId, WindowsStore windowStore, Aggregator aggregator, BatchOutputCollector delegateCollector, Long maxTuplesCacheSize, Fields inputFields) 
 
- 
- 
Method Details- 
initializeprotected void initialize()Description copied from class:AbstractTridentWindowManagerLoad and initialize any resources into window manager before windowing for component/task is activated.- Specified by:
- initializein class- AbstractTridentWindowManager<TridentBatchTuple>
 
- 
addTuplesBatchDescription copied from interface:ITridentWindowManagerAdd received batch of tuples to cache/store and add them toWindowManager.
- 
getBatchTxnId
- 
keyOf
- 
getTridentTuplesDescription copied from class:AbstractTridentWindowManagerReturnTridentTuples from giventupleEvents.- Specified by:
- getTridentTuplesin class- AbstractTridentWindowManager<TridentBatchTuple>
 
- 
collectTridentTupleOrKeypublic TridentTuple collectTridentTupleOrKey(TridentBatchTuple tridentBatchTuple, List<String> keys) 
- 
onTuplesExpiredDescription copied from class:AbstractTridentWindowManagerHandle expired tuple events which can be removing from cache or store.- Specified by:
- onTuplesExpiredin class- AbstractTridentWindowManager<TridentBatchTuple>
 
 
-