Question: Multiple Rate Limit ? #2114
Unanswered
bricemaurin
asked this question in
Q&A
Replies: 2 comments 4 replies
-
It is not possible to set more than one rate limiter per queue. Maybe a solution is to chain several queues with different rate limits, from the least restrictive to the most restrictive. So the first queue just adds the job to the next queue and so on, and the last queue performs the task. |
Beta Was this translation helpful? Give feedback.
3 replies
-
What did you do to solve this issue @bricemaurin ? I am facing the same problem. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey Bull Team 👋
Thanks for the awesome work you've done with Bull, this is by far the best JS queue out there.
We implemented it and can't seem to find the answer about a specific point in the doc. I hope someone will be able to point me to the right spec / code to better understand this.
We use a rate limited api that has both a per minute, per hour and per day limit. How to implement that using Bull ?
Concretely, we can't call this API more than
How should we set this ?
Thanks !
Beta Was this translation helpful? Give feedback.
All reactions