New Kibana reposting job goes in Pending state instead of Processing

Using ELK Stack 7.12.1, After deleting pending jobs from Kibana reposting using the below querry,

POST /.reporting*/_delete_by_query
{
    "query": {
        "bool": {
            "must_not": {
                "exists": {
                    "field": "completed_at"
                }
            }
        }
    }
}

all my new reposting job goes into pending state for some time then It goes in processing, is this query takes time after sending the 200 response code or the job just removed from the Kibana Reposting UI.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.