Hi,
We are in the process of migrating our ES 7 to ES 8. The Java application that connects to the elasticsearch had a job that periodically removed all documents from the system .tasks index where the completed flag is true. From my understanding, the .tasks index was populated with records when for example a deleteByQuery was issued without waiting for the result.
It looks like this index does not exist anymore in ES8 as executing http://localhost:9200/.tasks/_search returns a response with index_not_found_exception. (even after a deleteByQuery was triggered).
Can you confirm if the index no longer exists? If so, that would mean I could remove the job entirely from the application.