Closed alexandrebouthinon closed 11 months ago
Elasticsearch recommends now to use Point in Time API instead of scrolls https://www.elastic.co/guide/en/elasticsearch/reference/7.17/point-in-time-api.html#search-slicing. Scrolls are huge memory consumers but Point in Time API only consume disk space and file descriptors (which are cheaper than memory)
This need to be done in kuzzle first, then used inside kourou
Why?
Elasticsearch recommends now to use Point in Time API instead of scrolls https://www.elastic.co/guide/en/elasticsearch/reference/7.17/point-in-time-api.html#search-slicing. Scrolls are huge memory consumers but Point in Time API only consume disk space and file descriptors (which are cheaper than memory)