TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Pgstream – CDC tool for PostgreSQL with DDL support

8 pointsby tudorg10 months ago
Hi HN,<p>pgstream is an open source CLI tool and Go library for Postgres logical replication events. We have some bigger plans with it, but as of now its main &quot;differentiator&quot; is that it includes not only data changes but also DDL changes in the same ordered and consistent stream.<p>We have developed this because in the Xata platform we handle automatic replication from Postgres to Elasticsearch&#x2F;OpenSearch. Initially schema changes were problematic because they required us intercepting them at the API layer and then apply them to the search engine. But if the replication is slightly delayed or faster than the update, you can get replication errors. Having a single consistent stream with both makes consumer a lot more reliable in the face of schema changes.<p>The way it works is that pgstream installs event triggers for DDL changes and maintains a &quot;shadow&quot; representation of the schema in a separate table. The changes to this table are included in the replication stream.<p>Besides the Elasticsearch&#x2F;OpenSearch output, pgstream also comes with a simple &quot;webhook&quot; output which is a simple way to get webhooks for any changes that happen in Postgres (data &amp; schema).<p>GitHub repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;xataio&#x2F;pgstream">https:&#x2F;&#x2F;github.com&#x2F;xataio&#x2F;pgstream</a>

no comments

no comments