hibiken / asynq

Simple, reliable, and efficient distributed task queue in Go
MIT License
9.65k stars 696 forks source link

asynq queue #648

Open wanggongjin opened 1 year ago

wanggongjin commented 1 year ago

If a task is written to the asynq queue and it's never been picked up for processing, is it going to be kept? Is there any way to do that

bfwbbrj commented 1 year ago

Can you provide more details & context? By default, asynq will not skip any tasks. If a task fails too many times, it will be archived for at most 90 days, after which it will be deleted permanently.

wanggongjin commented 1 year ago

I mean how long does a published task stay in asynq if it never gets processed