Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
3.13.0, 3.18.1
-
None
-
Jdk 17
Windows 10
Spring boot
-
Unknown
-
Regression
Description
From camel 3.13.0 Camel Debezium simply not working is work perfectly with camel older than 3.13.0
(related to this ticket i think https://issues.apache.org/jira/browse/CAMEL-17135)
here the code
@Override public void configure() throws Exception { String DATABASE_READER = "debezium-postgres:localhost?" + "databaseHostname=localhost" + "&databasePort=5432" + "&databaseUser=postgres" + "&databasePassword=test" + "&databaseDbname=test" + "&databaseServerName=localhost" + "&schemaWhitelist=public" + "&tableWhitelist=public.*" + "&offsetStorageFileName=/tmp/offset-file-1.dat" + "&offsetFlushIntervalMs=10000" + "&pluginName=pgoutput"; from(DATABASE_READER) .routeId("debeziumPGRoute") .log("Response : ${body}"); }
I check this changelog
the pom file
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-postgres</artifactId> </dependency> <dependency> <groupId>org.apache.camel.springboot</groupId> <artifactId>camel-debezium-postgres-starter</artifactId> </dependency>
Attachments
Attachments
Issue Links
- relates to
-
CAMEL-17135 camel-debezium-mongodb-starter does not pupulate values from application.properties
- Resolved