#!/usr/bin/perl -w use strict; use warnings; use forks qw( async ); use forks::shared qw( ); use Thread::Queue qw( ); my $MAX_WORKERS = 4; my @SERVERS = qw( server1 server2 server3 ); sub process_request { my ($server) = @_; return qx{/usr/bin/ssh $server /bin/date 2>/dev/null}; } sub process_response { my ($server, $response) = @_; print("$server: $response"); } { my $req = Thread::Queue->new(); my $res = Thread::Queue->new(); my $num_workers = $MAX_WORKERS < @SERVERS ? $MAX_WORKERS : @SERVERS; $req->enqueue(@SERVERS); my @threads; for (1..$num_workers) { push @threads, async { while (my $server = $req->dequeue()) { $res->enqueue( [ $server, process_request($server) ] ); } }; $req->enqueue(undef); } process_response(@{$res->dequeue()}) for 0..$#SERVERS; $_->join() for @threads; }

The problem with this method is that it fails badly if a child fails abnormally.

Since nothing is added to $req once the children start getting created, you can simplify the code slightly by skipping $req->enqueue(undef); and changing $req->dequeue() to $req->dequeue_nb().


In reply to Re: Forking children operate sequentially?! by ikegami
in thread Forking children operate sequentially?! by darwinscusp

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.