- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
73 lines
1.6 KiB
Lua
73 lines
1.6 KiB
Lua
--[[
|
|
Moves job from active to delayed set.
|
|
|
|
Input:
|
|
KEYS[1] wait key
|
|
KEYS[2] active key
|
|
KEYS[3] prioritized key
|
|
KEYS[4] delayed key
|
|
KEYS[5] job key
|
|
KEYS[6] events stream
|
|
KEYS[7] paused key
|
|
KEYS[8] meta key
|
|
|
|
ARGV[1] key prefix
|
|
ARGV[2] timestamp
|
|
ARGV[3] delayedTimestamp
|
|
ARGV[4] the id of the job
|
|
ARGV[5] queue token
|
|
ARGV[6] delay value
|
|
|
|
Output:
|
|
0 - OK
|
|
-1 - Missing job.
|
|
-3 - Job not in active set.
|
|
|
|
Events:
|
|
- delayed key.
|
|
]]
|
|
local rcall = redis.call
|
|
|
|
-- Includes
|
|
--- @include "includes/addDelayMarkerIfNeeded"
|
|
--- @include "includes/getTargetQueueList"
|
|
--- @include "includes/promoteDelayedJobs"
|
|
|
|
local jobKey = KEYS[5]
|
|
if rcall("EXISTS", jobKey) == 1 then
|
|
local delayedKey = KEYS[4]
|
|
if ARGV[5] ~= "0" then
|
|
local lockKey = jobKey .. ':lock'
|
|
if rcall("GET", lockKey) == ARGV[5] then
|
|
rcall("DEL", lockKey)
|
|
else
|
|
return -2
|
|
end
|
|
end
|
|
|
|
local jobId = ARGV[4]
|
|
local score = tonumber(ARGV[3])
|
|
local delayedTimestamp = (score / 0x1000)
|
|
|
|
local numRemovedElements = rcall("LREM", KEYS[2], -1, jobId)
|
|
if numRemovedElements < 1 then
|
|
return -3
|
|
end
|
|
|
|
rcall("HSET", jobKey, "delay", ARGV[6])
|
|
|
|
local maxEvents = rcall("HGET", KEYS[8], "opts.maxLenEvents") or 10000
|
|
|
|
rcall("ZADD", delayedKey, score, jobId)
|
|
rcall("XADD", KEYS[6], "MAXLEN", "~", maxEvents, "*", "event", "delayed",
|
|
"jobId", jobId, "delay", delayedTimestamp)
|
|
|
|
-- Check if we need to push a marker job to wake up sleeping workers.
|
|
local target = getTargetQueueList(KEYS[8], KEYS[1], KEYS[7])
|
|
addDelayMarkerIfNeeded(target, delayedKey)
|
|
|
|
return 0
|
|
else
|
|
return -1
|
|
end
|