You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if we could use Skunk for native Postgres CDC. it could have a great advantage over embedded debezium, because it still uses polling so isn't great for latency-sensitive applications.
The text was updated successfully, but these errors were encountered:
Skunk already supports streaming, e.g. NOTIFY/LISTEN channels, and I think users could create publications and replication slots themselves, so you would only need to understand Postgres logical decoding. I say "only", but that's probably a big amount of work.
For what it's worth, we ended up using the Postgres JDBC driver for this, and wrapped the polling loop in an FS2 Stream. YMMV ofc. So the challenge here would be understanding the underlying protocol to implement it in the Skunk (purely functional) way.
It would be great if we could use Skunk for native Postgres CDC. it could have a great advantage over embedded debezium, because it still uses polling so isn't great for latency-sensitive applications.
The text was updated successfully, but these errors were encountered: