Database
event-sourcing
with PostgreSQL database.
Events table
- a globally ordered ledgerOptimistic Locking
- for concurrency controlConstrains
- no misspelled event types, immutable by default
No additional tools, frameworks, or programming languages are required at this level.

Stream it
event-streaming
with PostgreSQL database.
Concurrent Consumers
- for efficient streamingPool the DB
/Push from DB
- two techniques for database pooling and/or pushing eventsAt-Least-Once Delivery
- to ensure reliabilityPersisted Streams
- track the progress
No Kafka or other streaming platforms are required at this level.

Demo Applications
Language | Source Code |
---|---|
Kotlin (Spring) | |
Kotlin (Ktor) | |
Rust (Actix-Web Server) | |
Rust (PostgreSQL Extension) |