-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update FAQ to reflect low priority of backfill tasks on dramatiq #293
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,23 +141,23 @@ To see progress and failed batches, connect to Redis with | |
|
||
For total messages, query: | ||
``` | ||
HLEN dramatiq:default.msgs | ||
HLEN dramatiq:low.msgs | ||
``` | ||
|
||
For messages failed and waiting to retry in the delay queue (DQ), query: | ||
``` | ||
HGETALL dramatiq:default.DQ.msgs | ||
HGETALL dramatiq:low.DQ.msgs | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In reality, tasks sent from the listener are high priority, while tasks queued manually are low priority, so there are two delay queues and X queues. |
||
``` | ||
|
||
For messages permanently failed in the dead letter queue (XQ), query: | ||
``` | ||
HGETALL dramatiq:default.XQ.msgs | ||
HGETALL dramatiq:low.XQ.msgs | ||
``` | ||
|
||
To clear the queue, delete keys for the main queue and delay queue | ||
``` | ||
DEL dramatiq:default.msgs | ||
DEL dramatiq:default.DQ.msgs | ||
DEL dramatiq:low.msgs | ||
DEL dramatiq:low.DQ.msgs | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same applies here: deleting backfill tasks: |
||
``` | ||
|
||
For more information on queues, see the [spec shared by dramatiq](https://github.com/Bogdanp/dramatiq/blob/24cbc0dc551797783f41b08ea461e1b5d23a4058/dramatiq/brokers/redis/dispatch.lua#L24-L43) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing quotes around the ZSET, "dramatiq:low.msgs"