Class: Faktory::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/faktory/client.rb,
lib/faktory/testing.rb

Constant Summary collapse

HASHER =
proc do |iter, pwd, salt|
  sha = Digest::SHA256.new
  hashing = pwd + salt
  iter.times do
    hashing = sha.digest(hashing)
  end
  Digest.hexencode(hashing)
end
@@random_process_wid =
""

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url: uri_from_env || 'tcp://localhost:7419', debug: false) ⇒ Client

Best practice is to rely on the localhost default for development and configure the environment variables for non-development environments.

FAKTORY_PROVIDER=MY_FAKTORY_URL MY_FAKTORY_URL=tcp://:[email protected]:7419

Note above, the URL can contain the password for secure installations.



39
40
41
42
43
# File 'lib/faktory/client.rb', line 39

def initialize(url: uri_from_env || 'tcp://localhost:7419', debug: false)
  @debug = debug
  @location = URI(url)
  open
end

Instance Attribute Details

#middlewareObject

Returns the value of attribute middleware.



30
31
32
# File 'lib/faktory/client.rb', line 30

def middleware
  @middleware
end

Class Method Details

.worker!Object

Called when booting the worker process to signal that this process will consume jobs and send BEAT.



26
27
28
# File 'lib/faktory/client.rb', line 26

def self.worker!
  @@random_process_wid = SecureRandom.hex(8)
end

Instance Method Details

#ack(jid) ⇒ Object



77
78
79
80
81
82
# File 'lib/faktory/client.rb', line 77

def ack(jid)
  transaction do
    command("ACK", %Q[{"jid":"#{jid}"}])
    ok!
  end
end

#beatObject

Sends a heartbeat to the server, in order to prove this worker process is still alive.

Return a string signal to process, legal values are “quiet” or “terminate”. The quiet signal is informative: the server won’t allow this process to FETCH any more jobs anyways.



100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/faktory/client.rb', line 100

def beat
  transaction do
    command("BEAT", %Q[{"wid":"#{@@random_process_wid}"}])
    str = result
    if str == "OK"
      str
    else
      hash = JSON.parse(str)
      hash["state"]
    end
  end
end

#closeObject



45
46
47
48
49
50
# File 'lib/faktory/client.rb', line 45

def close
  return unless @sock
  command "END"
  @sock.close
  @sock = nil
end

#fail(jid, ex) ⇒ Object



84
85
86
87
88
89
90
91
92
# File 'lib/faktory/client.rb', line 84

def fail(jid, ex)
  transaction do
    command("FAIL", JSON.dump({ message: ex.message[0...1000],
                      errtype: ex.class.name,
                      jid: jid,
                      backtrace: ex.backtrace}))
    ok!
  end
end

#fetch(*queues) ⇒ Object



68
69
70
71
72
73
74
75
# File 'lib/faktory/client.rb', line 68

def fetch(*queues)
  job = nil
  transaction do
    command("FETCH", *queues)
    job = result
  end
  JSON.parse(job) if job
end

#flushObject

Warning: this clears all job data in Faktory



53
54
55
56
57
58
# File 'lib/faktory/client.rb', line 53

def flush
  transaction do
    command "FLUSH"
    ok!
  end
end

#infoObject



113
114
115
116
117
118
119
# File 'lib/faktory/client.rb', line 113

def info
  transaction do
    command("INFO")
    str = result
    JSON.parse(str) if str
  end
end

#openObject



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/faktory/client.rb', line 132

def open
  if tls?
    sock = TCPSocket.new(@location.hostname, @location.port)
    ctx = OpenSSL::SSL::SSLContext.new
    ctx.set_params(verify_mode: OpenSSL::SSL::VERIFY_PEER)
    ctx.ssl_version = :TLSv1_2

    @sock = OpenSSL::SSL::SSLSocket.new(sock, ctx).tap do |socket|
      socket.sync_close = true
      socket.connect
    end
  else
    @sock = TCPSocket.new(@location.hostname, @location.port)
    @sock.setsockopt(Socket::SOL_SOCKET, Socket::SO_KEEPALIVE, true)
  end

  payload = {
    "wid": @@random_process_wid,
    "hostname": Socket.gethostname,
    "pid": $$,
    "labels": Faktory.options[:labels] || ["ruby-#{RUBY_VERSION}"],
    "v": 2,
  }

  hi = result

  if hi =~ /\AHI (.*)/
    hash = JSON.parse($1)
    ver = hash["v"].to_i
    if ver > 2
      puts "Warning: Faktory server protocol #{ver} in use, this worker doesn't speak that version."
      puts "We recommend you upgrade this gem with `bundle up faktory_worker_ruby`."
    end

    salt = hash["s"]
    if salt
      pwd = @location.password
      if !pwd
        raise ArgumentError, "Server requires password, but none has been configured"
      end
      iter = (hash["i"] || 1).to_i
      raise ArgumentError, "Invalid hashing" if iter < 1

      payload["pwdhash"] = HASHER.(iter, pwd, salt)
    end
  end

  command("HELLO", JSON.dump(payload))
  ok!
end

#push(job) ⇒ Object



60
61
62
63
64
65
66
# File 'lib/faktory/client.rb', line 60

def push(job)
  transaction do
    command "PUSH", JSON.generate(job)
    ok!
    job["jid"]
  end
end

#real_openObject



79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/faktory/testing.rb', line 79

def open
  if tls?
    sock = TCPSocket.new(@location.hostname, @location.port)
    ctx = OpenSSL::SSL::SSLContext.new
    ctx.set_params(verify_mode: OpenSSL::SSL::VERIFY_PEER)
    ctx.ssl_version = :TLSv1_2

    @sock = OpenSSL::SSL::SSLSocket.new(sock, ctx).tap do |socket|
      socket.sync_close = true
      socket.connect
    end
  else
    @sock = TCPSocket.new(@location.hostname, @location.port)
    @sock.setsockopt(Socket::SOL_SOCKET, Socket::SO_KEEPALIVE, true)
  end

  payload = {
    "wid": @@random_process_wid,
    "hostname": Socket.gethostname,
    "pid": $$,
    "labels": Faktory.options[:labels] || ["ruby-#{RUBY_VERSION}"],
    "v": 2,
  }

  hi = result

  if hi =~ /\AHI (.*)/
    hash = JSON.parse($1)
    ver = hash["v"].to_i
    if ver > 2
      puts "Warning: Faktory server protocol #{ver} in use, this worker doesn't speak that version."
      puts "We recommend you upgrade this gem with `bundle up faktory_worker_ruby`."
    end

    salt = hash["s"]
    if salt
      pwd = @location.password
      if !pwd
        raise ArgumentError, "Server requires password, but none has been configured"
      end
      iter = (hash["i"] || 1).to_i
      raise ArgumentError, "Invalid hashing" if iter < 1

      payload["pwdhash"] = HASHER.(iter, pwd, salt)
    end
  end

  command("HELLO", JSON.dump(payload))
  ok!
end

#real_pushObject



78
79
80
81
82
83
84
# File 'lib/faktory/testing.rb', line 78

def push(job)
  transaction do
    command "PUSH", JSON.generate(job)
    ok!
    job["jid"]
  end
end