Since upgrading our cluster from 7.6 to 7.8 we are experiencing problems with kibana. We are using elasticsearch for our central logging, we have a logstash index for every single day. If I do a empty kibana search (using no search term in discover) within a daily index everything works fine. But as soon as I am choosing a time range which is including indexes older than the current day, the following error message appears:
[cluster_block_exception] index [.async-search] blocked by: [FORBIDDEN/8/index write (api)];
This is only occuring in kibana AND only if I am doing a search without using any term. For example by clicking on the discover tab and choosing "last 24 hours".
I've already tried to set
PUT _all/_settings
{ "index": { "blocks": { "write": "false" } } }
unfortunately without success. If I am using a search query like "test" everything works fine.