we are using siddhi to process the realtime event collected online. i want to know the TTL of event processed.
eg. when an event belong to stream testStream arrived,will the event always be available untill restart or shutdown siddhi cluster? if the event group by time window, the event will be discard once it is expired?
i guess the strategy above will affect something like memory use and the perfomance of docker run the siddhi.
The event will be removed after processed. For window/pattern, it will only keep necessary events in memory and while time moves or new events added, the expired events will be removed.
we are using siddhi to process the realtime event collected online. i want to know the TTL of event processed. eg. when an event belong to stream testStream arrived,will the event always be available untill restart or shutdown siddhi cluster? if the event group by time window, the event will be discard once it is expired?
i guess the strategy above will affect something like memory use and the perfomance of docker run the siddhi.