- Type Parameters:
R - the subtype of ConnectRecord on which this transformation will operate
- All Implemented Interfaces:
- Closeable, AutoCloseable, org.apache.kafka.common.Configurable, org.apache.kafka.connect.transforms.Transformation<R>
public class UnwrapFromMongoDbEnvelope<R extends org.apache.kafka.connect.connector.ConnectRecord<R>>
extends Object
implements org.apache.kafka.connect.transforms.Transformation<R>
Debezium Mongo Connector generates the CDC records in String format. Sink connectors usually are not able to parse
the string and insert the document as it is represented in the Source. so a user use this SMT to parse the String
and insert the MongoDB document in the JSON format.
- Author:
- Sairam Polavarapu