请参见下面的代码。我想完成的是限制每批大小的数量(50),但也限制TOTAL结果的数量(1000)。但是,使用代码示例,我得到所有匹配的记录。我究竟做错了什么?还是根本不支持此功能。

谢谢!

桑德

var elasticsearch = require('elasticsearch');
var _ = require('lodash');

var client = new elasticsearch.Client({
    host: 'host',
    log: 'info'
});

var allDocuments = [];
client.search({
    index: "index",
    type: "type",
    scroll: '30s',
    size: 50,
    body: {
        "from": 0,
        "size": 1000,
        "query": {
            "range": {
                "updated": {
                    "gte": "2016-10-24T08:35:10.540Z",
                    "lte": "2016-10-29T20:35:10.541Z"
                }
            }
        }
    }
}, function getMoreUntilDone(error, response) {
    response.hits.hits.forEach(function (hit) {
        allDocuments.push(hit._source);
    });
    if (response.hits.total !== allDocuments.length) {
        client.scroll({
            scrollId: response._scroll_id,
            scroll: '30s'
        }, getMoreUntilDone);
    } else {
        console.log('count', allDocuments.length);
    }
});

最佳答案

在点击1000次后,使用size不会停止查询。它将仅以1000为一组对其进行批处理。而是使用Terminate_after。

body: {
            "from": 0,
            "terminateAfter": 1000,
            "query": {
                "range": {
                    "updated": {
                        "gte": "2016-10-24T08:35:10.540Z",
                        "lte": "2016-10-29T20:35:10.541Z"
                    }
                }
            }
        }

关于javascript - Elasticsearch 滚动限制结果数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40317584/

10-17 03:11