Re: Could you recommend job schedulling solution?

2009-02-12 Thread redbaron
I think parallel python will take of that for you (http://www.parallelpython.com/) I've found that RPyC (http://rpyc.wikidot.com/) is quite usefull for my task. It allows me to build RPC service which accepts ordinary python function from client and return result in synchronous or

Could you recommend job schedulling solution?

2009-02-11 Thread redbaron
I've sinlge 8-way node dedicated for executing long running tasks. To be able to execute multiple tasks on this node it shoud spawn each task in another process. At the same time it should accept network connection with new tasks without blocking of client and put it on job queue. What is task ?

RE: Could you recommend job schedulling solution?

2009-02-11 Thread bruce
=earthlink@python.org [mailto:python-list-bounces+bedouglas=earthlink@python.org]on Behalf Of redbaron Sent: Wednesday, February 11, 2009 9:01 AM To: python-list@python.org Subject: Could you recommend job schedulling solution? I've sinlge 8-way node dedicated for executing long running tasks

Re: Could you recommend job schedulling solution?

2009-02-11 Thread redbaron
On 11 фев, 20:26, bruce bedoug...@earthlink.net wrote: hi... not sure exactly what you're looking for, but condor has a robust job scheduling architecture for dealing with grid/distributed setups over multiple systems.. give us more information, and there might be other suggestions!

Re: Could you recommend job schedulling solution?

2009-02-11 Thread Martin
Hi, 2009/2/11 redbaron ivanov.ma...@gmail.com: should accept network connection with new tasks without blocking of client and put it on job queue. What is task ? Executing just ordinary python function will be enough. If solution contain some client library which allow easy task submit it