Update docs/reference/cluster_manifest.md

Co-authored-by: Paŭlo Ebermann <paul.ebermann@zalando.de>
This commit is contained in:
Felix Kunde 2021-12-02 16:10:20 +01:00 committed by GitHub
parent bdf87da1fe
commit 837969ed76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -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 `<table>_<event_type>_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.