Flatten Mapping#
The flatten mapping flattens all nested structure into a flat list of simple columns. The columns have their original
path encoded into their name, such that conflicts between same names in different subtrees are avoided. You can also
specify which naming schema to use when new column names are generated.
Example#
mappings:
partial_facts:
kind: flatten
input: facts
naming: snakeCase
Fields#
kind(mandatory) (type: string):flattenbroadcast(optional) (type: boolean) (default: false): Hint for broadcasting the result of this mapping for map-side joins.cache(optional) (type: string) (default: NONE): Cache mode for the results of this mapping. Supported values areNONEDISK_ONLYMEMORY_ONLYMEMORY_ONLY_SERMEMORY_AND_DISKMEMORY_AND_DISK_SER
input(mandatory) (type: string): Specifies the name of the input mapping to be flattened.naming(optional) (type: string): Specifies the naming scheme used for the output. The following values are supported:camelCasesnakeCaseNote that the naming will only be used for concatenating column names and not for converting column names themselves. This means that if your column names are using camel case and you specifysnakeCasethen the path elements are left unchanged but concatenated using an underscore (_).
filter(optional) (type: string) (default: empty): An optional SQL filter expression that is applied after flatten operation.
Outputs#
main- the only output of the mapping