-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrdb_compat.rb
More file actions
473 lines (417 loc) · 14.3 KB
/
rdb_compat.rb
File metadata and controls
473 lines (417 loc) · 14.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
129
130
131
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
#
# PerfectQueue
#
# Copyright (C) 2012-2013 Sadayuki Furuhashi
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
module PerfectQueue
module Backend
class RDBCompatBackend
include BackendHelper
#
# == timeout model
#
# 0 ---- now-1Bs ---- retention ---|----- now -- alive ------- FUTURE
# ~~~~~~~^ to be deleted ^ |~~~^~~~ ^ running or in-queue
# DELETE 13_0000_0000->| to be acquired
#
# NOTE: this architecture introduces Year 2042 problem.
#
DELETE_OFFSET = 10_0000_0000
EVENT_HORIZON = 13_0000_0000 # 2011-03-13 07:06:40 UTC
LOCK_RETRY_INITIAL_INTERVAL = 0.5
LOCK_RETRY_MAX_INTERVAL = 30
class Token < Struct.new(:key)
end
def initialize(client, config)
super
@pq_connect_timeout = config.fetch(:pq_connect_timeout, 120)
url = config[:url]
@table = config[:table]
unless @table
raise ConfigError, ":table option is required"
end
if /\Amysql2:/i =~ url
options = {max_connections: 1, sslca: config[:sslca]}
options[:connect_timeout] = config.fetch(:connect_timeout, 30)
@db = Sequel.connect(url, options)
if config.fetch(:use_connection_pooling, nil) != nil
@use_connection_pooling = !!config[:use_connection_pooling]
else
@use_connection_pooling = !!config[:sslca]
end
@table_lock = lambda {
locked = nil
interval = LOCK_RETRY_INITIAL_INTERVAL
loop do
@db.fetch("SELECT GET_LOCK('#{@table}', #{LOCK_WAIT_TIMEOUT}) locked") do |row|
locked = true if row[:locked] == 1
end
break if locked
sleep interval
interval = [interval * 2, LOCK_RETRY_MAX_INTERVAL].min
end
}
@table_unlock = lambda {
@db.run("DO RELEASE_LOCK('#{@table}')")
}
else
raise ConfigError, "only 'mysql' is supported"
end
@last_time = Time.now.to_i
@mutex = Mutex.new
connect {
# connection test
}
if config[:disable_resource_limit]
@sql = <<SQL
SELECT id, timeout, data, created_at, resource
FROM `#{@table}`
WHERE #{EVENT_HORIZON} < timeout AND timeout <= ? AND timeout <= ?
AND created_at IS NOT NULL
ORDER BY timeout ASC
LIMIT ?
SQL
else
@sql = <<SQL
SELECT id, timeout, data, created_at, resource, max_running, IFNULL(max_running, 1) / (IFNULL(running, 0) + 1) AS weight
FROM `#{@table}`
LEFT JOIN (
SELECT resource AS res, COUNT(1) AS running
FROM `#{@table}` AS T
WHERE timeout > ? AND created_at IS NOT NULL AND resource IS NOT NULL
GROUP BY resource
) AS R ON resource = res
WHERE #{EVENT_HORIZON} < timeout AND timeout <= ?
AND created_at IS NOT NULL
AND (max_running-running IS NULL OR max_running-running > 0)
ORDER BY weight DESC, timeout ASC
LIMIT ?
SQL
end
@prefetch_break_types = config[:prefetch_break_types] || []
@cleanup_interval = config[:cleanup_interval] || DEFAULT_DELETE_INTERVAL
# If cleanup_interval > max_request_per_child / max_acquire,
# some processes won't run DELETE query.
# (it's not an issue when there are enough workers)
@cleanup_interval_count = @cleanup_interval > 0 ? rand(@cleanup_interval) : 0
end
attr_reader :db
KEEPALIVE = 10
MAX_RETRY = 10
LOCK_WAIT_TIMEOUT = 10
DEFAULT_DELETE_INTERVAL = 20
def init_database(options)
sql = []
sql << "DROP TABLE IF EXISTS `#{@table}`" if options[:force]
sql << <<-SQL
CREATE TABLE IF NOT EXISTS `#{@table}` (
id VARCHAR(255) NOT NULL,
timeout INT NOT NULL,
data LONGBLOB NOT NULL,
created_at INT,
resource VARCHAR(255),
max_running INT,
PRIMARY KEY (id)
)
SQL
sql << "CREATE INDEX `index_#{@table}_on_timeout` ON `#{@table}` (`timeout`)"
connect {
sql.each(&@db.method(:run))
}
end
# => TaskStatus
def get_task_metadata(key, options)
now = (options[:now] || Time.now).to_i
connect {
row = @db.fetch("SELECT timeout, data, created_at, resource, max_running FROM `#{@table}` WHERE id=? LIMIT 1", key).first
unless row
raise NotFoundError, "task key=#{key} does no exist"
end
attributes = create_attributes(now, row)
return TaskMetadata.new(@client, key, attributes)
}
end
# => AcquiredTask
def preempt(key, alive_time, options)
raise NotSupportedError.new("preempt is not supported by rdb_compat backend")
end
# yield [TaskWithMetadata]
def list(options, &block)
now = (options[:now] || Time.now).to_i
connect {
@db.fetch("SELECT id, timeout, data, created_at, resource, max_running FROM `#{@table}` ORDER BY timeout ASC") {|row|
attributes = create_attributes(now, row)
task = TaskWithMetadata.new(@client, row[:id], attributes)
yield task
}
}
end
def compress_data(data, compression)
if compression == 'gzip'
io = StringIO.new
io.set_encoding(Encoding::ASCII_8BIT)
gz = Zlib::GzipWriter.new(io)
begin
gz.write(data)
ensure
gz.close
end
data = io.string
data = Sequel::SQL::Blob.new(data)
end
data
end
# => Task
def submit(key, type, data, options)
now = (options[:now] || Time.now).to_i
now = 1 if now < 1 # 0 means cancel requested
run_at = (options[:run_at] || now).to_i
user = options[:user]
user = user.to_s if user
max_running = options[:max_running]
data = data ? data.dup : {}
data['type'] = type
d = compress_data(data.to_json, options[:compression])
connect {
begin
@db[
"INSERT INTO `#{@table}` (id, timeout, data, created_at, resource, max_running) VALUES (?, ?, ?, ?, ?, ?)",
key, run_at, d, now, user, max_running
].insert
return Task.new(@client, key)
rescue Sequel::UniqueConstraintViolation
raise IdempotentAlreadyExistsError, "task key=#{key} already exists"
end
}
end
# => [AcquiredTask]
def acquire(alive_time, max_acquire, options)
now = (options[:now] || Time.now).to_i
next_timeout = now + alive_time
tasks = nil
t0 = nil
if @cleanup_interval_count <= 0
connect { # TODO: HERE should be still connect_locked ?
t0=Process.clock_gettime(Process::CLOCK_MONOTONIC)
@db["DELETE FROM `#{@table}` WHERE timeout <= ?", now-DELETE_OFFSET].delete
@cleanup_interval_count = @cleanup_interval
STDERR.puts"PQ:delete from #{@table}:%6f sec" % [Process.clock_gettime(Process::CLOCK_MONOTONIC)-t0]
}
end
connect_locked {
t0=Process.clock_gettime(Process::CLOCK_MONOTONIC)
tasks = []
@db.fetch(@sql, now, now, max_acquire) {|row|
attributes = create_attributes(nil, row)
task_token = Token.new(row[:id])
task = AcquiredTask.new(@client, row[:id], attributes, task_token)
tasks.push task
if @prefetch_break_types.include?(attributes[:type])
break
end
}
if tasks.empty?
return nil
end
sql = "UPDATE `#{@table}` FORCE INDEX (PRIMARY) SET timeout=? WHERE timeout <= ? AND id IN ("
params = [sql, next_timeout, now]
tasks.each {|t| params << t.key }
sql << (1..tasks.size).map { '?' }.join(',')
sql << ") AND created_at IS NOT NULL"
n = @db[*params].update
if n != tasks.size
# NOTE table lock doesn't work. error!
return nil
end
@cleanup_interval_count -= 1
return tasks
}
ensure
STDERR.puts "PQ:acquire from #{@table}:%6f sec (%d tasks)" % [Process.clock_gettime(Process::CLOCK_MONOTONIC)-t0,tasks.size] if tasks
end
# => nil
def cancel_request(key, options)
# created_at=0 means cancel_requested
connect {
n = @db["UPDATE `#{@table}` SET created_at=0 WHERE id=? AND created_at IS NOT NULL", key].update
if n <= 0
raise AlreadyFinishedError, "task key=#{key} does not exist or already finished."
end
}
nil
end
def force_finish(key, retention_time, options)
finish(Token.new(key), retention_time, options)
end
# => nil
def finish(task_token, retention_time, options)
now = (options[:now] || Time.now).to_i
delete_timeout = now - DELETE_OFFSET + retention_time
key = task_token.key
connect {
n = @db["UPDATE `#{@table}` SET timeout=?, created_at=NULL, resource=NULL WHERE id=? AND created_at IS NOT NULL", delete_timeout, key].update
if n <= 0
raise IdempotentAlreadyFinishedError, "task key=#{key} does not exist or already finished."
end
}
nil
end
# => nil
def heartbeat(task_token, alive_time, options)
now = (options[:now] || Time.now).to_i
next_timeout = now + alive_time
key = task_token.key
data = options[:data]
sql = "UPDATE `#{@table}` SET timeout=?"
params = [sql, next_timeout]
if data
sql << ", data=?"
params << compress_data(data.to_json, options[:compression])
end
sql << " WHERE id=? AND created_at IS NOT NULL"
params << key
connect {
n = @db[*params].update
if n <= 0
row = @db.fetch("SELECT id, timeout, created_at FROM `#{@table}` WHERE id=? LIMIT 1", key).first
if row == nil
raise PreemptedError, "task key=#{key} does not exist or preempted."
elsif row[:created_at] == nil
raise PreemptedError, "task key=#{key} preempted."
else # row[:timeout] == next_timeout
# ok
end
end
}
nil
end
def release(task_token, alive_time, options)
heartbeat(task_token, alive_time, options)
end
protected
def connect_locked
connect {
locked = false
begin
if @table_lock
@table_lock.call
locked = true
end
return yield
ensure
if @use_connection_pooling && locked
@table_unlock.call
end
end
}
end
def connect
now = Time.now.to_i
tmax = now + @pq_connect_timeout
@mutex.synchronize do
# keepalive_timeout
@db.disconnect if now - @last_time > KEEPALIVE
count = 0
begin
yield
@last_time = now
rescue Sequel::DatabaseConnectionError
if (count += 1) < MAX_RETRY && tmax > Time.now.to_i
STDERR.puts "#{$!}\n retrying."
sleep 2
retry
end
STDERR.puts "#{$!}\n abort."
raise
rescue
# workaround for "Mysql2::Error: Deadlock found when trying to get lock; try restarting transaction" error
if $!.to_s.include?('try restarting transaction')
err = ([$!] + $!.backtrace.map {|bt| " #{bt}" }).join("\n")
count += 1
if count < MAX_RETRY
STDERR.puts err + "\n retrying."
sleep rand
retry
else
STDERR.puts err + "\n abort."
end
else
err = $!
end
STDERR.puts "disconnects current connection: #{err}"
@db.disconnect
raise
ensure
# connection_pooling
@db.disconnect if !@use_connection_pooling
end
end
end
GZIP_MAGIC_BYTES = [0x1f, 0x8b].pack('CC')
def create_attributes(now, row)
compression = nil
if row[:created_at] === nil
created_at = nil # unknown creation time
status = TaskStatus::FINISHED
elsif row[:created_at] <= 0
status = TaskStatus::CANCEL_REQUESTED
elsif now && row[:timeout] < now
created_at = row[:created_at]
status = TaskStatus::WAITING
else
created_at = row[:created_at]
status = TaskStatus::RUNNING
end
d = row[:data]
if d == nil || d == ''
data = {}
else
# automatic gzip decompression
d.force_encoding('ASCII-8BIT') if d.respond_to?(:force_encoding)
if d[0, 2] == GZIP_MAGIC_BYTES
compression = 'gzip'
gz = Zlib::GzipReader.new(StringIO.new(d))
begin
d = gz.read
ensure
gz.close
end
end
begin
data = JSON.parse(d)
rescue
data = {}
end
end
type = data.delete('type')
if type == nil || type.empty?
type = row[:id].split(/\./, 2)[0]
end
{
:status => status,
:created_at => created_at,
:data => data,
:type => type,
:user => row[:resource],
:timeout => row[:timeout],
:max_running => row[:max_running],
:message => nil, # not supported
:node => nil, # not supported
:compression => compression,
}
end
end
end
end