# Event-driven architectures using Neon and Sequin

DevFeed: [Event-driven architectures using Neon and Sequin](<https://devfeed.tech/articles/event-driven-architectures-using-neon-and-sequin-5257.md>)

Original publisher: [Read original article](<https://neon.com/blog/event-driven-architectures-using-neon-and-sequin>)

Author: Eric Goldman

Published: 2024-10-22T15:57:27Z

Content type: tutorial

Language: en

Sources: [Blog -- Neon Docs](<https://devfeed.tech/sources/blog-neon-docs.md>)

Topics: [Database](<https://devfeed.tech/topics/database.md>), [data](<https://devfeed.tech/topics/data.md>), [Kafka](<https://devfeed.tech/topics/kafka.md>)

Tags: [apis](<https://devfeed.tech/tags/apis.md>), [community](<https://devfeed.tech/tags/community.md>), [database](<https://devfeed.tech/tags/database.md>), [docker](<https://devfeed.tech/tags/docker.md>), [event-driven](<https://devfeed.tech/tags/event-driven.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [integration](<https://devfeed.tech/tags/integration.md>), [kafka](<https://devfeed.tech/tags/kafka.md>), [postgres](<https://devfeed.tech/tags/postgres.md>), [real-time](<https://devfeed.tech/tags/real-time.md>), [replication](<https://devfeed.tech/tags/replication.md>), [streaming](<https://devfeed.tech/tags/streaming.md>)

## AI overview

A tutorial on using Sequin with Neon to capture Postgres row changes, stream them to consumers, and enable logical replication.

## Source excerpt

You'll often want changes in your database to trigger changes in your application. Or want to replicate a database change to another service. Think of fanning out work when a new order comes in, updating a materialized view as sales finalize, or logging a change to an audit syste...