[web2py] Re: scheduler and long tasks

2016-09-20 Thread Pierre
thanks Niphlod right now coordination isn't a problem... I have 2 workers and they seem to cooperate well. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report

[web2py] Re: scheduler and long tasks

2016-09-19 Thread Niphlod
nope. Technically, tasks are queued as long as the "outer" thingy (be it whatever) get all of the pending transactions committed (a task IS queued when the corresponding "insert" is committed to the database). Every task gets processed according by the usual rules, but if you want coordination

[web2py] Re: scheduler and long tasks

2016-09-19 Thread Pierre
so far works :) is there any restriction to queueing_task inside of a task ? is every task independant from the other tasks ? (any hierarchical relation between "inner tasks" and "outer tasks" ?) -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -