postgresql-event-sourcing icon indicating copy to clipboard operation
postgresql-event-sourcing copied to clipboard

A reference implementation of an event-sourced system that uses PostgreSQL as an event store built with Spring Boot. Fork the repository and use it as a template for your projects. Or clone the reposi...

Results 6 postgresql-event-sourcing issues
Sort by recently updated
recently updated
newest added

Not a real issue for this demo, but I think it should reflect the type of event.id bigserial. Great samples and blogs btw. Thank you.

Let's say I have two instances of the service. Both services are creating events. When using postgres, it's possible for there to be gaps in the bigserial id used for...

In case someone is running this project on a M1/M2 Apple chip, this will enable building the image for the correct architecture: Replace the jib configuration from the build.gradle file...

Hi, Your template was very helpful in illustrating how event sourcing works in an order life cycle. Could you provide some examples using code or explain how a List can...

Thank you very much @eugene-khyst ! Especially the paragraph about [Domain events vs Integration events](https://github.com/eugene-khyst/postgresql-event-sourcing#3-7) was an eye-opener. I am currently wondering how replaying of events works and how the...

Amazing project, thank you for this. Regarding integration events -- looking at the outbox, polling, and listen/notify options you presented -- it seems like PG replication could also be a...