1

我正在尝试使用 PHP API,以及与代码中给出的相同示例

https://www.elastic.co/guide/en/elasticsearch/client/php-api/current/_search_operations.html#_scrolling

$client = ClientBuilder::create()->build();
$params = [
    "scroll" => "30s",          // how long between scroll requests. should be small!
    "size" => 50,               // how many results *per shard* you want back
    "index" => "my_index",
    "body" => [
        "query" => [
            "match_all" => new \stdClass()
        ]
    ]
];

// Execute the search
// The response will contain the first batch of documents
// and a scroll_id
$response = $client->search($params);

但是在 [scroll] 中为 VALUE_STRING 出现类似此未知键的错误。

目前使用 Elasticsearch 版本 6.2.2

有任何想法吗?

4

2 回答 2

1

问题是您将滚动参数放在 json 正文中,但它应该放在 URL 中。例如

index-name/_search?scroll=30s

不要忘记也将其$params删除

于 2019-06-10T15:10:00.560 回答
0

您可能不小心将滚动属性放在正文中。

于 2018-05-31T07:01:02.190 回答