mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 04:09:40 -06:00
Eventhistory
The eventhistory consumes all events from the configured event system like NATS, stores them and allows other services to retrieve them via an event ID.
Prerequisites
Running the eventhistory service without an event system like NATS is not possible.
Consuming
The eventhistory services consumes all events from the configured event system.
Storing
The eventhistory service stores each consumed event via the configured store in EVENTHISTORY_STORE. Possible stores are:
memory: Basic in-memory store and the default.ocmem: Advanced in-memory store allowing max size.redis: Stores data in a configured Redis cluster.redis-sentinel: Stores data in a configured Redis Sentinel cluster.etcd: Stores data in a configured etcd cluster.nats-js: Stores data using key-value-store feature of nats jetstreamnoop: Stores nothing. Useful for testing. Not recommended in production environments.
- Note that in-memory stores are by nature not reboot-persistent.
- Though usually not necessary, a database name and a database table can be configured for event stores if the event store supports this. Generally not applicable for stores of type
in-memory. These settings are blank by default which means that the standard settings of the configured store apply. - The eventhistory service can be scaled if not using
in-memorystores and the stores are configured identically over all instances. - When using
redis-sentinel, the Redis master to use is configured viaEVENTHISTORY_STORE_NODESin the form of<sentinel-host>:<sentinel-port>/<redis-master>like10.10.0.200:26379/mymaster.
Retrieving
Other services can call the eventhistory service via a gRPC call to retrieve events. The request must contain the event ID that should be retrieved.