-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(worker): should cap update progress events
- Loading branch information
Showing
3 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--[[ | ||
Update job progress | ||
Input: | ||
KEYS[1] Job id key | ||
KEYS[2] event stream key | ||
KEYS[3] meta key | ||
ARGV[1] id | ||
ARGV[2] progress | ||
Output: | ||
0 - OK | ||
-1 - Missing job. | ||
Event: | ||
progress(jobId, progress) | ||
]] | ||
local rcall = redis.call | ||
|
||
if rcall("EXISTS", KEYS[1]) == 1 then -- // Make sure job exists | ||
local maxEvents = rcall("HGET", KEYS[3], "opts.maxLenEvents") or 10000 | ||
|
||
rcall("HSET", KEYS[1], "progress", ARGV[2]) | ||
rcall("XADD", KEYS[2], "MAXLEN", "~", maxEvents, "*", "event", "progress", | ||
"jobId", ARGV[1], "data", ARGV[2]); | ||
return 0 | ||
else | ||
return -1 | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters