Skip to content

Commit

Permalink
DBZ-8313 Added support for application.yaml in Debezium server by add…
Browse files Browse the repository at this point in the history
…ing quarkus-config-yaml to POM
  • Loading branch information
nathan-smit-1 authored and jpechane committed Oct 14, 2024
1 parent 0158644 commit 06d8138
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
4 changes: 4 additions & 0 deletions debezium-server-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-kubernetes-config</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-config-yaml</artifactId>
</dependency>

<dependency>
<groupId>io.debezium</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
debezium:
sink:
type: kinesis
kinesis:
region: eu-central-1
source:
connector:
class: io.debezium.connector.postgresql.PostgresConnector
offset:
storage:
file:
filename: data/offsets.dat
flush:
interval:
ms: 0
database:
hostname: localhost
port: 5432
user: postgres
password: postgres
dbname: postgres
topic:
prefix: tutorial
schema:
include:
list: inventory

quarkus:
log:
console:
json: false

0 comments on commit 06d8138

Please sign in to comment.