Method: Elasticsearch::Transport::Transport::Connections::Collection#get_connection

Defined in:
lib/elasticsearch/transport/transport/connections/collection.rb

#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.

Returns:

[View source]

86
87
88
# File 'lib/elasticsearch/transport/transport/connections/collection.rb', line 86

def get_connection(options={})
  selector.select(options) || @connections.min_by(&:failures)
end