Skip to content

Commit

Permalink
fix debezium lab version
Browse files Browse the repository at this point in the history
  • Loading branch information
christofluethi committed Feb 12, 2024
1 parent 76e71a3 commit 9e6013e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions code/debezium/debezium-order/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus-plugin.version>1.13.7.Final</quarkus-plugin.version>
<quarkus.platform.version>1.13.7.Final</quarkus.platform.version>
<debezium.version>1.5.4.Final</debezium.version>
<quarkus-plugin.version>1.12.0.Final</quarkus-plugin.version>
<quarkus.platform.version>1.11.3.Final</quarkus.platform.version>
<debezium.version>1.4.1.Final</debezium.version>
<surefire-plugin.version>2.22.2</surefire-plugin.version>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/05/part/53.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Dependency | Description
`debezium-quarkus-outbox` | Provides a reusable, configurable component that facilitates the use of the Outbox pattern in conjunction with debezium.
`opentracing-kafka-client` | Injects and reads tracing information from Headers of an Apache Kafka message.

[full source of pom.xml]({{% param "lab_rawgit_repo" %}}/{{% param "folder_debezium" %}}/debezium-order/pom.xml)
[full source of pom.xml]({{% param "lab_rawgit_repo" %}}/solution/{{% param "folder_debezium" %}}/debezium-order/pom.xml)


### Debezium Quarkus Outbox Extension
Expand All @@ -64,7 +64,7 @@ quarkus.debezium-outbox.payload.name=payload
quarkus.debezium-outbox.remove-after-insert=false
```

This configuration will define the table and field names of our outbox table. For further details, please refer to the [Debezium Outbox Quarkus Extension](https://debezium.io/documentation/reference/1.6/integrations/outbox.html) documentation.
This configuration will define the table and field names of our outbox table. For further details, please refer to the [Debezium Outbox Quarkus Extension](https://debezium.io/documentation/reference/1.7/integrations/outbox.html) documentation.

Please take a note of the configuration `quarkus.debezium-outbox.remove-after-insert=false` (default `true`). With disabling this our events stay in the outbox table forever. In theory there is no need to keep these persisted. Debezium will get the create event (row insert) from the WAL log. The provided `EventRouter` is only sensible to create events. For debugging we have set this to `false`.

Expand Down
6 changes: 3 additions & 3 deletions solution/debezium/debezium-order/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-universe-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus-plugin.version>1.13.7.Final</quarkus-plugin.version>
<quarkus.platform.version>1.13.7.Final</quarkus.platform.version>
<debezium.version>1.6.1.Final</debezium.version>
<quarkus-plugin.version>1.12.0.Final</quarkus-plugin.version>
<quarkus.platform.version>1.11.3.Final</quarkus.platform.version>
<debezium.version>1.4.1.Final</debezium.version>
<surefire-plugin.version>2.22.2</surefire-plugin.version>
</properties>

Expand Down

0 comments on commit 9e6013e

Please sign in to comment.