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 pathfqueue.lua
More file actions
Latest commit
311 lines (287 loc) · 9.4 KB
/
Copy pathfqueue.lua
File metadata and controls
311 lines (287 loc) · 9.4 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
--
-- Implementation of queueing API.
--
-- Faster and simplified version of queue.
-- No delayed tasks
-- No ttl
-- No ttr
--
--
-- A task in a queue can be in one of the following states:
-- READY initial state, the task is ready for execution
-- TAKEN the task is being worked on
-- BURIED (TODO) 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.fqueue.enable(sno)
-- start queue in space sno
-- box.fqueue.disable(sno)
-- stop queue in space sno
--
-- box.fqueue.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
-- <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.fqueue.delete(sno, id)
-- Delets a taks by id.
-- Returns the contents of the deleted task.
--
-- ------------------
-- - Consumer methods
-- ------------------
--
-- box.fqueue.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.fqueue.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.fqueue.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"
-- ---------------------------------------------
-- 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' }
-- taken : i32 how many times task was taken
-- buried : i32 how many times task was buried
--
ifbox.fqueue==nilthen
box.fqueue= {}
box.fqueue.taken= {}
box.fqueue.sequence= {}
box.fqueue.enabled= {}
else
localtaken=box.fqueue.taken
localenabled=box.fqueue.enabled
box.fqueue= {}
box.fqueue.sequence= {}
iftakenthen
box.fqueue.taken=taken
else
box.fqueue.taken= {}
end
ifenabledthen
box.fqueue.enabled=enabled
else
box.fqueue.enabled= {}
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_taken=4-- count of how many times task was taken
localc_buried=5-- count of how many times task was buried
locali_pk=0
locali_ready=1
functionbox.fqueue.id(sno)
sno=tonumber(sno)
ifbox.fqueue.sequence[ sno ] then
box.fqueue.sequence[ sno ] =box.fqueue.sequence[ sno ] +1ULL
else
localtuple=box.space[sno].index[i_pk]:max()
localid=1
iftuple~=nilthen
id=box.unpack('l',tuple[0]) +0ULL
end
box.fqueue.sequence[ sno ] =id+1ULL
end
returnbox.fqueue.sequence[ sno ]
end
functionbox.fqueue.put(sno, tube, prio, ...)
sno, tube, prio=tonumber(sno), tonumber(tube), tonumber(prio)
ifnotbox.fqueue.enabled[sno] then
error("Space "..sno.." queue not enabled")
end
ifprio==nilthenprio=0x7fffend
iftube==nilthentube=0end
localstatus='R'
localid=box.fqueue.id(sno)
-- id, tube, prio, status, taken, buried,
returnbox.insert(sno, id, tube, prio, status, 0, 0, ...)
end
functionbox.fqueue.delete(sno, id)
sno, id=tonumber(sno), tonumber64(id)
ifnotbox.fqueue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
box.fqueue.taken[ box.pack('l',id) ] =nil
returnbox.space[sno]:delete(id)
end
functionbox.fqueue.take(sno, tube)
sno, tube=tonumber(sno), tonumber(tube)
ifnotbox.fqueue.enabled[sno] then
error("Space "..sno.." queue not enabled")
end
iftube==nilthentube=0end
localone_ready=box.space[sno].index[i_ready]:iterator(box.index.EQ, 0, 'R')()
ifone_ready==nilthenreturnend
-- print("Selected "..tostring( box.unpack('l',one_ready[0]) ).." for take ")
box.fqueue.taken[ one_ready[0] ] =box.session.id()
returnbox.update(
sno, one_ready[0],
"=p+p",
-- c_fid, box.session.id(),
c_status, 'T', -- taken
c_taken, 1
)
end
localfunctionconsumer_check_task(sno, pid)
ifnotbox.fqueue.enabled[sno] thenerror("Space "..sno.." queue not enabled") end
localtaken_by=box.fqueue.taken[ pid ]
-- print("Task "..tostring(box.unpack('l',pid)).." taken by " .. tostring(taken_by))
localtask
iftaken_by==box.session.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.session.id() ))
else
--for k,v in pairs(box.fqueue.taken) do
-- print( string.format("Task %s taken by %d", tostring( k ), v) )
--end
error("Task "..tostring(box.unpack('l',pid)).." not taken by any")
end
end
functionbox.fqueue.ack( sno, id )
sno, id=tonumber(sno), tonumber64(id)
localpid=box.pack('l', id)
consumer_check_task(sno,pid)
box.fqueue.taken[pid] =nil
box.space[sno]:delete(id)
end
functionbox.fqueue.release( sno, id, prio )
sno, id, prio=tonumber(sno), tonumber64(id), tonumber(prio)
ifprio==nilthenprio=0x7fffend
localpid=box.pack('l',id)
consumer_check_task(sno,pid)
localtask=box.select(sno, i_pk, id)
-- if something is set, then update and recalculate
ifprio==nilthen
prio=box.unpack('i',task[c_prio])
end
box.fqueue.taken[ pid ] =nil
returnbox.update(sno, id, "=p=p", c_prio, prio, c_status, 'R')
end
functionbox.fqueue.collect(sno, tube)
sno=tonumber(sno)
ifnotbox.fqueue.enabled[sno] then
-- error("Space ".. sno .. " queue not enabled")
return
end
fortupleinbox.space[sno].index[i_ready]:iterator(box.index.EQ, tube, 'T') do
iftuple[c_status] ~='T' then
break
end
ifnotbox.fqueue.taken[tuple[0]] orbox.session.exists(box.fqueue.taken[tuple[0]]) ~=1then
-- print(string.format( "Return task %s to ready. No fiber %d", tostring( box.unpack('l', tuple[0]) ), box.fqueue.taken[ tuple[0] ] ))
box.fqueue.taken[tuple[0]] =nil
box.update(sno,tuple[0], "=p", c_status, 'R')
end
end
end
localfunctionqueue_watcher(sno)
sno=tonumber(sno)
box.fiber.detach()
box.fiber.name("box.fqueue.watcher["..sno.."]")
print("Starting queue watcher for space "..sno)
whiletruedo
fori=0,10,1do
box.fqueue.collect(sno, i)
end
box.fiber.sleep(0.1)
end
end
functionbox.fqueue.enable(sno)
sno=tonumber(sno)
ifbox.fqueue.enabled[sno] thenerror("Space "..sno.." queue already enabled") end
localfiber=box.fiber.create(queue_watcher)
print("created fiber ", box.fiber.id(fiber))
box.fqueue.enabled[sno] =box.fiber.id( fiber )
box.fiber.resume(fiber, sno)
return
end
functionbox.fqueue.disable(sno)
sno=tonumber(sno)
ifnotbox.fqueue.enabled[sno] then
print("Space "..sno.." queue not enabled")
return
end
localfiber=box.fiber.find( box.fqueue.enabled[sno] )
ifnotfiberthen
print("Cannot find fiber by id " ..box.fqueue.enabled[sno])
box.fqueue.enabled[sno] =nil
return
end
print("found created fiber: ", box.fiber.id(fiber))
box.fiber.cancel( fiber )
box.fqueue.enabled[sno] =nil
end