gpt4 book ai didi

elasticsearch - 使用 Elasticsearch py批量更新无类型

转载 作者:行者123 更新时间:2023-12-03 01:30:12 25 4
gpt4 key购买 nike

我正在尝试使用 flex 搜索py进行批量插入,但是我不想指定类型,但是不允许我为类型的值指定None或“”。我该如何解决?

bulk_data = []

this_merchant_product = {'field1': 'value1'}

op_dict = {
"index": {
"_index": "product",
"_type": None,
"_id": str(this_merchant_product_id)
}
}

bulk_data.append(op_dict)
bulk_data.append(this_merchant_product)

es = Elasticsearch()
res = es.bulk(index='product', body=bulk_data)

我也尝试将 _type设置为“”,但这也不起作用。

这些是错误消息。

当我将 _type设置为None时,这是错误:
elasticsearch.exceptions.RequestError: RequestError(400, 'action_request_validation_exception', 'Validation Failed: 1: type is missing;

这是将 _type设置为“”时遇到的错误:
java.lang.IllegalArgumentException: name cannot be empty string

最佳答案

每个索引在Elasticsearch 6.x+中都有一种映射类型。在Elasticsearch 7.x+中,类型被删除。在2.x - 5.6版本中,您可以使用一个以上的映射。假设您使用的是6.x版本,则需要在索引中包含文档类型。

关于elasticsearch - 使用 Elasticsearch py批量更新无类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56419250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com