A service that helps implement the Event-driven architecture.
To maintain the consistency of data in the system, we will use transactional messaging - publishing events in a single transaction with a domain model change.
The service allows you to subscribe to changes in the PostgreSQL database using its logical decoding capability and publish them to the NATS Streaming server.
To receive events about data changes in our PostgreSQL DB we use the standard logic decoding module (pgoutput) This module converts changes read from the WAL into a logical replication protocol. And we already consume all this information on our side. Then we filter out only the events we need and publish them in the queue
NATS JetStream is used as a message broker.
Service publishes the following structure.
The name of the topic for subscription to receive messages is formed from the prefix of the topic,
the name of the database and the name of the table prefix + schema_table
.
{
ID uuid.UUID # unique ID
Schema string
Table string
Action string
Data map[string]any
EventTime time.Time # commit time
}
Messages are published to NATS (JetStream) at least once!
databases:
filter:
tables:
users:
- insert
- update
This filter means that we only process events occurring with the users
table,
and in particular insert
and update
data.
By default, output NATS topic name consist of prefix, DB schema, and DB table name, but if you want to send all update in one topic you should be configured the topic map:
topicsMap:
main_users: "notifier"
main_customers: "notifier"
You must make the following settings in the db configuration (postgresql.conf)
- wal_level >= “logical”
- max_replication_slots >= 1
The publication & slot created automatically when the service starts (for all tables and all actions). You can delete the default publication and create your own (name: wal-listener) with the necessary filtering conditions, and then the filtering will occur at the database level and not at the application level.
https://www.postgresql.org/docs/current/sql-createpublication.html
If you change the publication, do not forget to change the slot name or delete the current one.
listener:
slotName: myslot_1
refreshConnection: 30s
heartbeatInterval: 10s
filter:
tables:
seasons:
- insert
- update
topicsMap:
schema_table_name: "notifier"
logger:
caller: false
level: info
format: json
database:
host: localhost
port: 5432
name: my_db
user: postgres
password: postgres
debug: false
nats:
address: localhost:4222
streamName: "wal_listener"
topicPrefix: ""
monitoring:
sentryDSN: "dsn string"
promAddr: ":2112"
You can start the container from the project folder (configuration file is required)
https://hub.docker.com/r/ihippik/wal-listener
docker run -v $(pwd)/config.yml:/app/config.yml ihippik/wal-listener:tag