Dan DC
11/09/2021, 2:17 PM$ as my complex type delimiter because I've got some Groovy transformations that I need to apply to other columns and is the only delimiter I can use to make my field names compatible with Groovy identifiers. My config looks like:
...
"complexTypeConfig": {
"delimiter": "$",
...
},
"transformConfigs": [
...
"columnName": "some_field",
"transformFunction": "json_format(parent_field$some_field)"
...
],
...Dan DC
11/09/2021, 2:18 PMDan DC
11/09/2021, 2:18 PMDan DC
11/09/2021, 2:20 PM__ (double underscore) as my complex type delimiter but the complex type transformer didn't like that and was unable to extract the values resulting in null columns. I didn't spot anything strange in the code so I was wondering why this delimiter can't be usedKishore G
Kishore G
Dan DC
11/09/2021, 6:35 PM