Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

From the perspective of Kafka Connect SMT configuration it looks like adding of a new optional attribute "transforms.transformschema.schema.namenamespace":

{
"transforms" : "TransformSchema",
"transforms.TransformSchema.type" : "org.apache.kafka.connect.transforms.SetSchemaMetadata$Value",
"transforms.TransformSchema.schema.namespace" : "my.new.namespace",
"transforms.transformschema.schema.name" : "NewSchemaName",
"transforms.TransformSchema.schema.version" : 42
}

...

The added "transforms.transformschema.schema.namenamespace" option's default value should be null, to be compatible with the old behavior.

...