Managed Event Orchestration With Multiple eXecutors
Project description
meowmx - Managed Event Orchestration With Multiple eXecutors
This takes many of the ideas from Eugene Khyst's postgresql-event-sourcing project and implements them worse in Python.
The end result, meowmx, lets you use PostgreSQL to:
- write events containing plain JSON data, which can later be looked up by category or aggregate IDs
- subscribe to events, allowing you to create workers that iterate through them.
Also, check out this cat!
^__^
\ o . o < M E O W >
| ---
.. ..
Why would anyone want to do this?
Think of how many systems where different components communicate by passing events. Usually you have some system that gets notified of a change or otherwise spurred to action by an event payload. It then loads a bunch of persisted data, does some stuff, and moves on.
The thing is quite often the persisted data should be the event itself. For instance let's say you have multiple events concerning "orders" in a system, ie a customer initiates an order, an order is confirmed, an order is shipped, etc. The traditional way to handle this is to model the current state of the order as a row in a SQL database. Then you have all these event handlers (maybe they're Lambda functions, maybe they listen to rabbit, etc) noifying components in a modern system which all then have to load the current order row, figure out how it should be modified, consider if another component has also updated the row, etc.
To make a gross simplification event-sourcing just says hey maybe all those events are the persisted state; just load them all to figure out what the current situation is, make an update to the same set of events, and as a cherry on top use optimistic concurrency so the update fails if we find some other system updated our set of events between the time we read them just know and when we went to write them, in which case we'll cancle our write, reload all the events and try this logic again.
There's also the notion of aggregates, which are basically objects that can be constructed by reading a set of events. In my experience that kind of "helper" code is extremely easy to write but obscures the basic utility of event sourcing libraries like this one. The right way to construct it is also fairly opinionated. So for now this project has no "aggregate" code.
Notes on SqlAlchemy
This code assumes Postgres via SqlAlchemy.
The code also has nerfed support for other databases with SqlAlchemy, but this is just useful for testing (for example: if an app uses sqlalchemy with Postgres in production but supports using Sqlite for automated tests).
Usage
Import the meowmx package and create a client.
Import meowmx.
See the files in examples.
Setup:
just start-docker-db
just usql # open repl
just test-psql
just examples read-events # view all events written by the tests
just examples # see examples
TODO
[ ] don't force version on NewEvent, it's a headache
[ ] Allow for other aggregate IDs types
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file meowmx-0.1.1.tar.gz.
File metadata
- Download URL: meowmx-0.1.1.tar.gz
- Upload date:
- Size: 36.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8a6ac1d9cc5947d238ca44c56ea42f550a41ef770faf68012f2e0820c2d80c4
|
|
| MD5 |
3f1a763c784a630ca96ea3cee226b076
|
|
| BLAKE2b-256 |
7268397ea31ed5ca80391b5c18f413143899046210f3938a11a2c998963279ed
|
File details
Details for the file meowmx-0.1.1-py3-none-any.whl.
File metadata
- Download URL: meowmx-0.1.1-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a9f60ece1f6fc126e205794f32aaf01d04a9402eb1596759911d6835085780c
|
|
| MD5 |
98c3efd10781bec5f193219147e66a99
|
|
| BLAKE2b-256 |
b17fcccbc00e992b999fffca500ff718c3a9cd45ea38ea86486a473eea8b6f56
|