@@ -104,15 +104,15 @@ transforms.TombstoneHandler.type=io.aiven.kafka.connect.transforms.TombstoneHand
104
104
transforms.TombstoneHandler.behavior =drop_silent
105
105
```
106
106
107
- ### ` ConcatField `
107
+ ### ` ConcatFields `
108
108
109
109
This transformation adds a new field to the message with a key of type string and a value of string which is the
110
110
concatenation of the requested fields.
111
111
112
112
Exists in two variants:
113
113
114
- - ` io.aiven.kafka.connect.transforms.ConcatField $Key ` - works on keys;
115
- - ` io.aiven.kafka.connect.transforms.ConcatField $Value ` - works on values.
114
+ - ` io.aiven.kafka.connect.transforms.ConcatFields $Key ` - works on keys;
115
+ - ` io.aiven.kafka.connect.transforms.ConcatFields $Value ` - works on values.
116
116
117
117
The transformation defines the following configurations:
118
118
- ` field.names ` - A comma-separated list of fields to concatenate.
@@ -123,12 +123,12 @@ The transformation defines the following configurations:
123
123
Here is an example of this transformation configuration:
124
124
125
125
```
126
- transforms=ConcatField
127
- transforms.ConcatField .type=io.aiven.kafka.connect.transforms.ConcatField $Value
128
- transforms.ConcatField .field.names=["test","foo","bar","age"]
129
- transforms.ConcatField .output.field.name="combined"
130
- transforms.ConcatField .delimiter="-"
131
- transforms.ConcatField .field.replace.missing="*"
126
+ transforms=ConcatFields
127
+ transforms.ConcatFields .type=io.aiven.kafka.connect.transforms.ConcatFields $Value
128
+ transforms.ConcatFields .field.names=["test","foo","bar","age"]
129
+ transforms.ConcatFields .output.field.name="combined"
130
+ transforms.ConcatFields .delimiter="-"
131
+ transforms.ConcatFields .field.replace.missing="*"
132
132
```
133
133
134
134
## License
0 commit comments