I have an ingest pipeline to remove some fields for a reindex. However, the pipeline is not removing the last field. I have changed the order and it always leaves the last field in line. I am Version: 6.4.2
{
"reindex-prediction-clean": {
"description": "Redindex prediction to clean fields",
"processors": [
{
"remove": {
"field": [
"message_ovo",
"event_from",
"ovoid",
"ovosev",
"ovostate",
"ticket_number",
"sanity_check",
"ovoeventtime",
"ovo_event_time",
"elapsed_time_sec"
],
"ignore_failure": true
}
}
]
}
}