EventStreamex

Package to add event streaming in your Elixir application, using PostgreSQL WAL.

Works very well with Phoenix LiveView to add realtime to your app.

This package uses the Write-Ahead-Log from PostgreSQL to listen for changes in database tables and then, handle them in your application in 2 ways:

Usage

Installation

The package can be installed by adding event_streamex to your list of dependencies in mix.exs:

def deps do
[
{:event_streamex, "~> 1.0.0"}
]
end

Configuration

Here are the configuration parameters for EventStreamex with their default value:

config :event_streamex,
app_name: nil,
database: "postgres",
durable_slot: true,
error_logger_adapter: {EventStreamex.Operators.Logger.LoggerAdapter, []},
hostname: "localhost",
operator_queue_backoff_multiplicator: 2,
operator_queue_max_restart_time: 10000,
operator_queue_max_retries: 5,
operator_queue_min_restart_time: 500,
password: "postgres",
port: "5432",
publication: "events",
pubsub: [adapter: Phoenix.PubSub, name: nil],
queue_storage_adapter: {EventStreamex.Operators.Queue.DbAdapter, []},
slot_name: "postgres_slot",
url: "",
username: "postgres"

For the package to work correctly you will have to specify, at least:

Mark the entity for listening

To mark an entity for listening, you will have to use the EventStreamex.Events module:

defmodule MyApp.Blog.Post do
use MyApp.Schema
use EventStreamex.Events, name: :my_app, schema: "posts"
import Ecto.Changeset
alias MyApp.Blog.PostWithCommentsCount
schema "posts" do
field :title, :string
field :body, :string
timestamps(type: :utc_datetime)
end
@doc false
def changeset(post, attrs) do
post
|> cast(attrs, [:id, :title, :body])
|> validate_required([:title, :body])
end
end

Any marked entity will tell PostreSQL's WAL to emit events as soon as it is inserted, updated, deleted.

Listen to events in live views

Now that our posts entity is subscribed to, in the WAL, we can listen to its changes in a live view:

defmodule MyApp.PostLive.Index do
use MyApp, :live_view
use EventStreamex.EventListener,
schema: "post_with_comments_counts",
subscriptions: [:unscoped]
alias MyApp.Blog
alias MyApp.Blog.Post
@impl true
def mount(params, session, socket) do
{:ok, socket} = super(params, session, socket)
{:ok, stream(socket, :posts, Blog.list_posts())}
end
@impl true
def handle_params(params, url, socket) do
{_res, socket} = super(params, url, socket)
{:noreply, socket}
end
@impl true
def handle_info({:on_insert, [], post}, socket) do
{:noreply,
socket
|> stream_insert(:posts, post.new_record)
end
@impl true
def handle_info({:on_update, [], post}, socket) do
{:noreply,
socket
|> stream_insert(:posts, post.new_record)
end
@impl true
def handle_info({:on_delete, [], post}, socket) do
{:noreply,
socket
|> stream_delete(:posts, post.old_record)
end
end

Here, we listen to posts events in our live view.

The handle_info/2 callbacks are called with the kind of event received (:on_insert, :on_update, :on_delete) and the event.

You can, then do whatever you need to update your view.

Events structure

An event looks like this:

%WalEx.Event{
name: atom(),
type: :insert | :update | :delete,
source: %WalEx.Event.Source{
name: String.t(),
version: String.t(),
db: String.t(),
schema: String.t(),
table: String.t(),
columns: map()
},
new_record: map() | nil,
old_record: map() | nil,
changes: map() | nil,
timestamp: DateTime.t(),
lsn: {integer(), integer()}
}

I am using the WalEx package internally

changes

When you receive an update event, you will also have the changes field set to a map containing the changes the entity received since the update.

This map contains the changed fields as keys, and a map describing the change as value. This "change" map contains 2 fields:

For instance, let's say you have a comments entity with 4 fields: id, message, rating, timestamp.

You have a comment with these values:

%Comment{
id: "dd4bc2ba-c7cc-4a05-a1c7-9f26cd9ab79f",
message: "This is my first comment",
rating: 4,
timestamp: "2024-07-23T12:00:00Z"
}

Now, the comment is update this these new values:

%Comment{
id: "dd4bc2ba-c7cc-4a05-a1c7-9f26cd9ab79f",
message: "This is (not) my first comment (anymore)",
rating: 5,
timestamp: "2024-07-23T12:00:00Z"
}

The event structure will look like this:

%WalEx.Event{
name: :comments,
type: :update,
source: %WalEx.Event.Source{
name: "WalEx",
version: "4.1.0",
db: "postgresql",
schema: "public",
table: "comments",
columns: %{
id: "uuid",
message: "varchar",
rating: "integer",
timestamp: "datetime"
}
},
new_record: %Comment{
id: "dd4bc2ba-c7cc-4a05-a1c7-9f26cd9ab79f",
message: "This is (not) my first comment (anymore)",
rating: 5,
timestamp: "2024-07-23T12:00:00Z"
},
old_record: nil,
changes: %{
message: %{
old_value: "This is my first comment",
new_value: "This is (not) my first comment (anymore)"
},
rating: %{
old_value: 4,
new_value: 5
}
},
timestamp: "2024-08-25T13:13:30Z",
lsn: {0, 0}
}

Update other entities based on events

Now, let's assume that we also have a comments entity linked to a post, and that we want to display our posts with the number of comments they have.

In event streaming we will create another entity (let's say post_with_comments_count), and update it when we receive events from posts and comments.

This entity will look like this:

defmodule MyApp.Operators.PostWithCommentsCountOperator do
use EventStreamex.Operators.Operator,
schema: "post_with_comments_counts",
repo: MyApp.Repo
on_event(
all_events(),
entities(["comments", "posts"]),
query(
"""
MERGE INTO post_with_comments_counts dest
USING (
SELECT
p.id AS id,
p.title AS title,
p.body AS body,
p.inserted_at AS inserted_at,
p.updated_at AS updated_at,
(SELECT COUNT(c.id) FROM comments c WHERE c.post_id = p.id) AS comments_count
FROM posts p
WHERE p.id = $1
) src ON src.id = dest.id
WHEN NOT MATCHED THEN
INSERT (id, title, body, inserted_at, updated_at, comments_count)
VALUES (src.id, src.title, src.body, src.inserted_at, src.updated_at, src.comments_count)
WHEN MATCHED THEN
UPDATE SET
title = src.title,
body = src.body,
inserted_at = src.inserted_at,
updated_at = src.updated_at,
comments_count = src.comments_count;
""",
id([{"comments", :post_id}, {"posts", :id}]),
delete_with(["posts"])
)
)
end

Using an operator will allow us to insert/update/delete an entity based on events.

Here, we listen to posts and comments and, for each event, we execute the MERGE query.

This query will create the post_with_comments_count when a post is created, and update it when the post is updated. It will also update the comments_count each time there is a new comment, or a comment has been deleted.

The $1 parameter in the query will be replaced by the field in the listened entities that corresponds to the id of the post_with_comments_count. In this example, it's the post ID. Which is found in the post_id field in comments. That comes from this line: id([{"comments", :post_id}, {"posts", :id}]).

delete_with(["posts"]) will tell the operator that a post deletion must also delete the post_with_comments_count.

If you can more complex scenarios, you can also use a function instead of query/3:

on_event(
all_events(),
entities(["comments", "posts"]),
fn event ->
{:ok, res} =
event
|> MyQuery.do_some_queries()
|> MyQuery.then_another_query()
{:ok, res}
end
)

Why using event streaming?

Although using event streaming with EventStreamex looks easy, why bother using event streaming in the first place?

The issue without event streaming

Let's say you have a posts entity which contains:

You also have a comments entity which contains:

When you show a list of your posts you might want to show the number of comments it contains.

To do so you will be tempted to make a SQL query with a subquery that will count the comments of your posts.

This is pretty trivial:

SELECT
p.id AS id,
p.title AS title,
p.body AS body,
(SELECT COUNT(*) FROM comments c WHERE c.post_id = p.id) AS comments_count
FROM posts p;

But it has several flaws. Let's see them in more details.

Your queries will become slower and slower over time

Because subqueries are not free. They take more time to execute that a simple query with no join and subquery.

So, the more posts and comments you have, the slower the query will be.

You will end up adding complexity in your queries

As your app evolves, you will probably create new entities related to your posts and comments. Thus, you will add more and more subqueries and joins to your queries, making them slower and harder to maintain...

Realtime will become a mess to maintain

If you want to handle realtime events like updating the number of comments when a new one is created it will be a mess to maintain overtime because you will end up subscribing to a lot of events as you link your posts to other entities.

And you will probably forget to subscribe to some of the events making your app inconsistant (some features will be in realtime and other won't be).

Almost impossible to maintain recursivity

If your comments can have subcomments it will be almost impossible to maintain the comments count because of the recursivity it implies.

Let's say you create another entity named ratings which saves each rating given to a specific comment.

It would look like this:

Now imagine you want to display, for every comment, the average rating and the total count of ratings for this comment.

Here again, you could solve this with some subqueries.

But what if you want to show the average rating of all comments in the post so that users can see that a post has received a lot of useful comments.

I don't even want to think about the query that would require...

Benefits from using event streaming

Let's come back to our posts and comments. Now let's imagine that instead of our subquery to count the comments we use an event streaming architecture and create another entity whose goal is specifically to show the posts with their comments count.

This post_with_comments_counts entity will look like that:

And this entity will listen to new comments to update its comments count: when a new comment is created it will increase the number of comments of the related post by 1.

With EventStreamex it would look like this:

defmodule MyApp.Operators.PostWithCommentsCountOperator do
use EventStreamex.Operators.Operator,
schema: "post_with_comments_counts",
repo: MyApp.Repo
on_event(
all_events(),
entities(["comments", "posts"]),
query(
"MERGE INTO post_with_comments_counts dest
USING (
SELECT
p.id AS id,
p.title AS title,
p.body AS body,
p.inserted_at AS inserted_at,
p.updated_at AS updated_at,
(SELECT COUNT(c.id) FROM comments c WHERE c.post_id = p.id) AS comments_count
FROM posts p
WHERE p.id = $1
) src ON src.id = dest.id
WHEN NOT MATCHED THEN
INSERT (id, title, body, inserted_at, updated_at, comments_count)
VALUES (src.id, src.title, src.body, src.inserted_at, src.updated_at, src.comments_count)
WHEN MATCHED THEN
UPDATE SET
title = src.title,
body = src.body,
inserted_at = src.inserted_at,
updated_at = src.updated_at,
comments_count = src.comments_count;",
id([{"comments", :post_id}, {"posts", :id}]),
delete_with(["posts"])
)
)
end

Here, we use the EventStreamex.Operators.Operator module to listen for posts and comments in all kinds of events (insert, update, delete).

And each time a post or a comment is inserted, updated, deleted, we perform this MERGE query to create/update our post_with_comments_counts.

The MERGE query will insert a new post if the post does not exist and update it if it already exists.

id/1 is used to map the fields of the listened entities to the id of the post_with_comments_counts entity (id for a post and post_id for a comment).

Finally, delete_with/1 tells the operator which entities deletion should also delete the related post_with_comments_counts entity.

As you can see, this MERGE query also uses a subquery, so why is it better than our first implementation?

This is a naive implementation

The query/3 macro is provided for simplicity. But you can also replace it by a function to do things as you think it's best (optimize the queries according to the type of event and entity received).

This function will receive the event, allowing you to do whatever you want with it.

The query is executed in the background

In our first example, the query was executed everytime someone wants to display the list of posts.

In our event streaming example, the query is executed in the background each time there is an event with a post or a comment.

To display your list of posts you will just have to do:

SELECT * FROM post_with_comments_counts;

Which is simpler and faster than our former query.

Realtime is easy

You can use the module EventStreamex.EventListener to easily add realtime in your live view applications.

Because we are using PostgreSQL WAL events, everytime something happens on an entity (post_with_comments_counts as well), an event is sent.

This event will be processed by operators listening to it (like our operator here does for posts and comments), and it will also be sent to a pubsub processor.

The EventStreamex.EventListener, now just has to listen to this pubsub processor to notify your live view that the entity your are showing as been updated.

Everything, now, can be realtime, without beeing hard to maintain.

A better pattern to model your data

With this approach you keep your entities consistent and simple. And you create specialized entities for what you want to show in your views.

A post will stay a post with its title and body fields and a comment will stay a comment with a comment field.

post_with_comments_count is just a specialized entity used for your view.

This keeps your data and APIs consistent and simple with explicit fields and names.

For instance, let's say you have a users entity with a login and a password field. But later on, you realize that you need to store some information about your users, like its name, its address, and so on.

You will be tempted to update your users entity to add these new fields:

But still, in your application, when comes the moment to create your user, you only need the login and password.

So what do you do? You set the other fields as optionals in your API and set them a default value (empty string or null).

And in the view that allows a user to specify more information about him (name and address), you will either:

But both approachs are bad practices!

In the first approach that means that your API expects 2 mandatory fields: login and password, and 2 optional fields: name and address. But here, there is no sense in sending the login and password. And maybe you would like the name and address fields to be mandatory. But because your API set these fields as optionals, you will have to check for them from the client side. Which is a bad practice.

In the second approach, that means that you will create an API endpoint for the user profile. But this API, will finally update the users entity. You end up with hard to understand APIs because their name does not match to the entity being modified.

A better approach would be to have a users entity with:

And its own API endpoint /users with only these two fields.

And you would have a user_profiles entity with:

And its own API endpoint /users/{user_id}/user_profiles with only the name and address fields.

And what if you need to display all of these information in your view? Well, you use an operator like we did for the post_with_comments_counts. Named, for instance: user_with_profiles, and listening to users and user_profiles events.

This way, you keep your data and API consistent.

Tests

To test the package you can run:

mix test

Some tests will need access to a PostgreSQL database.

Here are the credentials used by the tests: