Josue Balandrano Coronel

Results 28 comments of Josue Balandrano Coronel

That sounds interesting, any recommendations? I was also thinking we might want to support every backend as a "schedule backend". e.g. DB, Redis, ElasticSearch, CouchDB, etc... But we could start...

Ah, starting with a 3rd app seems like a good option.

I think exposing more backends to celery beat is something that will solve some current issues with beat. RedBeat is definitely a good place to start as well as a...

@auvipy I was thinking on starting with Redis based on what RedBeat has implemented but do it in a more Celery compatible way. Meaning, building an API where we could...

#251 is very interesting and gives a good idea on where to focus first: centralized storage for periodic tasks and remote control commands. We can probably leave the distributed beat...

Somebody reported this as an issue on IRC. I can confirm the state and ready values are not correct until you do `result.get()` when using RPC as result backend. This...

Another update while I was testing this. Apparently it is working for single tasks but the same problem arises when using groups. ```python >>> res = group(add.s(3,4), add.s(5,7)).delay() >>> for...

@georgexsh I think this looks like a good solution to explore. Have you been able to test this locally? I'm curious to see if the master process brakes in some...

@georgexsh I think it would be a good idea to open up a PR and work on those things. I can lend a hand if you want. Also, that is...

@georgexsh I see what you mean. so, to be clear the main issues are: - [ ] Figure which standard API from billiard to use to check if the current...