- 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
70 lines
2.3 KiB
Lua
70 lines
2.3 KiB
Lua
--[[
|
|
Remove a job from all the queues it may be in as well as all its data.
|
|
In order to be able to remove a job, it cannot be active.
|
|
|
|
Input:
|
|
KEYS[1] queue prefix
|
|
|
|
ARGV[1] jobId
|
|
ARGV[2] remove children
|
|
|
|
Events:
|
|
'removed'
|
|
]]
|
|
|
|
local rcall = redis.call
|
|
|
|
-- Includes
|
|
--- @include "includes/destructureJobKey"
|
|
--- @include "includes/isLocked"
|
|
--- @include "includes/removeJobFromAnyState"
|
|
--- @include "includes/removeParentDependencyKey"
|
|
|
|
local function removeJob( prefix, jobId, parentKey, removeChildren)
|
|
local jobKey = prefix .. jobId;
|
|
|
|
removeParentDependencyKey(jobKey, false, parentKey)
|
|
|
|
if removeChildren == "1" then
|
|
-- Check if this job has children
|
|
-- If so, we are going to try to remove the children recursively in deep first way because
|
|
-- if some job is locked we must exit with and error.
|
|
--local countProcessed = rcall("HLEN", jobKey .. ":processed")
|
|
local processed = rcall("HGETALL", jobKey .. ":processed")
|
|
|
|
if (#processed > 0) then
|
|
for i = 1, #processed, 2 do
|
|
local childJobId = getJobIdFromKey(processed[i])
|
|
local childJobPrefix = getJobKeyPrefix(processed[i], childJobId)
|
|
removeJob( childJobPrefix, childJobId, jobKey, removeChildren )
|
|
end
|
|
end
|
|
|
|
local dependencies = rcall("SMEMBERS", jobKey .. ":dependencies")
|
|
if (#dependencies > 0) then
|
|
for i, childJobKey in ipairs(dependencies) do
|
|
-- We need to get the jobId for this job.
|
|
local childJobId = getJobIdFromKey(childJobKey)
|
|
local childJobPrefix = getJobKeyPrefix(childJobKey, childJobId)
|
|
removeJob( childJobPrefix, childJobId, jobKey, removeChildren )
|
|
end
|
|
end
|
|
end
|
|
|
|
local prev = removeJobFromAnyState(prefix, jobId)
|
|
|
|
if rcall("DEL", jobKey, jobKey .. ":logs", jobKey .. ":dependencies", jobKey .. ":processed") > 0 then
|
|
local maxEvents = rcall("HGET", prefix .. "meta", "opts.maxLenEvents") or 10000
|
|
rcall("XADD", prefix .. "events", "MAXLEN", "~", maxEvents, "*", "event", "removed",
|
|
"jobId", jobId, "prev", prev)
|
|
end
|
|
end
|
|
|
|
local prefix = KEYS[1]
|
|
|
|
if not isLocked(prefix, ARGV[1], ARGV[2]) then
|
|
removeJob(prefix, ARGV[1], nil, ARGV[2])
|
|
return 1
|
|
end
|
|
return 0
|