- 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
93 lines
2.7 KiB
JavaScript
93 lines
2.7 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.promote = void 0;
|
|
const content = `--[[
|
|
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] 'pc' priority counter
|
|
KEYS[7] 'event stream'
|
|
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
|
|
--[[
|
|
Function to add job considering priority.
|
|
]]
|
|
-- Includes
|
|
--[[
|
|
Function priority marker to wait if needed
|
|
in order to wake up our workers and to respect priority
|
|
order as much as possible
|
|
]]
|
|
local function addPriorityMarkerIfNeeded(waitKey)
|
|
local waitLen = rcall("LLEN", waitKey)
|
|
if waitLen == 0 then
|
|
rcall("LPUSH", waitKey, "0:0")
|
|
end
|
|
end
|
|
--[[
|
|
Function to get priority score.
|
|
]]
|
|
local function getPriorityScore(priority, priorityCounterKey)
|
|
local prioCounter = rcall("INCR", priorityCounterKey)
|
|
return priority * 0x100000000 + prioCounter % 0x100000000
|
|
end
|
|
local function addJobWithPriority(waitKey, prioritizedKey, priority, paused, jobId, priorityCounterKey)
|
|
local score = getPriorityScore(priority, priorityCounterKey)
|
|
rcall("ZADD", prioritizedKey, score, jobId)
|
|
if not paused then
|
|
addPriorityMarkerIfNeeded(waitKey)
|
|
end
|
|
end
|
|
--[[
|
|
Function to check for the meta.paused key to decide if we are paused or not
|
|
(since an empty list and !EXISTS are not really the same).
|
|
]]
|
|
local function getTargetQueueList(queueMetaKey, waitKey, pausedKey)
|
|
if rcall("HEXISTS", queueMetaKey, "paused") ~= 1 then
|
|
return waitKey, false
|
|
else
|
|
return pausedKey, true
|
|
end
|
|
end
|
|
if rcall("ZREM", KEYS[1], jobId) == 1 then
|
|
local jobKey = ARGV[1] .. jobId
|
|
local priority = tonumber(rcall("HGET", jobKey, "priority")) or 0
|
|
local target, paused = getTargetQueueList(KEYS[4], KEYS[2], KEYS[3])
|
|
-- Remove delayed "marker" from the wait list if there is any.
|
|
-- Since we are adding a job we do not need the marker anymore.
|
|
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
|
|
rcall("LPUSH", target, jobId)
|
|
else
|
|
addJobWithPriority(KEYS[2], KEYS[5], priority, paused, jobId, KEYS[6])
|
|
end
|
|
-- Emit waiting event (wait..ing@token)
|
|
rcall("XADD", KEYS[7], "*", "event", "waiting", "jobId", jobId, "prev", "delayed");
|
|
rcall("HSET", jobKey, "delay", 0)
|
|
return 0
|
|
else
|
|
return -3
|
|
end`;
|
|
exports.promote = {
|
|
name: 'promote',
|
|
content,
|
|
keys: 7,
|
|
};
|
|
//# sourceMappingURL=promote-7.js.map
|