原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/searching_a_frozen_index.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/searching_a_frozen_index.html

Searching a frozen indexedit

Frozen indices are throttled in order to limit memory consumptions per node. The number of concurrently loaded frozen indices per node is limited by the number of threads in the search_throttled threadpool, which is 1 by default. Search requests will not be executed against frozen indices by default, even if a frozen index is named explicitly. This is to prevent accidental slowdowns by targeting a frozen index by mistake. To include frozen indices a search request must be executed with the query parameter ignore_throttled=false.

GET /twitter/_search?q=user:kimchy&ignore_throttled=false