Introduction
When data moves through Kafka Connect, it often needs changes to fit the target system. Transform and converter chains let you change data format and content step-by-step, like a factory line, so the data is ready to use.
When you want to change the format of messages from JSON to Avro before sending to a database.
When you need to add or remove fields from data as it moves through Kafka Connect.
When you want to convert data encoding from string to bytes for a specific sink system.
When you want to apply multiple small changes to data in order, like trimming spaces then changing case.
When you want to ensure data is compatible with the target system by applying converters and transforms in sequence.