I’m using a basic Flower configuration, having copied the settings from the Render demo django/redis tutorial, but linked to my own github project. When I launch my flower tool, I see that it is using up 23 of my 50 available connections. How can I reduce this to a reasonable number?
I’ve tried changing the start command to: celery -A myapp flower --redis_max_connections=2 --concurrency=4 -l info
I also tried adding this to my environment: REDIS_MAX_CONNECTIONS 2
Nothing seems to change anything. How can I adjust the connections?
Yeah I uncovered that same thread in searching for a resolution! Unfortunately didn’t see an answer in there…
I agree with you that it is a Flower configuration issue and not a Render specific issue; I was just hoping somebody here knew how to better configure Flower!