-
I am thinking to store all the events in Event Store I want to understand what is the maximum Storage capacity that Event Store in axon server can offer. Also I am trying to find documentation of it but no luck. If any Documentaton available could you please the same.
-
Also I am trying to understand retention policy for Events if I chose Ephermal context . Also Please share the documenation
there is no limit in the storage capacity for the Axon Server event store. If your store becomes so large that it will not fit on a single disk you can use the tiered storage option to move older events to another location.
If you define a context as an Ephemeral context the events are deleted once they have a certain age or the size of the event store exceeds a certain size.
For more information, see:
https://docs.axoniq.io/reference-guide/axon-server/administration/tiered-storage
Thanks for the information.