Hi,
Elasticsearch version: 7.13.3
Python module in use: elasticsearch-7.13.3
Pipeline:
B_AutoReply_pipeline = """
{
"processors":[
{
"date": {
"field": "Parsed_Datetime",
"formats": ["strict_date_optional_time","yyyy-MM-dd HH:mm:ss"],
"ignore_failure": true
}
},
{
"lowercase": {
"field": ["Flag_1","Flag_2","Flag_2"],
"ignore_failure": true
}
}
]
}
"""
I am having issues with the field property under lowercase processor. As a consequence it is not creating the pipeline.
I get an error saying that the field is not a string.
According to Elasticsearch documentation it is written about this processor: "Converts a string to its lowercase equivalent. If the field is an array of strings, all members of the array will be converted."
Does anyone know what am I doing wrong.
Thanks for your attention on this.
Regards,
f4d0