Skip to main content
Version: 2.12

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. This limit will be applied per deployment, and only the most recent events will be kept. Additionally, you can configure the periodic cleanup interval via eventsCleanupInterval. Specify the interval using the Spring Duration conversion format.

    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.