我一直在关注学习Elasticsearch的教程,并且批量索引指导员使用了类似的方法
from collections import deque
from elasticsearch import helpers
import elasticsearch
def generator_function()
# code
yield results
es = elasticsearch.Elasticsearch()
deque(
helpers.parallel_bulk(
es,
readRatings(),
index="index_name",
doc_type="_doc",
),
maxlen=0
)
es.indices.refresh()
deque
在这里有什么用?