LinuxCommandLibrary

sequin

Stream database changes via change data capture

TLDR

Start consumer
$ sequin start
copy
List streams
$ sequin streams
copy
Create consumer
$ sequin consumers create [name]
copy
Check status
$ sequin status
copy
View logs
$ sequin logs
copy

SYNOPSIS

sequin command [options]

DESCRIPTION

sequin is a change data capture (CDC) tool that streams real-time database changes from PostgreSQL. It captures inserts, updates, and deletes as they happen and delivers them to consumers via HTTP webhooks or message queues.
Consumers subscribe to specific streams of changes and process them in order. The tool manages consumer state, tracking which changes have been delivered and acknowledged. This enables building event-driven architectures and keeping downstream systems synchronized with database state.

PARAMETERS

start

Start consumer.
streams
List streams.
consumers
Manage consumers.
status
Show status.
logs
View logs.
--config FILE
Config file.

CAVEATS

Postgres focused. Service connection needed. Configuration required.

HISTORY

Sequin is a change data capture tool for streaming database changes in real-time.

SEE ALSO

debezium(1), psql(1), kafka(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard