Sean Fairbanks

Results 7 comments of Sean Fairbanks

How about just lowering the number of workers in the instance? Using a smaller server to run the worker? In theory, the worker should ideally be running on it's own...

Are you sure it's not just the monitoring functionality doing its thing? I'll assume you have Redis set up for your app's cache. If you look at the keys in...

Two concepts going on: 1) The cluster is the worker process, that picks up tasks and processes the tasks. 2) The broker communicates those jobs between your app and the...

Not sure exactly what you're trying to do, and strongly recommend against this, but you can run those two commands at the same time in bash with an ampersand. python...

Do you have caching setup for django? It's real easy to set up the database backed cache and don't forget to run the create cache table command. The monitoring doesn't...

@SchrodingersGat, yes, I meant the regular django caching. I use the ORM as the broker, the database cache in django, and all works well. Just be sure to run the...

I haven't had a chance to figure out why yet, but the Stat class for the ORM broker seems to only be populated when the name of the cluster in...