作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 flex 搜索的新手,请尝试以下操作,以帮助您。
需要使用python API从elasticsearch索引中删除doctype。
from elasticsearch import Elasticsearch
es = Elasticsearch([{'host': 'localhost', 'port': 9200}])
es.indices.create(index="my_index")
es.index(index="my_index",doc_type="some_type1",id=101, body={'name':'Jack1'})
es.index(index="my_index",doc_type="some_type1",id=102, body={'name':'Jack2'})
es.index(index="my_index",doc_type="some_type1",id=103, body={'name':'Jack3'})
es.index(index="my_index",doc_type="some_type1",id=104, body={'name':'Jack4'})
es.index(index="my_index",doc_type="some_type2",id=101, body={'name':'Jack1'})
es.index(index="my_index",doc_type="some_type2",id=102, body={'name':'Jack2'})
es.index(index="my_index",doc_type="some_type2",id=103, body={'name':'Jack3'})
es.index(index="my_index",doc_type="some_type2",id=104, body={'name':'Jack4'})
es.indices.delete(index="my_index",doc_type="some_type2")
最佳答案
delete方法不需要doc_type。您必须添加将被删除的ID。
例如:
es.delete(index="posts", id=2) # delete id=2
es.indices.delete(index='posts', ignore=[400, 404]) # remove all records
关于python-2.7 - Python Api在Elasticsearch中删除doc_type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35701483/
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",
我是一名优秀的程序员,十分优秀!