62 lines
1.6 KiB
Lua
62 lines
1.6 KiB
Lua
--[[
|
|
Promotes a job that is currently "delayed" to the "waiting" state
|
|
|
|
Input:
|
|
KEYS[1] 'delayed'
|
|
KEYS[2] 'wait'
|
|
KEYS[3] 'paused'
|
|
KEYS[4] 'meta'
|
|
KEYS[5] 'prioritized'
|
|
KEYS[6] 'active'
|
|
KEYS[7] 'pc' priority counter
|
|
KEYS[8] 'event stream'
|
|
KEYS[9] 'marker'
|
|
|
|
ARGV[1] queue.toKey('')
|
|
ARGV[2] jobId
|
|
|
|
Output:
|
|
0 - OK
|
|
-3 - Job not in delayed zset.
|
|
|
|
Events:
|
|
'waiting'
|
|
]]
|
|
local rcall = redis.call
|
|
local jobId = ARGV[2]
|
|
|
|
-- Includes
|
|
--- @include "includes/addJobInTargetList"
|
|
--- @include "includes/addJobWithPriority"
|
|
--- @include "includes/getTargetQueueList"
|
|
|
|
if rcall("ZREM", KEYS[1], jobId) == 1 then
|
|
local jobKey = ARGV[1] .. jobId
|
|
local priority = tonumber(rcall("HGET", jobKey, "priority")) or 0
|
|
local metaKey = KEYS[4]
|
|
local markerKey = KEYS[9]
|
|
|
|
-- Remove delayed "marker" from the wait list if there is any.
|
|
-- Since we are adding a job we do not need the marker anymore.
|
|
-- Markers in waitlist DEPRECATED in v5: Remove in v6.
|
|
local target, isPausedOrMaxed = getTargetQueueList(metaKey, KEYS[6], KEYS[2], KEYS[3])
|
|
local marker = rcall("LINDEX", target, 0)
|
|
if marker and string.sub(marker, 1, 2) == "0:" then rcall("LPOP", target) end
|
|
|
|
if priority == 0 then
|
|
-- LIFO or FIFO
|
|
addJobInTargetList(target, markerKey, "LPUSH", isPausedOrMaxed, jobId)
|
|
else
|
|
addJobWithPriority(markerKey, KEYS[5], priority, jobId, KEYS[7], isPausedOrMaxed)
|
|
end
|
|
|
|
rcall("XADD", KEYS[8], "*", "event", "waiting", "jobId", jobId, "prev",
|
|
"delayed");
|
|
|
|
rcall("HSET", jobKey, "delay", 0)
|
|
|
|
return 0
|
|
else
|
|
return -3
|
|
end
|