Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/code-star/kafka-connect-simple-transformers
A collection of simple message transformers for Kafka Connect
https://github.com/code-star/kafka-connect-simple-transformers
Last synced: about 2 months ago
JSON representation
A collection of simple message transformers for Kafka Connect
- Host: GitHub
- URL: https://github.com/code-star/kafka-connect-simple-transformers
- Owner: code-star
- Created: 2020-04-09T14:25:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-31T21:54:11.000Z (almost 4 years ago)
- Last Synced: 2023-02-28T10:15:39.649Z (almost 2 years ago)
- Language: Java
- Size: 59.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Kafka Connect Transformers
==========================A collection of Simple Message Transformers for Kafka Connect.
- `Zip$Value`: compress the value of the record given as input.
- `Unzip$Value`: uncompress the value of the record given as input.Build
-----Run the following command to obtain a uber jar in `target/components`:
mvn clean package
Use
---### Zip
In the config that defines the connector, add the following lines:
"transforms": "..., zip, ...",
"transforms.zip.type": "nl.codestar.kafka.connect.transformers.compress.Zip$Value",No extra configuration parameters are needed.
### Unzip
In the config that defines the connector, add the following lines:
"transforms": "..., unzip, ...",
"transforms.unzip.type": "nl.codestar.kafka.connect.transformers.compress.Unzip$Value",No extra configuration parameters are needed.