Is there an issue with Koyeb Worker n Celery/Redis?

Recently, our Koyeb worker has repeatedly been failing due to a celery-redis error. Despite updating the celery result backend env value with a new redis value it keeps failing and returning this error;

File “/app/.heroku/python/lib/python3.12/site-packages/redis/connection.py”, line 524, in read_response
raise response
redis.exceptions.ResponseError: max daily request limit exceeded. Limit: 10000, Usage: 10000. See ERR max daily request limit exceeded - Upstash Documentation for details
During handling of the above exception, another exception occurred:
Traceback (most recent call last):

It seems you are hosting your Redis database on Upstash and face a limit set on their side.

Maybe you have a peak in traffic which led to more requests to your Redis database.

That’s what we thought too, but there isn’t an increase in traffic, the issue is happening in the staging environment.

Most likely it is on the application side where you reached the 10000 requests to your Redis database.