Python创建ES索引

Posted 黄海的编程知识世界

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python创建ES索引相关的知识,希望对你有一定的参考价值。

# pip install elasticsearch
from datetime import datetime
from elasticsearch import Elasticsearch

es_servers = [{
    "host": "10.10.6.225",
    "port": "9200"
}]

es = Elasticsearch(es_servers)

doc = {
    author: kimchy,
    text: Elasticsearch: cool. bonsai cool.,
    timestamp: datetime.now(),
}
res = es.index(index="test-index", doc_type=tweet, id=1, body=doc)
print(res)

res = es.get(index="test-index", doc_type=tweet, id=1)
print(res[_source])

es.indices.refresh(index="test-index")

res = es.search(index="test-index", body={"query": {"match_all": {}}})
print("Got %d Hits:" % res[hits][total])
for hit in res[hits][hits]:
    print("%(timestamp)s %(author)s: %(text)s" % hit["_source"])

 

以上是关于Python创建ES索引的主要内容,如果未能解决你的问题,请参考以下文章

es关闭索引

es可以不创建索引库直接添加文档吗

es 创建动态索引(二)

Elasticsearch笔记九之优化

ES7-Es8 js代码片段

es 创建动态索引(一)