You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "michael elbaz (Jira)" <ji...@apache.org> on 2022/08/24 10:21:00 UTC

[jira] [Created] (CAMEL-18427) Camel Debezium with Postgres

michael elbaz created CAMEL-18427:
-------------------------------------

             Summary: Camel Debezium with Postgres
                 Key: CAMEL-18427
                 URL: https://issues.apache.org/jira/browse/CAMEL-18427
             Project: Camel
          Issue Type: Bug
          Components: camel-debezium
    Affects Versions: 3.13.0
            Reporter: michael elbaz
         Attachments: image-2022-08-24-12-12-27-542.png, image-2022-08-24-12-19-55-853.png

From camel 3.13.0 Camel Debezium simply not working is work perfectly with older than 3.13.0 nothing happen 

here the code 


{code:java}
    @Override
    public void configure() throws Exception {
        super.configure();

        String dataDir = "D:/missions/infogreffe/integ-apollon/_data/offset-file-1.dat";

        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}");
    }
{code}


 !image-2022-08-24-12-12-27-542.png! 

I check this [changelog|https://camel.apache.org/releases/release-3.13.0/]
 !image-2022-08-24-12-19-55-853.png! 




--
This message was sent by Atlassian Jira
(v8.20.10#820010)