Versions Compared

Key

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

...

[2] https://datatracker.ietf.org/doc/html/rfc4180 2.7

  > If double quotes are used to enclose fields, then a double-quote appearing inside a field must be escaped by preceding it with another double quote.

Accessing values by deep-scan

There are scenarios to target multiple fields with the same name at different levels, e.g. dynamic/unknown structures, in a recursive manner.

For these cases, an asterisk can be used to search all elements within a path (e.g. similar to JsonPath[3], but using asterisk instead of .. ).

  • a.*.b  will access a  and then search all child objects for the field b, including arrays.

Deep scans are expected to return multiple paths. If only one element is found, a list of one path is returned. If no path is found, an empty list is returned.

SMTs have to define how to process paths lists.

...

  1. a. Deep-scan as prefix to a field
Code Block
{
  "k1": { "b": "b1" },
  "k2": { "b": "b2" }, 
  "k3": { "b": "b3" },
  "b": "b4"
}

...

  • k1.b
  • k2.b
  • k3.b
  • b

...

  1. b. Deep-scan as prefix to a nested field
Code Block
{
  "k1": { "b": { "c": "c1" } },
  "k2": { "b": { "c": "c2" } }, 
  "k3": { "b": { "c": "c3" } },
  "b": { "c": "b4" } 
}

...

  • k1.b.c
  • k2.b.c
  • k3.b.c
  • b.c

...

Code Block
{ "a": {
  "k1": { "b": { "c": "c1" } },
  "k2": { "b": { "c": "c2" } }
}, "a2": {
  "k3": { "b": { "c": "c3" } }
}}

Public Interfaces

From the existing list of the SMTs, there are the following to be impacted by this change:

New configuration flags

NameTypeDefaultImportanceDocumentation
field.syntax.version STRING v1HIGH 

Permitted values: v1 , v2 . Defines the version of the syntax to access fields. If set to "v1", then the field paths are limited to access the elements at the root level of the struct or map. If set to "v2", the syntax will support accessing nested elements. o access nested elements, dotted notation is used. If dots are already included in the field name, then dots themselves can be used to represent dots part of the field name. e.g. to access elements from a struct/map named "same.field", the following format can be used to access its elements: "same..field.element".

This configuration will affect all the field paths used by the transform.

These flags will be added conditionally to some SMTs, as described below.

Affected SMTs

Cast

Changes:

  • Extend spec to support nested notation.

Examples:

scenarioinputsmtoutput
1. Nested field.


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.Cast$Value",
"transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.spec": "k1:string,parent.child.k2:int64"
}



Code Block
languagejs
{
  "k1": "123",
  "parent": {
    "child": {
      "k2": 123    
    }
  }
}


2. Nested field, when field names include dots


Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.Cast$Value",
"transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.spec": "k1:string,parent..child.k2:int64"
}



Code Block
languagejs
{
  "k1": "123",
  "parent.child": {
    "k2": 123
  }
}


ExtractField

Changes:

  • Extend field to support nested notation.

Example:

scenarioinputsmtoutput
1. Nested field.


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ExtractField$Value",
"transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.field": "parent.child.k2"
}



Code Block
languagejs
"123"


2. Nested field, when field names include dots


Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ExtractField$Value",
"transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.field": "parent..child.k2"
}



Code Block
languagejs
"123"


3. Nested field, an object returned.


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ExtractField$Value",
"transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.field": "parent.child"
}



Code Block
languagejs
{ "k2": "123" }


HeaderFrom

Changes:

  • Extend fields to support nested notation.

Example:

scenarioinputsmtoutput
1. Nested field.


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.HeaderFrom$Value",
"transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.fields": "k1,parent.child.k2",
"transforms.smt1.headers": "k1,k2"
}



Code Block
languagejs
headers:
- k1=123
- k2="123"


2. Nested field, when field names include dots


Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.HeaderFrom$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.fields": "k1,parent..child.k2",
"transforms.smt1.headers": "k1,k2"
}



Code Block
languagejs
headers:
- k1=123
- k2="123"


MaskField

Changes:

  • Extend fields

...

Find the prefix element (a).

If found, scan the nested structure as in the scenarios 1.a and 1.b.

...

  • a.k1.b
  • a.k2.b

...

Code Block
{ "a": [ "v1", "v2", "v3"] }

...

  • a.0
  • a.1
  • a.2

...

Code Block
{ "a": {
"k1": "v1",
"k2": "v1",
"k3": { "b": "c" }
}

...

  • a.k1
  • a.k2
  • a.k3

...

Code Block
{ "a": {
"k1": "v1",
"k2": "v1"
}

...

Code Block
{ "*": {
"k1": "v1",
"k2": "v1"
}

...

If an asterisk is already being used as a field name, the to target that field, a double-asterisk is used.

This is only needed when the field's full name is only asterisks.

...

  • *.k1

...

Code Block
{ "**": {
"k1": "v1",
"k2": "v1"
}

...

  • **.k1

Accessing Arrays

Arrays can be accessed in different ways and at different levels.

...

Code Block
{ "a": [ "a1", "a2", "a3"]

...

  • a

...

Code Block
{ "a": [ "a1", "a2", "a3"]

...

  • a.0
  • a.1
  • a.2

...

Code Block
{ "a": [ "a1", "a2", "a3"]

...

a.<index>

a.0

...

  • a.0

...

Code Block
{ "a": [ { "b": "b1" }, { "b": "b2" } ]

...

  • a.0.b
  • a.1.b

...

Code Block
{ "a": [ { "b": "b1" }, { "b": "b2" } ]

...

  • a.0.b

Public Interfaces

From the existing list of the SMTs, there are the following to be impacted by this change:

New configuration flags

...

Permitted values: v1 , v2 . Defines the version of the syntax to access fields. If set to "v1", then the field paths are limited to access the elements at the root level of the struct or map. If set to "v2", the syntax will support accessing nested elements. o access nested elements, dotted notation is used. If dots are already included in the field name, then dots themselves can be used to represent dots part of the field name. e.g. to access elements from a struct/map named "same.field", the following format can be used to access its elements: "same..field.element".

This configuration will affect all the field paths used by the transform.

These flags will be added conditionally to some SMTs, as described below.

Affected SMTs

Cast

Changes:

...

  • to support nested notation.
  • Supports arrays and deep-scan to access multiple fields.
  • If the paths returned do not match a supported type to be converted by spec, then ignores.

Example:

Examples:

scenarioinput
scenarioinput
smtoutput
1. Nested field.


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
Cast$Value
MaskField$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
spec
fields": "
k1:string,
parent.child.k2
:int64
"
}



Code Block
languagejs
{
  "k1": 
"
123
"
,
  "parent": {
    "child": {
      "k2": 
123
""    
    }
  }
}


2. Nested field, when field names include dots


Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
Cast$Value
MaskField$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
spec
fields": "
k1:string,
parent..child.k2
:int64
"
}



Code Block
languagejs
{
  "k1": 
"
123
"
,
  "parent.child": {
    "k2": 
123
""
  }
}
3. Multiple paths found


ReplaceField

Changes:

  • Extend theinclude and exclude lists

Example:

scenarioinputsmtoutput
1. Nested field. Drop field


Code Block
languagejs
code
{
  "k1": 123,
  "
parent1
parent": {
    "child": {
      "k2": "123"    
    }
  }
, "parent2": { "child": { "k2": "123" } } } Code Block

}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
Cast$Value
ReplaceField$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
spec
exclude": "
k1:string,*
parent.child.k2
:int64
"
}



Code Block
languagejs
{
  "k1": 
"
123
"
,
  "
parent1
parent": {
    "child": {
    
"k2": 123
}
  }
}, "parent2": { "child": { "k2": 123 } } }4. Multiple paths found, but some types do not match and are ignored
}


2. Nested field. Drop struct


Code Block
languagejs
code
{
  "k1": 123,
  "
parent1
parent": {
    "child": {
      "k2": "123"    
    }
  }
, "parent2": { "child": { "k2": {} } } } Code Block{ "transforms": "smt1"

}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
Cast$Value
ReplaceField$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
spec
exclude": "
k1:string,*
parent.child
.k2:int64
"
}



Code Block
languagejs
{
  "k1": 
"
123
"
,
  "
parent1
parent": {
  }
}


3. Nested field. Include field


Code Block
languagejs
{
  "
child
k1": 
{
123,
  
"k2": 123
"parent": {
    
} }, "parent2
"child": {
      "
child
k2": 
{
"123",
      "
k2
k3": 
{}
"234"    
    }
  }
}

ExtractField

Changes:

...

Example:

scenarioinputsmtoutput1. Nested field.

...

  • The result produces an array, even for one or no field is found.



Code Block
languagejs
{
"k1": 123, "parent": { "child": { "k2": "123" } } } Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ExtractField$Value
ReplaceField$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
field
include": "parent.child.k2"
}
Code Block
languagejs
"123"
2. Nested field, when field names include dots



Code Block
languagejs
{
  "
k1
parent": 
123,
{
    "
parent.
child": {
      "k2": "123"    
    }
  }
}


4. Nested field. Include struct


Code Block
languagejs
{
  "
transforms
k1": 
"smt1"
123,
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ExtractField$Value", "transforms.smt1.field.syntax.version
  "parent": {
    "child": {
      "k2": "
v2
123",
"transforms.smt1.field
      "k3": 
"parent..child.k2" }
Code Block
languagejs
"123"
3. Nested field, an object returned. Code Block
languagejs
{ "k1": 123, "parent": { "child": { "k2": "123"
"234"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ExtractField$Value
ReplaceField$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
field
include": "parent.child"
}



Code Block
languagejs
{
  "
k2
parent": 
"123" }3. Nested field, an array returned. Code Block
languagejs
{
{
    "
k1
child": 
123,
{
 
"parent1":
 
{
    "
child
k2": 
{
"123",
      "
k2
k3": "
123
234" 
   
    }
  }
}


5. Nested field, when field names include dots


Code Block
languagejs
{
  "
parent2
k1": 
{
123,
  
"parent.child": {
    "k2": "
234" }
123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ExtractField$Value
ReplaceField$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
field
renames": "
*
parent..child.k2:field2"
}



Code Block
languagejs
[
{
  "k1": 123
", "234" ]

...

,
  "parent.child": {
   "field2": "123"
  }
}


TimestampConverter

Changes:

  • Extend fields to support nested notation.Does not support multiple values (e.g. deep scan or array), if multiple paths are found, only the first one is used.

Example:

scenarioinputsmtoutput
1. Nested field.


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": 
"123"
1556204536000       
  
}
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
HeaderFrom$Value
TimestampConverter$Value",
 "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
fields
field": "
k1,
parent.child.k2",
"transforms.smt1.
headers
format": "
k1,k2"
yyyy-MM-dd",
"transforms.smt1.target.type": "string"
}



Code Block
languagejs
headers:
{
-
  "k1
=123 - k2="123"
": 123,
  "parent": {
    "child": {
      "k2": "2014-04-25"         }
  }
}


2. Nested field, when field names include dots


Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
      "k2":
"123"
 1556204536000         }
  }
}



Code Block
languagejs



{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
HeaderFrom$Value
TimestampConverter$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
fields
field": "
k1,
parent..child.k2",
"transforms.smt1.
headers
Code Block
languagejs
headers:
- k1=123
- k2="123"
3. Nested field, an array returned.
format": "
k1,k2" }
yyyy-MM-dd",
"transforms.smt1.target.type": "string"
}




Code Block
languagejs
{
  "k1": 123,
  "
parent1": { "
parent.child": {
   
   "k2": "
123
2014-04-25"   
} }
}
}


ValueToKey

Changes:

  • Extend fields to support nested notation.

Example:

scenarioinputsmtoutput
1. Nested field.


Code Block
languagejs
{
  "k1": 123,
  "
parent2
parent": {
    "child": {
      "k2": "
234
123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ExtractField$Value
ValueToKey",
 "transforms.smt1.
fields
field.syntax.version": "
k1,*.child.k2
v2",
"transforms.smt1.
headers
fields": "
k1,
parent.child.k2"
}



Code Block
"123"



2. Nested struct to Key.


Code Block
languagejs
headers:
{
-
  
k1=123 - k2="123"

MaskField

Changes:

  • Extend fields to support nested notation.
  • Supports arrays and deep-scan to access multiple fields.

Example:

scenarioinputsmtoutput1. Nested field. Code Block
languagejs
{ "k1"
"k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
MaskField$Value
ValueToKey", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.fields": "parent.child
.k2
"
}



Code Block
languagejs
{
  "
k1
k2": "123
, "parent
"
: {
   
"child":
 
{ "k2": "" } } }

}



3
2
. Nested field, when field names include dots


Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
MaskField$Value
ValueToKey", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.fields": "parent..child.k2"
}



Code Block
languagejs
{ "k1
"
:
123
, "parent.child": { "k2": "" } }1. Nested field.
Code Block
languagejs
{
  "k1": 123,
  "parent1": {
    "child": {
      "k2": "123"    
    }
  },
  "parent2": {
    "child": {
      "k2": "234"    
    }
  }
}
Code Block
languagejs
"


InsertField

Changes:

  • Extend *.field to support nested notation.

New configurations (additional to field.syntax.version described above):

Name

TypeDefaultImportanceDocumentation
field.on.missing.parentSTRINGcreateMEDIUMPermitted values: create, ignore. Defines how to react when the field to act on does not have a parent and "field.style" is "nested". If set to "create", then the SMT will create the parent struct/map when it does not exist. If set to "ignore", then it will SMT have no effect.
field.on.existing.fieldSTRINGoverwriteMEDIUMPermitted values: overwrite, ignore. Defines how to react when the field to act on already exists. If set to "overwrite", then the SMT will be applied to the existing field. If set to "ignore", then it will SMT have no effect.


Example:

scenarioinputsmtoutput
1. Nested field.
{ "transforms": "smt1", "transforms.smt1.type": "org.apache.kafka.connect.transforms.MaskField$Value", "transforms.smt1.field.syntax.version": "v2", "transforms.smt1.fields": "*.child.k2" }


Code Block
languagejs
{
  "k1": 123,
  "
parent1
parent": {
    "child": {
      "k2": "123"    
    }
  
}, "parent2
}
}



Code Block
languagejs
{
"transforms": 
{ "child": { "k2": "" } } }

ReplaceField

Changes:

...

Example:

scenarioinputsmtoutput1. Nested field. Drop field
"smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.InsertField$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.field": "parent.child.k3"
"transforms.smt1.static.value": "v3" 
}



Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123",
      "k3": "v3"   
    }
  }
}


2. Nested field, when field names include dots


Code Block
languagejs
{
  "
transforms
k1": 
"
123,
  "parent.child": {
    "k2": "123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ReplaceField$Value
InsertField$Value",  "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.
exclude
field": "parent..child.
k2"
k3"
"transforms.smt1.static.value": "v3" 
}



Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "
child
k2": 
{
"123",
    
}
"k3": "v3"
  }
}
2


3. Nested field
. Drop struct
with the parent missing


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ReplaceField$Value
InsertField$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.
exclude
field": "parent.
child
other.k3"
}
Code Block
languagejs
{
  "k1": 123,
  "parent": {
  }
}
3. Nested field. Include field
"transforms.smt1.static.value": "v3" 
}



Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"  
    },
    "other": {
      "k3": "
234
v3" 
 
 

    }
  }
}


4. Nested field with the parent missing, and ignore is set


Code Block
languagejs
{
  "
transforms
k1": 
"smt1"
123,
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ReplaceField$Value", "transforms.smt1.field.syntax.version": "v2", "transforms.smt1.include": "parent.child.k2" } Code Block
languagejs
{ "parent"
  "parent": {
    "child": {
      "k2": "123"  
 
  
    }
  }
}
4. Nested field. Include struct



Code Block
languagejs
{
"
k1
transforms": 
123
"smt1",
"parent": { "child": { "k2": "123", "k3": "234"   } } } Code Block
languagejs
{ "transforms": "smt1", "transforms.smt1.type": "
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ReplaceField$Value
InsertField$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.
include
field": "parent.other.
child"
k3"
"transforms.smt1.static.value": "v3",
"transforms.smt1.field.on.missing.parent": "ignore"
}



Code Block
languagejs
{
  "
parent
k1": 
{
123,
  
"
child
parent": {
    "
k2
child": 
"123",
{
      "
k3
k2": "
234
123"
 
  
    }
  }
}


5. Nested field
, when field names include dots
with the parent missing


Code Block
languagejs
{
  "k1": 123,
  "parent
.
": {
    "child": {
      "k2": "123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ReplaceField$Value
InsertField$Value",  "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.
renames
field": "parent
.
.child.k2
:field2
"
} Code Block
languagejs
{   "k1": 123,   "parent.child": {    "field2
"transforms.smt1.static.value": "
123
456"
  }

}
6. Multiple fields



Code Block
languagejs
{
  "k1": 123,
  "
parent1
parent": {
    "child": {
      "k2": "
123
456"  
  
  }
  }
}


6. Nested field with the parent missing, and ignore is set


Code Block
languagejs
{
  "k1": 
}
123,
  "
parent2
parent": {
    "child": {
      "k2": "
234
123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
ReplaceField$Value
InsertField$Value",  "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
renames
static.field": "
*
parent.child.k2
:field2
"
} Code Block
languagejs
{ "k1
"transforms.smt1.static.value": 
123
"456",
"parent1": { "child": { "field2": "123" } }
"transforms.smt1.field.on.existing.field": "ignore"
}



Code Block
languagejs
{
  "k1": 123,
  "
parent2
parent": {
    "child": {
      "
field2
k2": "
234
123"  

    }
  }
}

...


HoistField

Changes:

  • Extend fields to support nested notation.
  • Supports arrays and deep-scan to access multiple fields.

...

  • Add a hoisted config to point to a specific path to hoist.

New configurations:

Name

TypeDefaultImportanceDocumentation
hoisted STRING <empty>MEDIUM Path to the element to be hoisted. If empty, the root struct/map is hoisted.

Examples:

scenarioinputsmtoutput
1. Nested field.


Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": 
1556204536000        
"123"    
    }
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
TimestampConverter$Value
HoistFIeld$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
field
hoisted": "parent.child.k2",
"transforms.smt1.
format
field": "
yyyy-MM-dd
other"
, "transforms.smt1.target.type": "string" }

}



Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "other": {
        "k2": "
2014-04-25"        
123"
      }    
    }
  }
}


2. Nested
field
struct, when field names include dots


Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    
"k2": 
1556204536000         }
"123"
  }
}



Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.
TimestampConverter$Value
HoistFIeld$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.
field
hoisted": "parent..child
.k2
",
"transforms.smt1.
format Code Block
field": "
yyyy-MM-dd", "transforms.smt1.target.type": "string" }
other"
}



Code Block
languagejs
{
  "k1": 123,
  "other": {
    "parent.child": {
   
 
 
 
  "k2": "
2014-04-25"  
123"
    }
  }
}

ValueToKey

Changes:

  • Extend fields to support nested notation.
  • Supports arrays and deep-scan to access multiple fields.
    • The result produces an array, even for one or no field is found.

Example:



Non-affected SMTs

These SMT do not require nested structure support:

  • DropHeaders: Drop one or multiple headers.
  • Filter: Drops the whole message based on a predicate.
  • InsertHeader: Insert a specific message to the header.
  • RegexRouter: Acts on the topic name.
  • SetSchemaMetadata: Acts on root schema.
  • TimestampRouter: Acts on timestamp.
  • Flatten: Acts on the whole key or message. 

Compatibility, Deprecation, and Migration Plan

Existing SMT configurations will not be affected by these changes as the default field.style  is plain, which represents the current behavior.

Rejected Alternatives

Keep ExtractField as it is and use it multiple times until reaching nested fields

This KIP proposes simplifying this configuration by replacing multiple invocations with only one nested one.

Use dots as the only separator and escape with backslashes when collides

Trying to keep only one separator, one of the alternatives is to use dots to separate; if it collides with the existing field names use backslashes "\" to represent dots that are part of the name e.g.  "this.field" (which would refer to the nested field "field" under the top-level "this" field), and "this\.field" (which would refer to the field named "this.field").

However, backslashes are also used by JSON. This could lead unfriendly configurations like "this\\\\.is\\\\.not\\\\.very\\\\.readable"

Use custom separators for edge cases

Using double dots to escape separators is another alternative to try sticking to using only dots as a field separator.

Comparing:

With double dotsWith separator


Code Block
{
  "transforms": "cast",
  "transforms.cast.field.syntax.version": "v2",          
  "transforms.cast.type": "..."
  "transforms.cast.spec": "address..personal.country:string"
}



Code Block
{   
  "transforms": "cast",
  "transforms.cast
scenarioinputsmtoutput1. Nested field.
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ValueToKey", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.fields": "parent.child.k2"
}
Code Block
"123"
2. Nested struct to Key.
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{ "transforms": "smt1", "transforms.smt1.type": "org.apache.kafka.connect.transforms.ValueToKey", "transforms.smt1
.field.syntax.version": "v2",
  "transforms.cast.
smt1
field.
fields
separator": "
parent.child
/"
} Code Block{ "k2
, 
  "transforms.cast.type": "
123
..."
  
}3. Nested field, when field names include dots
Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ValueToKey", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.fields": "parent..child.k2"
}
Code Block
languagejs
"123"
4. Multiple values to key
Code Block
languagejs
{
  "k1": 123,
  "parent1": {
    "child": {
      "k2": "123"    
    }
  },
  "parent2": {
    "child": {
      "k2": "234"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.ValueToKey", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.fields": "*.child.k2"
}
Code Block
[ "123", "234 ]

InsertField

Changes:

  • Extend *.field to support nested notation.
  • Does not support multiple values (e.g. deep scan or array)

New configurations (additional to field.syntax.version described above):

...

Name

...

Example:

...

Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.InsertField$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.field": "parent.child.k3"
"transforms.smt1.static.value": "v3" 
}
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123",
      "k3": "v3"   
    }
  }
}

...

Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.InsertField$Value",  "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.field": "parent..child.k3"
"transforms.smt1.static.value": "v3" 
}
Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123",
    "k3": "v3"
  }
}

...

Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.InsertField$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.field": "parent.other.k3"
"transforms.smt1.static.value": "v3" 
}
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"  
    },
    "other": {
      "k3": "v3"  
    }
  }
}

...

Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.InsertField$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.field": "parent.other.k3"
"transforms.smt1.static.value": "v3",
"transforms.smt1.field.on.missing.parent": "ignore"
}
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"  
    }
  }
}

...

Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.InsertField$Value",  "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.field": "parent.child.k2"
"transforms.smt1.static.value": "456"
}
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "456"  
    }
  }
}

...

Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.InsertField$Value",  "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.static.field": "parent.child.k2"
"transforms.smt1.static.value": "456",
"transforms.smt1.field.on.existing.field": "ignore"
}
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"  
    }
  }
}

HoistField

Changes:

  • Add a hoisted config to point to a specific path to hoist.

  • Does not support multiple values (e.g. deep scan or array)

New configurations:

...

Name

...

Examples:

...

"transforms.cast.spec": "address.personal/country:string",
}


Even if using custom separators represent a more explicit configuration, there is always the possibility that all the separators are already included as part of the field name, leading to issues and request for changes.

To avoid this, this KIP proposes using the approach to precede dots with another to escape itself.

Use JSONPath notation to access nested elements

JSONPath[1] was a proposed alternative to the nested notation. A drafted version of the KIP with examples using the proposed notation is outlined here: [DRAFT] KIP-821: Connect Transforms support for nested structures (JsonPath-based draft)

The following limitations were found:

  • The JSONPath spec is too extensive for the use-cases included in this KIP.
  • A sub-set of JSONPath was proposed, but the custom spec ends up being more complex than the notation proposed here.
    • A sub-set will imply not using existing dependencies. Though adding an existing dependency would also reduce the chance of the KIP being accepted as the risk for external vulnerabilities will increase.
    • The sub-set will require users to learn JSONPath, and then what's covered and what's not by the custom implementation.

Given these cons, the KIP is preferring the dotted notation.

[1] https://github.com/json-path/JsonPath

Use named styles instead of syntax versions

Was considered to use a configuration to name the styles to target fields:

  • field.style  with valid values: "plain", "nested".

Even though this configuration is self-describing, it limits the semantics of the values.

Instead, the KIP is considering a versioned configuration "field.syntax.version" to avoid affecting current behavior and make it easier to extend by including compatible changes on the same version.

Use configuration flag per SMT instead of per-field configuration

Instead of adding a configuration under each field config, e.g. include.syntax.version , the KIP proposed to have a single configuration per SMT, to affect all the input fields.


Potential Improvements

Support Array access

Adding notation for arrays (e.g. [], or array.<offset>) to access to array elements and apply SMTs to fields within the array.

This has to consider fields that could be including [, ] , or numbers as part of their names and how to escape them.

Support Deep-Scan

Supported by JsonPath, could allow applying SMTs to multiple fields with the same name at different locations of the structure.

At the moment is not clear how to escape the character used for deep-scan. e.g. if using *

...

Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "k2": "123"    
    }
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.HoistFIeld$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.hoisted": "parent.child.k2",
"transforms.smt1.field": "other"
}
Code Block
languagejs
{
  "k1": 123,
  "parent": {
    "child": {
      "other": {
        "k2": "123"
      }    
    }
  }
}

...

Code Block
languagejs
{
  "k1": 123,
  "parent.child": {
    "k2": "123"
  }
}
Code Block
languagejs
{
"transforms": "smt1",
"transforms.smt1.type": "org.apache.kafka.connect.transforms.HoistFIeld$Value", "transforms.smt1.field.syntax.version": "v2",
"transforms.smt1.hoisted": "parent..child",
"transforms.smt1.field": "other"
}
Code Block
languagejs
{
  "k1": 123,
  "other": {
    "parent.child": {
      "k2": "123"
    }
  }
}

Non-affected SMTs

These SMT do not require nested structure support:

  • DropHeaders: Drop one or multiple headers.
  • Filter: Drops the whole message based on a predicate.
  • InsertHeader: Insert a specific message to the header.
  • RegexRouter: Acts on the topic name.
  • SetSchemaMetadata: Acts on root schema.
  • TimestampRouter: Acts on timestamp.
  • Flatten: Acts on the whole key or message. 

Compatibility, Deprecation, and Migration Plan

Existing SMT configurations will not be affected by these changes as the default field.style  is plain, which represents the current behavior.

Rejected Alternatives

Keep ExtractField as it is and use it multiple times until reaching nested fields

This KIP proposes simplifying this configuration by replacing multiple invocations with only one nested one.

Use dots as the only separator and escape with backslashes when collides

Trying to keep only one separator, one of the alternatives is to use dots to separate; if it collides with the existing field names use backslashes "\" to represent dots that are part of the name e.g.  "this.field" (which would refer to the nested field "field" under the top-level "this" field), and "this\.field" (which would refer to the field named "this.field").

However, backslashes are also used by JSON. This could lead unfriendly configurations like "this\\\\.is\\\\.not\\\\.very\\\\.readable"

Use custom separators for edge cases

Using double dots to escape separators is another alternative to try sticking to using only dots as a field separator.

Comparing:

...

Code Block
{
  "transforms": "cast",
  "transforms.cast.field.syntax.version": "v2",          
  "transforms.cast.type": "..."
  "transforms.cast.spec": "address..personal.country:string"
}
Code Block
{   
  "transforms": "cast",
  "transforms.cast.field.syntax.version": "v2",
  "transforms.cast.field.separator": "/", 
  "transforms.cast.type": "..."
  "transforms.cast.spec": "address.personal/country:string",
}

Even if using custom separators represent a more explicit configuration, there is always the possibility that all the separators are already included as part of the field name, leading to issues and request for changes.

To avoid this, this KIP proposes using the approach to precede dots with another to escape itself.

Use JSONPath notation to access nested elements

JSONPath[1] was a proposed alternative to the nested notation. A drafted version of the KIP with examples using the proposed notation is outlined here: [DRAFT] KIP-821: Connect Transforms support for nested structures (JsonPath-based draft)

The following limitations were found:

  • The JSONPath spec is too extensive for the use-cases included in this KIP.
  • A sub-set of JSONPath was proposed, but the custom spec ends up being more complex than the notation proposed here.
    • A sub-set will imply not using existing dependencies. Though adding an existing dependency would also reduce the chance of the KIP being accepted as the risk for external vulnerabilities will increase.
    • The sub-set will require users to learn JSONPath, and then what's covered and what's not by the custom implementation.

Given these cons, the KIP is preferring the dotted notation.

[1] https://github.com/json-path/JsonPath

Use named styles instead of syntax versions

Was considered to use a configuration to name the styles to target fields:

  • field.style  with valid values: "plain", "nested".

Even though this configuration is self-describing, it limits the semantics of the values.

Instead, the KIP is considering a versioned configuration "field.syntax.version" to avoid affecting current behavior and make it easier to extend by including compatible changes on the same version.

Use configuration flag per SMT instead of per-field configuration

Instead of adding a configuration under each field config, e.g. include.syntax.version , the KIP proposed to have a single configuration per SMT, to affect all the input fields .