From 837969ed76d0b548d30def1acda95f2f249785d4 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Thu, 2 Dec 2021 16:10:20 +0100 Subject: [PATCH] Update docs/reference/cluster_manifest.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: PaĆ­lo Ebermann --- docs/reference/cluster_manifest.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/reference/cluster_manifest.md b/docs/reference/cluster_manifest.md index ff492743a..626f832fe 100644 --- a/docs/reference/cluster_manifest.md +++ b/docs/reference/cluster_manifest.md @@ -530,11 +530,11 @@ Each stream object can have the following properties: replication user). Required. * **tables** - Defines a map of table names and event types. The CDC operator is following - the [outbox pattern](https://debezium.io/blog/2019/02/19/reliable-microservices-data-exchange-with-the-outbox-pattern/) - meaning changes are only consumed from an extra table that already has the - structure of the event in the target sink. The operator will assume that this - outbox table is called like `__outbox`. Required. + Defines a map of (outbox) table names and event types. The CDC operator is following + the [outbox pattern](https://debezium.io/blog/2019/02/19/reliable-microservices-data-exchange-with-the-outbox-pattern/). + This means that the application will put events into a column in the outbox table + in the structure of the target event type, and the CDC operator will capture them + shortly after the transaction is committed. Required. * **filter** Streamed events can be filtered by a jsonpath expression for each table.