I want to know if there is something like "show processlist (mysql)" in ElasticSearch which shows the query processing.
Also if there is a way to stop a bad query processing.
Thanks in advance.
I want to know if there is something like "show processlist (mysql)" in ElasticSearch which shows the query processing.
Also if there is a way to stop a bad query processing.
Thanks in advance.
You can run an API call to get information about the current tasks: https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html#_current_tasks_information
Example:
Damien