I have a need to split a field into an array based on a \n new line char, however this does not work. Instead now I have to do a mutate.gsub that converts newlines to some ascii character (like ~), only then can I invoke mutate.split() to get what I want. Also the latter does not work unless grok singles=true is enabled.
I have a need to split a field into an array based on a \n new line char, however this does not work. Instead now I have to do a mutate.gsub that converts newlines to some ascii character (like ~), only then can I invoke mutate.split() to get what I want. Also the latter does not work unless grok singles=true is enabled.