eventstore
eventstore copied to clipboard
Event store using PostgreSQL for persistence
Is 1.4.0 going to be published soon? I see https://github.com/commanded/eventstore/commit/085602a8cfae7401e6d89472a053fd52f586832f where 1.4.0 is mentioned?
After following the documentation and setting up successfully the eventstore, here what happens if i disconnect from internet for about 2-3 minutes _note: this happens on osx with the mentioned...
In certain environments Postgres’ built-in notification mechanism (LISTEN / NOTIFY) is not supported. This might be due to using an external connection pool, such as pgbouncer, or limitations of a...
Hi Guys, Would be possible to add a layer where we could swap store providers? So instead of Postgrex, one could configure Tds or Mariaex.... I'm willing to contribute but...
Postgres [advisory locks](https://www.postgresql.org/docs/current/explicit-locking.html#ADVISORY-LOCKS) are used to ensure only a single subscription process can subscribe to each uniquely named EventStore subscription. This ensures events are only processed by a single susbcription,...
A note was recently [added](https://github.com/commanded/eventstore/commit/f9442cf8a372101d16d3bf135d9d9b0c599929a4) in the [Getting started](https://github.com/commanded/eventstore/blob/f9442cf8a372101d16d3bf135d9d9b0c599929a4/guides/Getting%20Started.md) guide: > **Note:** To use an EventStore with Commanded you should configure the event store to use Commanded's JSON serializer which...
All events appended to a stream are linked to the globally ordered _all events_ stream (named `$all`). Because the events must be assigned a unique, monotonically incrementing, and gapless event...
Add support for linking appended events to streams using optional, built-in streams. This allows subscriptions to be created for a subset of all events (e.g. events of a given aggregate...
Due to `LISTEN` / `NOTIFY` not working on Azure hosted Postgres databases. Please refer to [Postgrex.Notifications does not receive notifications from hosted PostgreSQL DB on Azure #375](https://github.com/elixir-ecto/postgrex/issues/375) issue in the...
The `schema_migrations` table name introduced in v0.10.0 conflicts with the ecto table `schema_migrations`, yet it has different columns. This means you are unable to use the same database for eventstore...