Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kibana does not show data from frozen indexes in search/Discover of ElasticSearch

When I search a time-period last august where I only have frozen index-data, kibana finds no matches. When I unfreeze one of the-augest-indexes Kibana Discover finds the data. If I freeze it again, no data again. I'm using ELKStack 7.5.2.

What gives?

According to docs they should be searchable. I'm pretty sure no other queries are running, so it cannot be the frozen-search limit by search_throttled (well unless its zero or some weird thing).

like image 763
arberg Avatar asked Jan 26 '23 02:01

arberg


1 Answers

You are looking for

search:includeFrozen

Includes frozen indices in results. Searching through frozen indices might increase the search time. This setting is off by default. Users must opt-in to include frozen indices.

This needs to be set under advanced settings in Kibana.

Official link: https://www.elastic.co/guide/en/kibana/current/advanced-options.html

like image 147
Nielarshi Avatar answered Jan 31 '23 08:01

Nielarshi