Hacker News new | ask | show | jobs
by gunnarmorling 1691 days ago
Folks looking to implement the outbox pattern with Apache Kafka may find the support provided for it by Debezium useful: https://debezium.io/documentation/reference/stable/transform.... Debezium is implementing log-based change data capture, i.e. there's no polling on the outbox table.

There's also an extension for Quarkus (https://debezium.io/documentation/reference/stable/integrati...) which makes it very easy to implement the pattern in Java applications.

Disclaimer: I work on Debezium