Skip to content

jobteaser-oss/kafka-connect-transforms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository contains all the SMTs (Single Message Transformers) we use as part of our microservice data synchronization.

Email obfuscation

Kafka Connect SMT to obfuscate an existing email field.

This SMT supports obfuscating an email into the record Key or Value.

Properties:

Name Description Type Default Importance
email.field.name Field name to obfuscate String email High

Example on how to add to your connector:

transforms="obfuscate-email"
transforms.obfuscate-email.type="com.jobteaser.kafka.connect.transforms.ObfuscateEmail$Value"
transforms.obfuscate-email.email.field.name="email"