python 使用 elasticsearch 經常使用方法(索引)

#記錄管理索引等方法

from elasticsearch import Elasticsearch

es = Elasticsearch(['xx.xx.xx.xx:9200'])

#獲取文檔內容
res = es.get_source(index="test", id='-R7AQ20BIdlTveXFPOTI')
print(res)

#獲取文檔信息
res = es.get(index="test", id='-R7AQ20BIdlTveXFPOTI')
print(res['_source'])

#更新文檔
res = es.update(index="test", id='-R7AQ20BIdlTveXFPOTI', body={"doc": {"age": 37, "country": "china"}})
print(res)

#索引是否存在
print(es.indices.exists(index="test"))

#刪除文檔
print(es.delete(index="test", id="-h7AQ20BIdlTveXFeOSg"))

#多條數據查詢
res = es.mget(index="test", body={'ids': ["1", "-R7AQ20BIdlTveXFPOTI"]})
print(res)


#index建立索引res = es.index(index="school", body = { 'mappings': { '_source': { 'enabled': True }, 'properties': { 'content': {'type': 'keyword'} } }})print(res)
相關文章
相關標籤/搜索