enadzan | 7 months ago | on: Show HN: PgHook – Docker image that streams PostgreSQL row changes to webhooks
enadzan's comments
enadzan | 7 months ago | on: Show HN: PgHook – Docker image that streams PostgreSQL row changes to webhooks
I’ve been experimenting with logical replication [1] for a while, and it felt like a simpler fit here.
enadzan | 7 months ago | on: Show HN: PgHook – Docker image that streams PostgreSQL row changes to webhooks
enadzan | 4 years ago | on: Show HN: PgOutput2Json .NET lib for PostgreSQL change streaming to JSON
I used Npgsql that has replication support to implement it as a general-purpose library for dotnet-core.
I looked at wal2json decoding plugin to see how different types are handled. I could have used wal2json but I wanted to do it without the need to install anything extra to Postgres. Also, this way I have more control over JSON format.