Parallelization with Python: which, where, how?

Irmen de Jong irmen at -nospam-remove-this-xs4all.nl
Tue Dec 21 14:09:16 EST 2004


Jp Calderone wrote:
> On 21 Dec 2004 05:04:36 -0800, Mike M?ller <mmueller at dgfz.de> wrote:
> 
>>>Can someone recommend a parallelization approach? Are there examples or 
>>>documentation? Has someone got experience with stability and efficiency?
>>
>>I am successfully using pyro http://pyro.sourceforge.net for my
>>parallelization task (8 node Linux cluster, embarrassing parallel).

[...]

>   How have you chosen to deal with the security implications?
> 
>   Jp

Some more background on this:
Pyro uses the highly efficient internal pickling mechanism to
transport its data around, but that protocol is insecure.
You can choose to use a different, secure, serialization protocol.
More info is here: http://pyro.sourceforge.net/manual/9-security.html#pickle

There are a few other security issues to be aware of, they're
described in the same chapter.

--Irmen



More information about the Python-list mailing list