Clarification: As per some of the comments, I should clarify that this is intended as a simple framework to allow execution of programs that are naturally parallel (so-called embarrassingly parallel programs). It isn't, and never will be, a solution for tasks which require communication or synchronisation between processes.
I've been looking for a simple process-based parallel programming environment in Python that can execute a function on multiple CPUs on a cluster, with the major criterion being that it needs to be able to execute unmodified Python code. The closest I found was Parallel Python, but pp does some pretty funky things, which can cause the code to not be executed in the correct context (with the appropriate modules imported etc).
I finally got tired of searching, so I decided to write my own. What I came up with is actually quite simple. The problem is, I'm not sure if what I've come up with is simple because I've failed to think of a lot of things. Here's what my program does:
- I have a job server which hands out jobs to nodes in the cluster.
The jobs are handed out to servers listening on nodes by passing a dictionary that looks like this:
{ 'moduleName':'some_module', 'funcName':'someFunction', 'localVars': {'someVar':someVal,...}, 'globalVars':{'someOtherVar':someOtherVal,...}, 'modulePath':'/a/path/to/a/directory', 'customPathHasPriority':aBoolean, 'args':(arg1,arg2,...), 'kwargs':{'kw1':val1, 'kw2':val2,...} }moduleNameandfuncNameare mandatory, and the others are optional.A node server takes this dictionary and does:
sys.path.append(modulePath) globals()[moduleName]=__import__(moduleName, localVars, globalVars) returnVal = globals()[moduleName].__dict__[funcName](*args, **kwargs)On getting the return value, the server then sends it back to the job server which puts it into a thread-safe queue.
- When the last job returns, the job server writes the output to a file and quits.
I'm sure there are niggles that need to be worked out, but is there anything obvious wrong with this approach? On first glance, it seems robust, requiring only that the nodes have access to the filesystem(s) containing the .py file and the dependencies. Using __import__ has the advantage that the code in the module is automatically run, and so the function should execute in the correct context.
Any suggestions or criticism would be greatly appreciated.
EDIT: I should mention that I've got the code-execution bit working, but the server and job server have yet to be written.
importstatements occur deep within the numpy libraries for no apparent reason. I think the problem is that pp tries to execute the function in a "clean" environment and expects you to explicitly specify all modules that your code is dependent on, what setup code needs to be called, etc. Writing trivial programs with pp is easy, writing non-trivial ones is hard. – Chinmay Kanchi Nov 1 '10 at 23:01