Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 328
user2694588 Avatar asked Apr 12 '15 11:04

user2694588


1 Answers

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.

like image 154
Noelkd Avatar answered Oct 12 '22 17:10

Noelkd