groovy - 如何使用 Elasticsearch 脚本尽快部分更新 5 亿个文档

标签 groovy elasticsearch pyes

我维护着一个包含大约 5 亿个文档的索引。其中,每个文档都有一个包含 1 到 10 个单词的字符串字段。我想分析每个文档中该字段的字数,并将结果存储到相应文档的“wordCount”字段中。

我知道这里有partial_update功能: ES documentation to partial_update

我想知道是否可以使用脚本化的partial_update(可能使用高级Groovy 脚本)来显着提高上述任务的速度。如果是这样,有人可以提示如何开始吗?

目前,我正在使用下面的 python 脚本,但它非常慢(就大数据而言,由于许多网络往返和有效负载大小)

#!/usr/bin/env python
#-*- coding: utf-8 -*-

import elasticsearch
from elasticsearch import helpers
import pyes
from unidecode import unidecode
from datetime import datetime


def getKeywordLength(text):
    text = text.strip()
    return text.count(" ")+1

indices = ["corpus"]

uri2 = "%s:%d" % ("http://localhost", 9200)
connection2 = pyes.ES([uri2], timeout=2000000)
es = elasticsearch.Elasticsearch(timeout=2000000)

def start():
    elasticSearchIndexName = index

    ###build search query to iterate over all records
    squery ='{"sort": [{"timestampUpdated": {"order": "asc","ignore_unmapped": true}}],"query": {"filtered": {"query": {"bool": {"should": [{"query_string": {"query": "*"}}]}}}}}'

    ###fetch a scrolling handle over all records
    items = helpers.scan(es,query=squery.encode('utf8'),index=elasticSearchIndexName,scroll='360s', size='1000', timeout=2000000)

    ###iterate over all records
    for i in items:
        try:
            indexName = i["_index"]
            timestamp = datetime.now().isoformat()
            keyword = i["_source"]["keyword"]
            i["_source"]["keywordLength"] = getKeywordLength(keyword)
            i["_source"]["timestampUpdated"] =  timestamp
            result = connection2.index(i["_source"], indexName, "items", id=i['_id'])
            print result
        except:
            start()
            return
start()

最佳答案

当我有大量数据可以批量更新数百万个文档并且无法承担往返费用时,我通常会使用 update-by-query plugin 。原理非常简单,它允许您使用查询 DSL 运行查询,并在所有匹配的文档上运行脚本来执行您喜欢的任何操作。

在你的情况下,它会像这样:

curl -XPOST localhost:9200/corpus/update_by_query -d '{
    "query": {
        "match_all": {}
    }, 
    "script": "ctx._source.keywordLength = ctx._source.keyword.split(\" \").size() + 1; ctx._source.timestampUpdated = new Date().format(\"yyyy-MM-dd\");"
}'

另请注意,为了能够运行此程序,您需要在 elasticsearch.yml 文件中启用脚本:

# before ES 1.6
script.disable_dynamic: false

# since ES 1.6
script.inline: on

关于groovy - 如何使用 Elasticsearch 脚本尽快部分更新 5 亿个文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32402712/

相关文章:

database - 当数据模型不固定时,如何编制索引?

elasticsearch - 如何按嵌套类型的数组大小过滤?

java - ElasticSearch GetApi NoNodeAvailableException

elasticsearch - 仅存储选定字段,不存储_all在pyes/elasticsearch中

elasticsearch - 提高ElasticSearch的性能

python - 如何从Elasticsearch获取pyes中的随机文档

github - 使用 OAuth 的 api.github.com 的 Groovy HTTPBuilder

data-binding - 如何在一个表单中混合多个域对象?

groovy - 如何在接口(interface)中使用 Groovy 的属性?

groovy + 如何导出路径