通过查询更新(updateByQuery)Elasticsearch-PHP

时间:2016-08-25 23:50:33

标签: php elasticsearch

我正在使用 Elasticsearch 2.3 以及官方php驱动程序 updateByQuery 让我在php中使用麻烦。关于如何使用它的一点帮助将不胜感激。

        $client = \Elasticsearch\ClientBuilder::create()->setHosts(['127.0.0.1:9200'])->build();
        # Request
        $updateRequest = [
            'index'     => 'gorocket',
            'type'      => 'logs',
            'body' => [
                'query' => [ 
                    'filtered' => [
                        'filter' => [
                            'bool' =>   [
                                            'must' =>
                                            [
                                                [
                                                    'match' => [ 'enabled' => 1 ],
                                                ],
                                            ]
                                        ]
                                    ]
                                ]
                            ]
                  ]
            ]
        ];
        # Update 
        $results = $client->updateByQuery($updateRequest);

基本上我想更新一些与某个查询匹配的文档字段(名称,价格)

谢谢。

2 个答案:

答案 0 :(得分:1)

所以,借助CURL api如何运作,我设法找到了一种方法。

首先,您需要编辑elasticsearch.yml以允许脚本编写。最后添加以下行。

script.engine.groovy.inline.search: on
script.engine.groovy.inline.aggs: on
script.engine.groovy.inline.update: on

您可以使用查询开始批量更新,如下所示。

    $client = \Elasticsearch\ClientBuilder::create()->setHosts(['127.0.0.1:9200'])->build();
    # Request
    $updateRequest = [
        'index'     => 'testindex',
        'type'      => 'logs',
        'conflicts' => 'proceed',
        'body' => [
            'query' => [ 
                'filtered' => [
                    'filter' => [
                        'bool' =>   [
                                        'must' =>
                                        [
                                            [
                                                'match' => [ 'enabled' => 1 ],
                                            ],
                                        ]
                                    ]
                                ]
                            ]
                        ],
            'script' => [
                    'inline' => 'ctx._source.enabled = value',
                    'params' => [
                        'value' => 0
                    ]
            ]
            ]
        ]
    ];
    # Update 
    $results = $client->updateByQuery($updateRequest);

那就是它。到目前为止,这并不容易记录。

答案 1 :(得分:1)

我想在上一个答案中添加一小部分

您不能在elasticsearch.yml

中添加以下参数
script.engine.groovy.inline.search: on
script.engine.groovy.inline.aggs: on
script.engine.groovy.inline.update: on

您的查询将是:

$client = \Elasticsearch\ClientBuilder::create()->setHosts(['127.0.0.1:9200'])->build();
# Request
$updateRequest = [
    'index'     => 'testindex',
    'type'      => 'logs',
    'conflicts' => 'proceed',
    'body' => [
        'query' => [ 
            'filtered' => [
                'filter' => [
                    'bool' =>   [
                        'must' => [
                            [
                                'match' => [ 'enabled' => 1 ],
                            ],
                        ]
                    ]
                ]
            ]
        ],
        'script' => [
            'lang' => 'painless',
            'source' => 'ctx._source.enabled = params.value',
            'params' => [
                'value' => 0
            ]
        ]
    ]
];

# Update 
$results = $client->updateByQuery($updateRequest);