Linux command
sequin 命令
文件
复制后可按需替换文件名、目录或参数。
常用示例
Start consumer
sequin start
List streams
sequin streams
Create consumer
sequin consumers create [name]
Check status
sequin status
View logs
sequin logs
说明
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.
参数
- start
- Start consumer.
- streams
- List streams.
- consumers
- Manage consumers.
- status
- Show status.
- logs
- View logs.
- --config _FILE_
- Config file.
FAQ
What is the sequin command used for?
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.
How do I run a basic sequin example?
Run `sequin start` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does start do in sequin?
Start consumer.