Outbox Pattern
Outbox Pattern
To ensure full level of data consistency, we may decide to store messages along side with data changes. This way we work only with single data storage, avoiding completely problem with persisting Message in two sources at once. To make it happen Ecotone implements so called Outbox pattern.
For critical parts of the systems we may decide to commit Messages to the same database as data changes using Outbox pattern.
Installation
In order to use Outbox pattern we need to set up Dbal Module.
Dbal Message Channel
By sending asynchronous messages via database, we are storing them together with data changes. This thanks to default transactions for Command Handlers, commits them together.
Asynchronous Event Handler
After this all your messages will be go through your database as a message channel.
Setup Outbox where it's needed
With Ecotone's Outbox pattern we set up given Channel to run via Database. This means that we can target specific channels, that are crucial to run under outbox pattern. In other cases where data consistency is not so important to us, we may actually use Message Broker Channels directly and skip the Outbox. As an example, registering payments and payouts may an crucial action in our system, so we use it with Outbox pattern. However sending an "Welcome" notification may be just fine to run directly with Message Broker.
Scaling the solution
One of the challenges of implementing Outbox pattern is way to scale it. When we start consume a lot of messages, we may need to run more consumers in order to handle the load.
Publishing deduplication
In case of Ecotone, you may safely scale your Messages Consumers that are consuming from your Dbal Message Channel
. Each message will be reserved for the time of being published, thanks to that no duplicates will be sent when we scale.
Handling via different Message Broker
However we may actually want to avoid scaling our Dbal based Message Consumers to avoid increasing the load on the database.
For this situation Ecotone
allows to make use so called Combined Message Channels
.
In that case we would run Database Channel
only for the outbox
and for actual Message Handler
execution a different one.
This is powerful concept, as we may safely produce messages with outbox and yet be able to handle and scale via RabbitMQ
SQS
Redis
etc.
database_channel
is Dbal Message Channelrabbit_channel
is our RabbitMQ Message Channel
Then we run one or few Message Consumers for outbox
and we scale Message Consumers for rabbit
.
Combined Message Channels with reference
If we want more convient way as we would like to apply combined message channels
on multiple Message Handlers, we may create an reference
.
And then we use reference
for our Message Handlers
.
Last updated