简体   繁体   中英

How to disconnect from elasticsearch-py client/connection-pool

Whats the correct way to disconnect an elasticsearch-py (python) client rsp. close an existing connection pool? I cannot find any information in the docs.

Just for completeness as per thread linked in in the comments of the question.

Currently there is no way to close the connections or the client itself, partly because you are the first one to ask for it, we just rely on the garbage collector to close the socket when it cleans up the client.

As of 2018 the above is no longer correct, an explicit close method has been added to the the ConnectionPool .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM