Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CDC Inbound Endpoint not working with Oracle Database #4065

Open
KalinduGandara opened this issue Mar 4, 2025 · 0 comments
Open

CDC Inbound Endpoint not working with Oracle Database #4065

KalinduGandara opened this issue Mar 4, 2025 · 0 comments
Labels

Comments

@KalinduGandara
Copy link

Description

I tried to use CDC Inbound Endpoint following the documentation. I used this configuration.

<inboundEndpoint name="CDCIEP" class="org.wso2.carbon.inbound.cdc.CDCPollingConsumer" sequence="cdc-inboundSequence" onError="cdc-inboundErrorSequence" suspend="false">
    <parameters xmlns="http://ws.apache.org/ns/synapse">
        <parameter name="interval">1000</parameter>
        <parameter name="sequential">true</parameter>
        <parameter name="coordination">true</parameter>
        <parameter name="snapshot.mode">initial</parameter>
        <parameter name="connector.class">io.debezium.connector.oracle.OracleConnector</parameter>
        <parameter name="database.hostname">localhost</parameter>
        <parameter name="database.port">1521</parameter>
        <parameter name="database.user">c##dbzuser</parameter>
        <parameter name="database.password">dbz</parameter>
        <parameter name="database.dbname">XE</parameter>
        <parameter name="database.pdb.name">XEPDB1</parameter>
        <parameter name="schema.include.list">debezium</parameter>
        <parameter name="table.include.list">debezium.orders</parameter>
    </parameters>
</inboundEndpoint>
<sequence name="cdc-inboundErrorSequence" trace="disable" xmlns="http://ws.apache.org/ns/synapse">
    <log category="INFO" level="full"/>

</sequence>
<sequence name="cdc-inboundSequence" trace="disable" xmlns="http://ws.apache.org/ns/synapse">
    <log category="INFO" level="full"/>
</sequence>

But when ran i insert query nothing logging.

Steps to Reproduce

  1. Create an integration project using above configurations.
  2. Run an insert query.

Version

MI-4.2.0 debezium-2.7.4

Environment Details (with versions)

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant