使用 elasticsearch-py 关闭与 elasticsearch 集群的连接
Closing connections to an elasticsearch cluster using elasticsearch-py
我正在尝试使用 elasticsearch-py 在我的应用程序代码中关闭与我的 elasticsearch 集群的连接。
目前,我正在使用:
es = Elasticsearch()
es.close()
但是,我收到错误消息:
Traceback (most recent call last):
File "tmp.py", line 45, in <module>
es.close()
AttributeError: 'Elasticsearch' object has no attribute 'close'
我也没有在文档中看到任何关闭方法:
https://elasticsearch-py.readthedocs.io/en/master/api.html
如有任何帮助,我们将不胜感激!提前致谢:)
您可以使用 Transport.close
关闭传输:
es = Elasticsearch()
es.transport.close()
我正在尝试使用 elasticsearch-py 在我的应用程序代码中关闭与我的 elasticsearch 集群的连接。
目前,我正在使用:
es = Elasticsearch()
es.close()
但是,我收到错误消息:
Traceback (most recent call last):
File "tmp.py", line 45, in <module>
es.close()
AttributeError: 'Elasticsearch' object has no attribute 'close'
我也没有在文档中看到任何关闭方法:
https://elasticsearch-py.readthedocs.io/en/master/api.html
如有任何帮助,我们将不胜感激!提前致谢:)
您可以使用 Transport.close
关闭传输:
es = Elasticsearch()
es.transport.close()