Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathqueue.lua
More file actions
Latest commit
539 lines (493 loc) · 15.9 KB
/
Copy pathqueue.lua
File metadata and controls
539 lines (493 loc) · 15.9 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
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
--
localcmds= {
put=0;
delete=0;
take=0;
ack=0;
release=0;
stats=0;
}
ifbox.queue==nilthen
box.queue= {
taken= {};
sequence= {};
enabled= {};
stat= { cmd=cmds; };
}
else
localold=box.queue;
localtaken=box.queue.taken
localenabled=box.queue.enabled
box.queue= {}
box.queue.sequence= {}
ifold.takenthen
box.queue.taken=old.taken
else
box.queue.taken= {}
end
ifold.enabledthen
box.queue.enabled=old.enabled
else
box.queue.enabled= {}
end
ifold.statthen
box.queue.stat=old.stat
else
box.queue.stat= { cmd=cmds; };
end
end
-- space column description
localc_id=0-- id, int64, used as sequence
localc_tube=1-- tube id. int32
localc_prio=2-- priority of task, int32
localc_status=3-- status of task. available values: [ 'R' - ready, 'D' - delayed, 'T' - taken, 'B' - buried ]
localc_runat=4-- time, when task should be accounted as ready. microseconds. int64. box.time64()
localc_ttr=5-- Time-To-Release. time amount task allowed to be taken. microseconds. int64.
localc_ttl=6-- Time-To-Live. time amount task allowed to be in queue. microseconds. int64.
localc_taken=7-- count of how many times task was taken
localc_buried=8-- count of how many times task was buried
locali_pk=0
locali_ready=1
locali_run=2
functionbox.queue.id(sno)
sno=tonumber(sno)
ifbox.queue.sequence[ sno ] then
box.queue.sequence[ sno ] =box.queue.sequence[ sno ] +1ULL
else
localtuple=box.space[sno].index[i_pk]:max()
localid=2^25-- 33554432
iftuple~=nilthen
id=box.unpack('l',tuple[0]) +0ULL
end
box.queue.sequence[ sno ] =id+1ULL
end
returnbox.queue.sequence[ sno ]
end
functionbox.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
ifnotbox.queue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
ifprio==nilthenprio=0x7fffend
ifdelay==nilthendelay=0end
iftube==nilthentube=0end
ifttr==nilorttr==0thenttr=300end
localstatus='R'
localrunat=0ULL
ifdelayandttlanddelay>ttlthen
error("Delay can't be longer than TTL")
end
ifttl~=nilandttl>0then
ttl=box.time64() +tonumber64( ttl*1E6 )
else
ttl=0xffffffffffffffffULL
end
ifdelay>0then
status='D'
runat=box.time64() +tonumber64( delay*1E6 )
else
runat=ttl
end
ifttr~=nilandttr>0then
ttr=tonumber64( ttr*1E6 )
else
ttr=300000000ULL -- 300 seconds
end
localid=box.queue.id(sno)
-- id, tube, prio, status, runat ttr, ttl, taken, buried,
returnbox.insert(sno, id, tube, prio, status, runat, ttr, ttl, 0, 0, ...)
end
functionbox.queue.putdef(sno, tube, ...)
returnbox.queue.put(sno,tube,nil,nil,nil,nil,...)
end
functionbox.queue.push(sno, prio, ttr, ...)
error("TODO: index search")
end
functionbox.queue.delete(sno, id)
sno, id=tonumber(sno), tonumber64(id)
box.queue.stat.cmd["delete"] =box.queue.stat.cmd["delete"] +1
ifnotbox.queue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
box.queue.taken[sno][ box.pack('l',id) ] =nil
returnbox.space[sno]:delete(id)
end
functionbox.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
ifnotbox.queue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
iftube==nilthentube=0end
localidx=box.space[sno].index[i_ready].idx
localx,one_ready=box.space[sno].index[i_ready]:next_equal( tube,'R' )
ifone_ready==nilthenreturnend
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
returnbox.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
functionbox.queue.take1(sno, tube, timeout)
sno, tube, timeout=tonumber(sno), tonumber(tube), tonumber(timeout)
ifnotbox.queue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
-- if timeout == nil then timeout = 60*60*24*365 end
iftimeout==nilthentimeout=60end
iftube==nilthentube=0end
localsleep=0;
-- don't sleep for all the timeout. Split it into parts
iftimeout>0then
sleep=timeout/10;
ifsleep>1then
sleep=0.1
end
end
localfinish=box.time() +timeout;
localidx=box.space[sno].index[i_ready].idx
-- print("Running take at "..box.time()..", until "..finish.."\n")
localone_ready
whiletruedo
localx
x,one_ready=box.space[sno].index[i_ready]:next_equal( tube,'R' )
ifone_readythen
break
end
-- print("No task found. Sleeping for "..sleep.."\n");
ifbox.time() >=finishthenbreakend
box.fiber.sleep( sleep )
end
ifone_ready==nilthenreturnend
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
returnbox.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
localfunctionconsumer_check_task(sno, id)
sno, id=tonumber(sno), tonumber64(id)
ifnotbox.queue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
localtaken_by=box.queue.taken[sno][ box.pack('l',id) ]
localtask
iftaken_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)
returntrue
elseiftaken_bythen
error(string.format( "Task taken by %d. Not you (%d)", taken_by, box.fiber.id() ))
else
error("Task not taken by any")
end
end
functionbox.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
functionbox.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)
localtask=box.select(sno, i_pk, id)
-- if something is set, then update and recalculate
ifdelayandttlanddelay>ttlthen
error("Delay can't be longer than TTL")
end
ifprio==nilthen
prio=box.unpack('i',task[c_prio])
end
ifttr~=nilandttr>0then
ttr=tonumber64( ttr*1E6 )
else
ttr=box.unpack('l',task[c_ttr])
end
ifttl~=nilandttl>0then
ttl=box.time64() +tonumber64( ttl*1E6 )
else
ttl=box.unpack('l',task[c_ttl])
end
localstatus, runat
ifdelayanddelay>0then
status='D'
runat=box.time64() +tonumber64( delay*1E6 )
else
status='R'
runat=ttl
end
box.queue.taken[sno][ box.pack('l',id) ] =nil
returnbox.update(sno, id,
"=p=p=p=p=p",
c_prio, prio,
c_status, status,
c_runat, runat,
c_ttr, ttr,
c_ttl, ttl
)
end
functionbox.queue.check_clients(sno)
sno=tonumber(sno)
ifnotbox.queue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
forpid, fibinpairs( box.queue.taken[sno] ) do
localid=box.unpack('l', pid);
localfiber=box.fiber.find( fib );
ifnotfiberthen
-- return task back
localtuple=box.select( sno, 0, id )
iftuplethen
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
functionbox.queue.collect(sno)
sno=tonumber(sno)
ifnotbox.queue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
localidx=box.space[sno].index[i_run]
do
localit,tuple
whiletruedo
it,tuple=idx:next(it)
-- it,tuple = idx.next(idx,it)
ifit==nilthenbreakend
localrunat=box.unpack('l',tuple[c_runat])
ifrunat>box.time64() then
box.queue.check_clients(sno);
break
end
print(tuple[c_status] ..": " ..tostring( runat/1E6 ) .."\n")
iftuple[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
elseiftuple[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] )
elseiftuple[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
localfunctionqueue_watcher(sno)
sno=tonumber(sno)
box.fiber.detach()
box.fiber.name("box.queue.watcher["..sno.."]")
print("Starting queue watcher for space "..sno)
whiletruedo
-- 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
functionbox.queue.enable(sno)
sno=tonumber(sno)
ifbox.queue.enabled[sno] thenerror("Space "..sno.." queue already enabled") end
localfiber=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
functionbox.queue.disable(sno)
sno=tonumber(sno)
ifnotbox.queue.enabled[sno] then
print("Space "..sno.." queue not enabled")
return
end
localfiber=box.fiber.find( box.queue.enabled[sno] )
ifnotfiberthen
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
functionbox.queue.stats(sno, tube)
ifjson==nilthen
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)
iftube==nilthen
returnjson.encode({
total=box.space[sno]:len();
connections=0;
watchers=0;
-- tubes = 1; -- TODO
cmd=box.queue.stat.cmd;
})
else
returnjson.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