How to stores the split values (using split processor) into three new fields?
here is my pipeline but need to store split values to separate 3 fields. I have tried set array list on target_field parameter but look likes it's not supporting. Can someone pls help?
PUT _ingest/pipeline/split_act_scene_line
{
"description": "split words on line_number field",
"processors": [
{
"split": {
"field": "line_number",
"separator": "\.+",
"target_field": ["field1", "filed2", "filed3"]
}
}
]
}
I don't think this is possible with just the split processor. Instead, you can first split into a temporary field, and then next use three set processors to assign the different array elements to the different fields:
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.