Hi
I am using Django, celery and beats. Is there a way how I can reduce number of beats? Number of requests made to redis data store when using celery and beat.
ResponseError: max daily request limit exceeded. Limit: 10000, Usage: 10000.
message from upstash ERR max daily request limit exceeded - Upstash Documentation
So I want to find out if it is possible to modify settings of celery or beat so it will not thit 10.000 requests.
I need celery to run “background” tasks but expecially for dev environment it would be good enough if the are “checked” every minute or so. Not every second.
Thank you
Radek