1
質問の処理を示すElasticSearchに "show processlist(mysql)"のようなものがあるかどうかを知りたいです。ElasticSearchでDSL(クエリ)処理を表示する方法は?
また、不正なクエリ処理を停止する方法がある場合。
ありがとうございます。
質問の処理を示すElasticSearchに "show processlist(mysql)"のようなものがあるかどうかを知りたいです。ElasticSearchでDSL(クエリ)処理を表示する方法は?
また、不正なクエリ処理を停止する方法がある場合。
ありがとうございます。
あなたは現在のタスクに関する情報を取得するためのAPI呼び出しを実行することができます。 https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html#_current_tasks_information
例:
curl -XGET 'localhost:9200/_tasks?pretty'
ダミアン
は、今私は、ES 2.3はこの機能をサポートしていました。 https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html –