You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 5, 2021. It is now read-only.
As far as i understood calling _stats on elasticsearch can provoke a "index_closed_exception" if using wildcard-aliases that expand to closed indexes. (elastic/elasticsearch#15744)
Adding the "ignore_unavailable=true" option avoids that. Would it make sense to add this to the line
As far as i understood calling _stats on elasticsearch can provoke a "index_closed_exception" if using wildcard-aliases that expand to closed indexes. (elastic/elasticsearch#15744)
Adding the "ignore_unavailable=true" option avoids that. Would it make sense to add this to the line
host + '/' + encode(index) + '/_stats?level=shards&human',
in _site/dist/kopf.js ? (this resolves the problem on my current elastic cluster with kopf)
(i'm getting:
[2016-08-17 19:11:16] {"data":{"error":{"root_cause":[{"type":"index_closed_exception","reason":"closed","index":"prod-2016.06.07"}],"type":"index_closed_exception","reason":"closed","index":"prod-2016.06.07"},"status":403},"status":403,"config":{"method":"GET","transformRequest":[null],"transformResponse":[null],"url":"http://localhost:9200/_stats/docs,store","headers":{"Accept":"application/json, text/plain, /"}},"statusText":"Forbidden"}
)
The text was updated successfully, but these errors were encountered: