Method: Elasticsearch::Transport::Transport::Connections::Collection#get_connection
- Defined in:
- lib/elasticsearch/transport/transport/connections/collection.rb
permalink #get_connection(options = {}) ⇒ Connection
Returns a connection.
If there are no alive connections, returns a connection with least failures. Delegates to selector’s ‘#select` method to get the connection.
86 87 88 |
# File 'lib/elasticsearch/transport/transport/connections/collection.rb', line 86 def get_connection(={}) selector.select() || @connections.min_by(&:failures) end |