hi('/')
i am writing an application that need to be distributed on different nodes. what is the recommended framework.
hi('/')
i am writing an application that need to be distributed on different nodes. what is the recommended framework.
The multiprocessing
package comes as standard with Python 2.6 and I would recommend looking at this first.
multiprocessing is a package that supports spawning processes using an API similar to the threading module. The multiprocessing package offers both local and remote concurrency, effectively side-stepping the Global Interpreter Lock by using subprocesses instead of threads.
see here also for more information and references. some other references of interest (related somehow)
IPython has very good parallel computing capabilities. There is a tutorial video overview that starts here:
https://www.osc.edu/cms/sip/node/28
which is part of a larger series on scientific in parallel computing here:
I hope that helps.