Class: MultiThink::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/multithink/connection.rb

Constant Summary collapse

DEFAULTS =
{retries: 10}

Instance Method Summary collapse

Constructor Details

#initialize(servers, options = {}) ⇒ Connection



11
12
13
14
15
16
# File 'lib/multithink/connection.rb', line 11

def initialize(servers, options = {})
  @servers = servers
  options = DEFAULTS.merge(options)
  @retries = options.fetch(:retries)
  connect
end

Instance Method Details

#connectObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/multithink/connection.rb', line 18

def connect
  @tried = 0
  while @tried < @retries do
    @servers.each do |server|
      begin
        #TODO(jpg) make timeout configurable
        Timeout::timeout(1) do
          @conn = r.connect(server)
        end
        return true
      rescue
        sleep 1
      end
      @tried += 1
    end
  end
  # If we got here we couldn't get a connection. :(
  raise "Error: Reached maximum retries (#{@retries})"
end

#is_connection_error(e) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/multithink/connection.rb', line 48

def is_connection_error(e)
  case e
  when Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::EPIPE,
    Errno::ECONNRESET, Errno::ETIMEDOUT, IOError
    true
  when RethinkDB::RqlRuntimeError
    e.message =~ /cannot perform (read|write): No master available/ ||
    e.message =~ /Error: Connection Closed/
  else
    false
  end
end

#reconnectObject



61
62
63
64
65
66
67
68
69
# File 'lib/multithink/connection.rb', line 61

def reconnect
  begin
    # try fast path first
    @conn.reconnect
  rescue
    # if that fails then try get a new connection
    connect
  end
end

#run(query, *args) ⇒ Object



38
39
40
41
42
43
44
45
46
# File 'lib/multithink/connection.rb', line 38

def run(query, *args)
  begin
    query.run(@conn, *args)
  rescue StandardError => e
    if is_connection_error(e)
      retry if reconnect
    end
  end
end