gpt4 book ai didi

python - 如何使用python脚本检查elasticsearch中是否存在索引并对其执行异常处理?

转载 作者:太空狗 更新时间:2023-10-29 18:15:12 30 4
gpt4 key购买 nike

如何使用 python 查询检查索引是否存在?

我将我的索引作为在查询外部分配的变量传递为:-

 i=int(datetime.datetime.now().strftime('%d'))+1
indextring="index"
for m in range (i-10,i):
d = datetime.datetime(2016, 10, m, 18, 00).strftime('%Y-%m-%d')
index1=datestring+d
subfix="_"+datetime.datetime(2016, 10, m, 18, 00).strftime('%Y-%m-%d')
es=Elasticsearch(['localhost:9200'])
res = **es.search(index='{0}'.format(index1)**, doc_type="log",size=10000, from_=0, body={ "query": {
"match": {
....Match condition follows
}
}
}})

现在,一些索引在特定日期不存在,但我希望进程能够运行而不管这些。当索引不存在时出现以下错误-->

elasticsearch.exceptions.NotFoundError: TransportError(404, u'index_not_found_exception')

我不确定异常处理在 elasticsearch 中是如何工作的。

最佳答案

您必须在 indices 上调用它.当前您正在使用 exists搜索类,告诉您给定文档是否存在于索引中,而不是索引本身。

试试这段代码

if es.indices.exists(index="index"):
Your code for search

还有更多options如果你想使用。

关于python - 如何使用python脚本检查elasticsearch中是否存在索引并对其执行异常处理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40300231/

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