Skip to content

List of custom Kafka Connect Converters and Kafka Connect SMT

Notifications You must be signed in to change notification settings

hifly81/kafka-connect-extensions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Overview

Custom Kafka Connect Converters and SMTs.

Converters:

  • org.hifly.kafka.OracleRawToBsonKeyConverter - Convert a byte [] to Oracle RAW data type.
  • org.hifly.kafka.ByteArrayAndStringConverter - pass through for byte array schema type and string schema type.

SMT:

  • org.hifly.kafka.smt.JsonKeyToValue - Add message key to message value as a new field.
  • org.hifly.kafka.smt.ExplodeJsonString - Create a Struct for a JSON Field. Extract JSON value from a massage field and copy the JSON fields in the output message as top-level fields

Install oracle jdbc driver in maven local repo

mvn install:install-file -Dfile=ojdbc10.jar -DgroupId=com.oracle -DartifactId=ojdbc10 -Dversion=19.3 -Dpackaging=jar

Execute tests

mvn clean test

Build and create a distributable jar

mvn clean compile assembly:single

Releases

No releases published

Packages

No packages published

Languages