Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #36563 > unrolled thread

Re: subprocess.Popen and multiprocessing fails to execute external program

Started byDave Angel <d@davea.name>
First post2013-01-10 00:56 -0500
Last post2013-01-10 00:56 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: subprocess.Popen and multiprocessing fails to execute external program Dave Angel <d@davea.name> - 2013-01-10 00:56 -0500

#36563 — Re: subprocess.Popen and multiprocessing fails to execute external program

FromDave Angel <d@davea.name>
Date2013-01-10 00:56 -0500
SubjectRe: subprocess.Popen and multiprocessing fails to execute external program
Message-ID<mailman.364.1357797401.2939.python-list@python.org>
On 01/09/2013 11:08 PM, Niklas Berliner wrote:
> I have a pipline that involves processing some data, handing the data to an
> external program (t_coffee used for sequence alignments in bioinformatics),
> and postprocessing the result. Since I have a lot of data, I need to run my
> pipeline in parallel which I implemented using the multiprocessing module
> following Doug Hellmanns blog (
> http://blog.doughellmann.com/2009/04/pymotw-multiprocessing-part-1.html).
>
> My pipeline works perfectly fine when I run it with the multiprocessing
> implementation and one consumer, i.e. on one core. If I increase the number
> of consumers, i.e. that multiple instances of my pipeline run in parallel
> the external program fails with a core dump.
>

Could it be that the external program is not designed to have multiple
simultaneous instances?  There are many such programs, some of which
check for an existing process before allowing another one to get far.

When using the multiprocessing module, always make sure your externals
are well-behaved before looking for problems in your multi-code.

To put it more strongly, a well-written program cannot easily be crashed
by the parent that launched it.


-- 

DaveA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web