EventStore
CQRS Event Store implemented in Elixir. Uses PostgreSQL as the underlying storage. Requires version 9.5 or newer.
License is MIT.
Getting started
EventStore is available in Hex, the package can be installed as follows:
Add eventstore to your list of dependencies in
mix.exs:def deps do
[{:eventstore, "~> 0.0.1"}]end
Ensure eventstore is started before your application:
def application do
[applications: [:eventstore]]end
Add an
eventstoreconfig entry containing the PostgreSQL connection details to each environment’s mix config file (e.g.config/dev.exs).
```elixir
config :eventstore, EventStore.Storage,
username: "postgres",
password: "postgres",
database: "eventstore_dev",
hostname: "localhost"
```-
Create the EventStore database using the
mixtask
```
mix event_store.create
```
This will create the database and tables.Sample usage
# start the EventStore process
{:ok, store} = EventStore.start_linkWriting to a stream
# create a unique identity for the stream
stream_uuid = UUID.uuid4()
# a new stream will be created when the expected version is zero
expected_version = 0
# list of events to persist
events = [
%EventStore.EventData{
headers: %{user: "someuser@example.com"},
payload: %ExampleEvent{key: "value"}
}
]
# append events to stream
{:ok, events} = EventStore.append_to_stream(store, stream_uuid, expected_version, events)Reading from a stream
# read all events from the stream, starting at the beginning
{:ok, recorded_events} = EventStore.read_stream_forward(store, stream_uuid)Subscribe to all streams
Transient subscriptions
Events are received in batches after being persisted. Only events published while the subscription is active will be recevied.
# using an example subscriber
defmodule Subscriber do
use GenServer
def start_link do
GenServer.start_link(__MODULE__, [])
end
def received_events(server) do
GenServer.call(server, :received_events)
end
def init(events) do
{:ok, %{events: events}}
end
def handle_info({:events, stream_uuid, stream_version, events}, state) do
{:noreply, %{state | events: events ++ state.events}}
end
def handle_call(:received_events, _from, state) do
result = state.events |> Enum.reverse
{:reply, result, state}
end
end# create subscriber and subscribe to all streams
{:ok, subscriber} = Subscriber.start_link
{:ok, subscription} = EventStore.subscribe_to_all_streams(store, "example_subscription", subscriber)Persistent subscriptions
These will ensure at least once delivery of every persisted event. Each subscription may be independently paused, then later resume from where it stopped.
Persistent subscriptions are not yet implemented.
Benchmarking performance
Run the benchmark suite using mix with the bench environment, as configured in config/bench.exs. Logging is disabled for benchmarking.
MIX_ENV=bench mix do es.reset, app.start, benchExample output:
## AppendEventsBench
append events, single writer 200 9738.10 µs/op
## ReadEventsBench
read events, single reader 500 3151.80 µs/op