elasticsearch查询之大数据集分页查询

一、 要解决的问题

search命中的记录特别多,使用from+size分页,直接触发了elasticsearch的max_result_window的最大值;

{ "error": { "root_cause": [ { "type": "query_phase_execution_exception", "reason": "Result window is too large, from + size must be less than or equal to: [10000] but was [10001]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level setting." } ], "type": "search_phase_execution_exception", "reason": "all shards failed", "phase": "query", "grouped": true, "failed_shards": [ { "shard": 0, "index": "shirts", "node": "OBkTpZcTQJ25kmlNZ6xyLg", "reason": { "type": "query_phase_execution_exception", "reason": "Result window is too large, from + size must be less than or equal to: [10000] but was [10001]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level setting." } } ] }, "status": 500 }

将elasticsearch作为数据库使用,直接将max_result_window设置一个很大的值,但是数据量大了很影响查询性能;

二、elasticsearch支持的分页方式

elasticsearch提供了三种分页的查询方式,以支持不同的查询场景;

from + size

search after

scroll

以下测试使用的是 elasticsearch 6.8

三、 from + size 分页

from + size是使用最普遍的search分页方案;

from: 设置要返回第一条记录的相对位置,默认值为0;

size: 此次search返回的最大记录数量, 默认值为10;

我们可以直接从第11条记录开始,返回最多10条记录;

GET my_store_index/_search { "query": { "match": { "name": "bj" } }, "from": 10, "size": 10 }

此种分页方式特点

特别适合随机获取记录,实现类似商用搜索引擎的分页功能;

由于from + size是无状态的,搜索的时候,每个分片都需要返回from + size条记录,最终将所有分片的记录进行合并再返回size条记录;

受限实现机制,越靠后的记录查询性能越差,故elasticsearch默认设置max_result_window=10000,如果from + size超过这个值就会报错;

四、search after

即使我们将max_result_window调整成一个更大的值,但是当我们命中的结果比较多的时候,使用from + size的分页效果就会比较差;

elasticsearch提供的search after可以帮助我们解决这个问题;search after可以利用请求中包含的上一页的信息来帮助查询下一页的记录;

起始搜索如下,需要添加sort字段,并使用id作为排序字段;这里的排序字段需要确保每个document都是不同的,这样才能确保排序的唯一性;

GET my_store_index/_search { "_source": false, "query": { "match": { "name": "bj" } }, "size": 10, "sort": [ { "id": { "order": "desc" } } ] }

我们可以看到返回结果中包含了sort字段,里边包含了命中记录对应的sort的值;

{ "took" : 1, "timed_out" : false, "_shards" : { "total" : 5, "successful" : 5, "skipped" : 0, "failed" : 0 }, "hits" : { "total" : 25, "max_score" : null, "hits" : [ { "_index" : "my_store_index", "_type" : "_doc", "_id" : "f64cf9f4-db2b-4059-bf97-315fe95f233c", "_score" : null, "sort" : [ "f64cf9f4-db2b-4059-bf97-315fe95f233c" ] } ] } }

我们使用上一个请求中的sort的值作为以下请求中search_after的参数,来查询下一页的数据;

GET my_store_index/_search { "_source": false, "query": { "match": { "name": "bj" } }, "size": 10, "search_after":["f64cf9f4-db2b-4059-bf97-315fe95f233c"], "sort": [ { "id": { "order": "desc" } } ] }

此种分页方式的特点

需要指定一个值唯一的排序字段,通过返回记录的sort值对应的记录作为from的记录;

此种分页查询方式也是无状态的,分页的时候需要依赖search_after参数作为起始点,这样就可以直接跳过已经获取过的记录;

可以通过当前时间点最后一条记录的sort值,同时通过size来控制同时获取多页的记录来实现简单的向后随机翻页;

需要记录已经加载的每页起始的sort值,可以实现前向的随机翻页;

我们分别使用from+size、search after查询第二个10000条记录,查看两者执行时间,可以发现search after快将近2s;

GET my_store_index/_search { "_source":["id"], "query": { "match_phrase_prefix": { "deviceData.content": "us" } }, "size": 10000, "from": 10000 } { "took":8212, "timed_out":false, "_shards":{ "total":5, "successful":5, "skipped":0, "failed":0 }, "hits":{ "total":29908, "max_score":97.09149 } } GET my_store_index/_search { "_source":["id"], "query": { "match_phrase_prefix": { "deviceData.content": "us" } }, "size": 10000, "sort": [ { "id": { "order": "desc" } } ], "search_after":["aa877c87-bb08-4fbd-8a51-ed4ebaa57251"] } { "took":6320, "timed_out":false, "_shards":{ "total":5, "successful":5, "skipped":0, "failed":0 }, "hits":{ "total":29908, "max_score":null } }

五、scroll

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgjzjg.html