This library provides the necessary Debezium drivers required for the CDC (Change Data Capture) connector in Ballerina. It enables listening to changes in Postgres databases seamlessly within Ballerina projects.
Version | |
---|---|
Ballerina Language | 2201.12.0 |
Debezium Postgres Driver | 3.0.8.Final |
To include the postgresql.cdc.driver
dependency in your project, simply import the module as shown below:
import ballerinax/cdc;
import ballerinax/postgresql.cdc.driver as _;
The postgresql.cdc.driver
library is bundled with the required drivers, so no additional configuration is needed.
Issues and Projects tabs are disabled for this repository as this is part of the Ballerina standard library. To report bugs, request new features, start new discussions, view project boards, etc. please visit Ballerina Standard Library parent repository.
This repository only contains the source code for the package.
-
Download and install Java SE Development Kit (JDK) version 21 (from one of the following locations).
-
Download and install Docker
Execute the commands below to build from the source.
-
To build the library:
./gradlew clean build
-
Publish ZIP artifact to the local
.m2
repository:./gradlew clean build publishToMavenLocal
-
Publish the generated artifacts to the local Ballerina central repository:
./gradlew clean build -PpublishToLocalCentral=true
-
Publish the generated artifacts to the Ballerina central repository:
./gradlew clean build -PpublishToCentral=true
As an open source project, Ballerina welcomes contributions from the community.
For more information, go to the contribution guidelines.
All contributors are encouraged to read the Ballerina code of conduct.
- For more information go to the
postgresql.cdc.driver
library. - For example demonstrations of the usage, go to Ballerina By Examples.
- Chat live with us via our Discord server.
- Post all technical questions on Stack Overflow with the #ballerina tag.