作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下方法一次更新多个文档:
q = {
"script": {
"inline": "ctx._source.text.class='contact'",
"lang": "painless"
},
"query": {
"match": {
"name": "Contact.txt"
}
}
}
es.update_by_query(body=q, doc_type='document', index='index_name')
'text':{'class':'contact'}
更新它
TypeError: update_by_query() got an unexpected keyword argument 'doc_type'
elasticsearch.exceptions.TransportError: TransportError(500, 'script_exception', 'runtime error')
最佳答案
似乎您正在使用 flex 版本7.x。这不再需要指定doc_type
,因为已针对7.x删除了映射类型。
以下应该工作:
es.update_by_query(body=q, index='index_name')
关于python - Elasticsearch-使用按查询更新在doc_type上给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56214140/
Elasticsearch 6.0中的“重大更改”之一是删除索引中的多种映射类型。 release notice指出 The ability to have multiple mapping type
class Article(Document): title = Text(analyzer='snowball', fields={'raw': Keyword()}) body =
我正在使用以下库通过 flex 搜索创建django API: Django-rest-framework django-elasticsearch-dsl django-elasticsearch-
我想从特定索引和 Elasticsearch 中读取特定类型的文档。我构造查询: es.search(index="document_index, doc_type="document_type",
我是一名优秀的程序员,十分优秀!