Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 1.58 KB

development.md

File metadata and controls

56 lines (42 loc) · 1.58 KB

Build Sink Connector from sources.

Requirements

Install JDK(For Mac)

brew install openjdk@17
export JAVA_HOME=/opt/homebrew/Cellar/openjdk@17/17.0.11/libexec/openjdk.jdk/Contents/Home/
mvn -v
# verify it's actual openjdk 17 used and continue with steps
  1. Clone the ClickHouse Sink connector repository:
git clone [email protected]:Altinity/clickhouse-sink-connector.git
  1. Build the ClickHouse Sink connector Library: This builds the requirement for sink connector lightweight<sink-connector-library-version>0.0.8</sink-connector-library-version>
cd sink-connector
mvn install -DskipTests=true
  1. Build the ClickHouse Lightweight connector:
cd ../sink-connector-lightweight
mvn install -DskipTests=true

The JAR file will be created in the target directory.

Local Environment setup(IntelliJ)

Run the following script to start MYSQL and Clickhouse docker containers.

clickhouse-sink-connector/sink-connector-lightweight/docker$ ./startMySQLCHLocalSinkDev.sh 

Setup run configuration and set the main class to

com.altinity.clickhouse.debezium.embedded.ClickHouseDebeziumEmbeddedApplication

Arguments:

sink-connector-lightweight/docker/config_local.yml -Dlog4j.debug=true  -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG

image