forked from mailru/tntlua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queue.lua
539 lines (493 loc) · 15.9 KB
/
queue.lua
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
--
-- Implementation of queueing API.
--
-- A task in a queue can be in one of the following states:
-- READY initial state, the task is ready for execution
-- DELAYED initial state, the task will become ready
-- for execution when a timeout expires
-- TAKEN the task is being worked on
-- BURIED the task is dead: it's either complete, or
-- cancelled or otherwise should not be worked on
--
-- The following methods are supported:
--
-- ------------------
-- - Producer methods
-- ------------------
-- box.queue.enable(sno)
-- start queue in space sno
-- box.queue.disable(sno)
-- stop queue in space sno
--
-- box.queue.put(sno, tube, prio, delay, ttr, ttl, <tuple data>)
-- Creates a new task and stores it in the queue.
--
-- sno space number
-- tube queue number (default 0)
-- prio priority of task (default 0x7ff) the lower value the higher priority
-- delay if not 0, task execution is postponed
-- for the given timeout (in seconds, may be fractional)
-- ttr Time-To-Release in seconds (default 300s)
-- How many time give to task to be in state TAKEN until return into READY
-- ttl Time-To-Live in seconds (default infinity)
-- How long task should remain in the queue until discarded
-- <tuple data> the rest of the task parameters, are stored
-- in the tuple data and describe the task itself
--
-- The task is added to the end of the queue.
-- This method returns a created tuple
-- created task.
--
-- box.queue.delete(sno, id)
-- Delets a taks by id.
-- Returns the contents of the deleted task.
--
-- ------------------
-- - Consumer methods
-- ------------------
--
-- box.queue.take(sno, tube, timeout)
--
-- Finds a task for execution and marks the task as TAKEN.
-- Returns the task tuple.
-- A task is reserved to the consumer which issued
-- the request and will not be given to any other
-- consumer.
-- 'timeout' is considered if the queue is empty
-- If timeout is 0, the request immediately returns nil.
-- If timeout is not given, the caller is suspended
-- until a task appears in the queue.
-- Otherwise, the caller is suspended until
-- for the duration of the timeout (in seconds).
--
-- box.queue.release(sno, id, prio, delay, ttr, ttl)
-- If the task is assigned to the consumer issuing
-- the request, it's put back to the queue, in READY
-- state. If delay is given, next execution
-- of the task is delayed for delay seconds.
-- If the task has not been previously taken
-- by the consumer, an error is raised.
-- If passed any of prio, ttr, ttl, then they are updated
--
-- box.queue.ack(sno, id)
-- Mark the task as complete and delete it,
-- as long as it was TAKEN by the consumer issuing
-- the request.
-- ---------------------------------------------
-- - How to configure a space to support a queue
-- ---------------------------------------------
--
--
-- space[X].enabled = 1
-- space[X].index[0].type = "TREE"
-- space[X].index[0].unique = 1
-- space[X].index[0].key_field[0].fieldno = 0
-- space[X].index[0].key_field[0].type = "NUM64"
--
-- space[X].index[1].type = "TREE"
-- space[X].index[1].unique = 1
-- space[X].index[1].key_field[0].fieldno = 1 # tube id
-- space[X].index[1].key_field[0].type = "NUM"
-- space[X].index[1].key_field[1].fieldno = 3 # status
-- space[X].index[1].key_field[1].type = "STR"
-- space[X].index[1].key_field[2].fieldno = 2 # prio
-- space[X].index[1].key_field[2].type = "NUM"
-- space[X].index[1].key_field[3].fieldno = 0 # id
-- space[X].index[1].key_field[3].type = "NUM64"
--
-- space[X].index[2].type = "TREE"
-- space[X].index[2].unique = false
-- space[X].index[2].key_field[0].fieldno = 4 # runat
-- space[X].index[2].key_field[0].type = "NUM64"
-- ---------------------------------------------
-- Background expiration of tasks taken by
-- detached consumers.
------------------------------------------------
-- There is a background fiber which puts all tasks
-- for which there is no active consumer back to
-- READY state.
-- --------------------------------------------------
-- Task metadata
-- --------------------------------------------------
--
-- The following task metadata is maintained by the
-- queue module and can be inspected at any time:
--
-- id : i64
-- tube : i32 [ default 0]
-- prio : i32 [ default 0x7fff ]
-- status : STR[1] { one of 'R' 'T' 'D' 'B' }
-- runat : i64 {system field} Nearest time in epoch microseconds when task state should be changed
-- ttr : i64 microseconds
-- ttl : i64 microseconds
-- taken : i32 how many times task was taken
-- buried : i32 how many times task was buried
--
local cmds = {
put = 0;
delete = 0;
take = 0;
ack = 0;
release = 0;
stats = 0;
}
if box.queue == nil then
box.queue = {
taken = {};
sequence = {};
enabled = {};
stat = { cmd = cmds; };
}
else
local old = box.queue;
local taken = box.queue.taken
local enabled = box.queue.enabled
box.queue = {}
box.queue.sequence = {}
if old.taken then
box.queue.taken = old.taken
else
box.queue.taken = {}
end
if old.enabled then
box.queue.enabled = old.enabled
else
box.queue.enabled = {}
end
if old.stat then
box.queue.stat = old.stat
else
box.queue.stat = { cmd = cmds; };
end
end
-- space column description
local c_id = 0 -- id, int64, used as sequence
local c_tube = 1 -- tube id. int32
local c_prio = 2 -- priority of task, int32
local c_status = 3 -- status of task. available values: [ 'R' - ready, 'D' - delayed, 'T' - taken, 'B' - buried ]
local c_runat = 4 -- time, when task should be accounted as ready. microseconds. int64. box.time64()
local c_ttr = 5 -- Time-To-Release. time amount task allowed to be taken. microseconds. int64.
local c_ttl = 6 -- Time-To-Live. time amount task allowed to be in queue. microseconds. int64.
local c_taken = 7 -- count of how many times task was taken
local c_buried = 8 -- count of how many times task was buried
local i_pk = 0
local i_ready = 1
local i_run = 2
function box.queue.id(sno)
sno = tonumber(sno)
if box.queue.sequence[ sno ] then
box.queue.sequence[ sno ] = box.queue.sequence[ sno ] + 1ULL
else
local tuple = box.space[sno].index[i_pk]:max()
local id = 2^25 -- 33554432
if tuple ~= nil then
id = box.unpack('l',tuple[0]) + 0ULL
end
box.queue.sequence[ sno ] = id + 1ULL
end
return box.queue.sequence[ sno ]
end
function box.queue.put(sno, tube, prio, delay, ttr, ttl, ...)
sno, tube, prio, delay, ttr, ttl = tonumber(sno), tonumber(tube), tonumber(prio), tonumber(delay), tonumber(ttr), tonumber(ttl)
box.queue.stat.cmd["put"] = box.queue.stat.cmd["put"] + 1
if not box.queue.enabled[sno] then error("Space ".. sno .. " queue not enabled") end
if prio == nil then prio = 0x7fff end
if delay == nil then delay = 0 end
if tube == nil then tube = 0 end
if ttr == nil or ttr == 0 then ttr = 300 end
local status = 'R'
local runat = 0ULL
if delay and ttl and delay > ttl then
error("Delay can't be longer than TTL")
end
if ttl ~= nil and ttl > 0 then
ttl = box.time64() + tonumber64( ttl * 1E6 )
else
ttl = 0xffffffffffffffffULL
end
if delay > 0 then
status = 'D'
runat = box.time64() + tonumber64( delay * 1E6 )
else
runat = ttl
end
if ttr ~= nil and ttr > 0 then
ttr = tonumber64( ttr * 1E6 )
else
ttr = 300000000ULL -- 300 seconds
end
local id = box.queue.id(sno)
-- id, tube, prio, status, runat ttr, ttl, taken, buried,
return box.insert(sno, id, tube, prio, status, runat, ttr, ttl, 0, 0, ...)
end
function box.queue.putdef(sno, tube, ...)
return box.queue.put(sno,tube,nil,nil,nil,nil,...)
end
function box.queue.push(sno, prio, ttr, ...)
error("TODO: index search")
end
function box.queue.delete(sno, id)
sno, id = tonumber(sno), tonumber64(id)
box.queue.stat.cmd["delete"] = box.queue.stat.cmd["delete"] + 1
if not box.queue.enabled[sno] then error("Space ".. sno .. " queue not enabled") end
box.queue.taken[sno][ box.pack('l',id) ] = nil
return box.space[sno]:delete(id)
end
function box.queue.take(sno, tube, timeout)
sno, tube, timeout = tonumber(sno), tonumber(tube), tonumber(timeout)
box.queue.stat.cmd["take"] = box.queue.stat.cmd["take"] + 1
if not box.queue.enabled[sno] then error("Space ".. sno .. " queue not enabled") end
if tube == nil then tube = 0 end
local idx = box.space[sno].index[i_ready].idx
local x,one_ready = box.space[sno].index[i_ready]:next_equal( tube,'R' )
if one_ready == nil then return end
box.queue.taken[sno][ one_ready[0] ] = box.fiber.id()
-- task may remain in status T for an amount of ttr microseconds. so, put time + ttr into runat
return box.update(
sno, one_ready[0],
"=p=p+p",
-- c_fid, box.fiber.id(),
c_status, 'T', -- taken
c_runat, box.time64() + box.unpack('l', one_ready[ c_ttr ]),
c_taken, 1
)
end
-- original version of take. Should be slightly rewrittend
function box.queue.take1(sno, tube, timeout)
sno, tube, timeout = tonumber(sno), tonumber(tube), tonumber(timeout)
if not box.queue.enabled[sno] then error("Space ".. sno .. " queue not enabled") end
-- if timeout == nil then timeout = 60*60*24*365 end
if timeout == nil then timeout = 60 end
if tube == nil then tube = 0 end
local sleep = 0;
-- don't sleep for all the timeout. Split it into parts
if timeout > 0 then
sleep = timeout / 10;
if sleep > 1 then
sleep = 0.1
end
end
local finish = box.time() + timeout;
local idx = box.space[sno].index[i_ready].idx
-- print("Running take at "..box.time()..", until "..finish.."\n")
local one_ready
while true do
local x
x,one_ready = box.space[sno].index[i_ready]:next_equal( tube,'R' )
if one_ready then
break
end
-- print("No task found. Sleeping for "..sleep.."\n");
if box.time() >= finish then break end
box.fiber.sleep( sleep )
end
if one_ready == nil then return end
box.queue.taken[sno][ one_ready[0] ] = box.fiber.id()
-- task may remain in status T for an amount of ttr microseconds. so, put time + ttr into runat
return box.update(
sno, one_ready[0],
"=p=p+p",
-- c_fid, box.fiber.id(),
c_status, 'T', -- taken
c_runat, box.time64() + box.unpack('l', one_ready[ c_ttr ]),
c_taken, 1
)
end
local function consumer_check_task(sno, id)
sno, id = tonumber(sno), tonumber64(id)
if not box.queue.enabled[sno] then error("Space ".. sno .. " queue not enabled") end
local taken_by = box.queue.taken[sno][ box.pack('l',id) ]
local task
if taken_by == box.fiber.id() then
-- don't select task. if it will be release, then select it inside release
-- task = box.select(sno, i_pk, id)
return true
elseif taken_by then
error(string.format( "Task taken by %d. Not you (%d)", taken_by, box.fiber.id() ))
else
error("Task not taken by any")
end
end
function box.queue.ack( sno, id )
sno, id = tonumber(sno), tonumber64(id)
box.queue.stat.cmd["ack"] = box.queue.stat.cmd["ack"] + 1
consumer_check_task(sno,id)
box.queue.taken[sno][ box.pack('l',id) ] = nil
box.space[sno]:delete( id )
end
function box.queue.release( sno, id, prio, delay, ttr, ttl )
sno, id, prio, delay, ttr, ttl = tonumber(sno), tonumber64(id), tonumber(prio), tonumber(delay), tonumber(ttr), tonumber(ttl)
box.queue.stat.cmd["release"] = box.queue.stat.cmd["release"] + 1
consumer_check_task(sno,id)
local task = box.select(sno, i_pk, id)
-- if something is set, then update and recalculate
if delay and ttl and delay > ttl then
error("Delay can't be longer than TTL")
end
if prio == nil then
prio = box.unpack('i',task[c_prio])
end
if ttr ~= nil and ttr > 0 then
ttr = tonumber64( ttr * 1E6 )
else
ttr = box.unpack('l',task[c_ttr])
end
if ttl ~= nil and ttl > 0 then
ttl = box.time64() + tonumber64( ttl * 1E6 )
else
ttl = box.unpack('l',task[c_ttl])
end
local status, runat
if delay and delay > 0 then
status = 'D'
runat = box.time64() + tonumber64( delay * 1E6 )
else
status = 'R'
runat = ttl
end
box.queue.taken[sno][ box.pack('l',id) ] = nil
return box.update(sno, id,
"=p=p=p=p=p",
c_prio, prio,
c_status, status,
c_runat, runat,
c_ttr, ttr,
c_ttl, ttl
)
end
function box.queue.check_clients(sno)
sno = tonumber(sno)
if not box.queue.enabled[sno] then error("Space ".. sno .. " queue not enabled") end
for pid, fib in pairs( box.queue.taken[sno] ) do
local id = box.unpack('l', pid);
local fiber = box.fiber.find( fib );
if not fiber then
-- return task back
local tuple = box.select( sno, 0, id )
if tuple then
box.update( sno,tuple[0],
"=p=p",
c_status, 'R',
c_runat, box.unpack('l',tuple[c_ttl])
)
end
box.queue.taken[sno][pid] = nil
end;
end
end
function box.queue.collect(sno)
sno = tonumber(sno)
if not box.queue.enabled[sno] then error("Space ".. sno .. " queue not enabled") end
local idx = box.space[sno].index[i_run]
do
local it,tuple
while true do
it,tuple = idx:next(it)
-- it,tuple = idx.next(idx,it)
if it == nil then break end
local runat = box.unpack('l',tuple[c_runat])
if runat > box.time64() then
box.queue.check_clients(sno);
break
end
print(tuple[c_status] .. ": " .. tostring( runat/1E6 ) .. "\n")
if tuple[c_status] == 'D' then
-- update tuple, set status = R, runat = ttl
if ( box.unpack('l',tuple[c_ttl]) > box.time64() ) then
print("Turn delayed into ready: ", tuple)
box.update( sno,tuple[0],
"=p=p",
c_status, 'R',
c_runat, box.unpack('l',tuple[c_ttl])
)
else
print("Remove out delayed since TTL passed by: ", tuple )
-- box.space[sno]:delete(tuple[0])
box.delete( sno, tuple[0] )
end
elseif tuple[c_status] == 'R' then
-- puff! Task run out of time. Delete
print("Remove out of TTL: ", tuple )
-- box.space[sno]:delete(tuple[0])
box.delete( sno, tuple[0] )
elseif tuple[c_status] == 'T' then
-- TTR Expired. Give task back
print("Turn taken into ready because of TTR: ", tuple)
box.queue.taken[ tuple[0] ] = nil
box.update( sno,tuple[0],
"=p=p",
c_status, 'R',
c_runat, box.unpack('l',tuple[c_ttl])
)
end
end
end
-- collectgarbage("step")
return
end
local function queue_watcher(sno)
sno = tonumber(sno)
box.fiber.detach()
box.fiber.name("box.queue.watcher["..sno.."]")
print("Starting queue watcher for space "..sno)
while true do
-- box.fiber.testcancel()
--for i = 1,100,1 do
box.queue.collect(sno)
--end
box.fiber.sleep(0.001)
--box.fiber.sleep(0)
end
end
function box.queue.enable(sno)
sno = tonumber(sno)
if box.queue.enabled[sno] then error("Space ".. sno .. " queue already enabled") end
local fiber = box.fiber.create(queue_watcher)
print("created fiber ", box.fiber.id(fiber), " for queue ", sno);
box.queue.enabled[sno] = box.fiber.id( fiber )
box.queue.taken[sno] = {}
box.fiber.resume(fiber, sno)
return
end
function box.queue.disable(sno)
sno = tonumber(sno)
if not box.queue.enabled[sno] then
print("Space ".. sno .. " queue not enabled")
return
end
local fiber = box.fiber.find( box.queue.enabled[sno] )
if not fiber then
print("Cannot find fiber by id " .. box.queue.enabled[sno])
box.queue.enabled[sno] = nil
box.queue.taken[sno] = nil
return
end
print("found created fiber: ", box.fiber.id(fiber))
box.fiber.cancel( fiber )
box.queue.enabled[sno] = nil
box.queue.taken[sno] = nil
end
function box.queue.stats(sno, tube)
if json == nil then
error('Install cjson library and plug it on with json=require("cjson")');
end
box.queue.stat.cmd["stats"] = box.queue.stat.cmd["stats"] + 1
sno = tonumber(sno)
if tube == nil then
return json.encode({
total = box.space[sno]:len();
connections = 0;
watchers = 0;
-- tubes = 1; -- TODO
cmd = box.queue.stat.cmd;
})
else
return json.encode({
total = box.space[sno].index[1]:count(0);
ready = box.space[sno].index[1]:count(0,'R');
taken = box.space[sno].index[1]:count(0,'T');
delayed = box.space[sno].index[1]:count(0,'D');
buried = box.space[sno].index[1]:count(0,'B');
})
end
end