Outbox is a Kafka Connect transformer to redirect the integration event to the right topic. The logic assumes that there is a field called payload, and that's true for integration events.
However, if we want to enable incremental snapshots, automatically the connector starts ingesting public.dbz_signal table used to managed custom snapshots. But that table doesn't contain payload field. So, we are going to skip in Outbox transformer all messages coming from public.dbz_signal topic.
Outbox is a Kafka Connect transformer to redirect the integration event to the right topic. The logic assumes that there is a field called
payload
, and that's true for integration events. However, if we want to enable incremental snapshots, automatically the connector starts ingestingpublic.dbz_signal
table used to managed custom snapshots. But that table doesn't containpayload
field. So, we are going to skip in Outbox transformer all messages coming frompublic.dbz_signal
topic.