Event Service
The event service stores events which are generated by the Ververica Platform during its operation. For long running deployments, it can make sense to limit the number of stored events. By default, the Ververica Platform stores an unlimited amount of events.
Configuration
To control the cleanup of the event log, you can set the maximum number of stored events via maxNumberEvents
. Additionally, you can configure the periodic cleanup interval via eventsCleanupInterval
. The format of the interval follows Spring's Duration conversion.
vvp:
event-service:
maxNumberEvents: 1337
eventsCleanupInterval: 15m
note
In order to keep the performance impact low, the number of stored events may occasionally be higher than the limit before the next cleanup happens.