NAME

Parallel::Fork::BossWorkerAsync - Perl extension for creating asynchronous forking queue processing applications.

SYNOPSIS

use Parallel::Fork::BossWorkerAsync ();
my $bw = Parallel::Fork::BossWorkerAsync->new(
  work_handler => \&work
);

# Jobs are hashrefs
$bw->add_work( {key => 'value'} );
while ($bw->pending()) {
  my $ref = $bw->get_result();
}
$bw->shut_down();

sub work {
  my ($job)=@_;
  # do something with hash ref $job

  # Return values are hashrefs
  return { };
}

DESCRIPTION

Parallel::Fork::BossWorkerAsync implements a multiprocess preforking server. On construction, the current process forks a "Boss" process (the server), which then forks one or more "Worker" processes. The Boss acts as a manager, accepting jobs from the main process, queueing and passing them to the next available idle Worker. The Boss then listens for, and collects any responses from the Workers as they complete jobs, queueing them for the main process. At any time, the main process can collect available responses from the Boss.

Having a separate Boss process allows the main application to behave asynchronously with respect to the queued work. Also, since the Boss is acting as a server, the application can send it more work at any time.

METHODS

new(...)

Creates and returns a new Parallel::Fork::BossWorkerAsync object.

my $bw = Parallel::Fork::BossWorkerAsync->new(
  work_handler    => \&work_sub,
  result_handler  => \&result_sub,
  init_handler    => \&init_sub,
  global_timeout  => 0,
  worker_count    => 3,
  msg_delimiter   => "\0\0\0"
);
  • work_handler => \&work_sub

    work_handler is the only required argument. The sub is called with it's first and only argument being one of the values in the work queue. Each worker calls this sub each time it receives work from the boss process. The handler may trap $SIG{ALRM}, which may be called if global_timeout is specified.

    The work_handler should clean up after itself, as the workers may call the work_handler more than once.

  • result_handler => \&result_sub

    The result_handler argument is optional, the sub is called with it's first and only argument being the return value of work_handler. The boss process calls this sub each time a worker returns data. This subroutine is not affected by the value of global_timeout.

  • init_handler => \&init_sub

    The init_handler argument is optional. It accepts no arguments and has no return value. It is called only once by each worker as it loads and before entering the job processing loop. This subroutine is not affected by the value of global_timeout. This could be used to connect to a database, etc.

  • global_timeout => $seconds

    By default, a handler can execute forever. If global_timeout is specified, an alarm is setup to terminate the work_handler so processing can continue.

  • worker_count => $count

    By default, 3 workers are started to process the data queue. Specifying worker_count can scale the worker count to any number of workers you wish.

  • msg_delimiter => $delimiter

    Sending messages to and from the child processes is accomplished using Data::Dumper. When transmitting data, a delimiter must be used to identify the breaks in messages. By default, this delimiter is "\0\0\0". This delimiter may not appear in your data.

add_work(\%work)

Adds work to the instance's queue. It accepts a list of hash refs. add_work() can be called at any time before shut_down(). All work can be added at the beginning, and then the results gathered, or these can be interleaved: add a few jobs, grab the results of one of them, add a few more, grab more results, etc.

Note: Jobs are not guaranteed to be processed in the order they're added. This is because they are farmed out to multiple workers running concurrently.

$bw->add_work({data => "my data"}, {data => "more stuff"}, ...);

pending()

This simple function returns a true value if there are jobs that have been submitted for which the results have not yet been retrieved.

Note: This says nothing about the readiness of the results. Just that at some point, now or in the future, the results will be available for collection.

while ($bw->pending()) { }

get_result()

Requests the next single available job result from the Boss' result queue. Returns the return value of the work_handler. If there is a result_handler defined, it's called here, and the return value of this function is returned instead. Depending on what your work_handler, or result_handler, does, it may not be interesting to capture this result.

By default, get_result() is a blocking call. If there are no completed job results available, main application processing will stop here and wait.

my $href = $bw->get_result();

If you want nonblocking behavior:

my $href = $bw->get_result( blocking => 0 );
-OR-
my $href = $bw->get_result_nb();

In this case, if the call would block, because there is no result to retrieve, it returns immediately, returning undef.

shut_down()

Tells the Boss and all Workers to exit. All results should have been retrieved via get_result() prior to calling shut_down(). If shut_down() is called earlier, the queue *will* be processed, but depending on timing the subsequent calls to get_result() may fail if the boss has already written all result data into the socket buffer and exited.

$bw->shut_down();

If you just want the Boss and Workers to go away, and don't care about work in progress, use:

$bw->shut_down( force => 1 );

SEE ALSO

Parallel::Fork::BossWorkerAsync received much inspiration from the fine Parallel::Fork::BossWorker. The main difference is that BossWorkerAsync introduces the Boss as a separate process, a bi-directional multiplexing, listening, queueing, server. This allows the calling process much more freedom in interacting with, or ignoring, the Boss.

BUGS

Please report bugs to jvannucci@cpan.org.

Forked processes and threads don't mix well. It's a good idea to construct Parallel::Fork::BossWorkerAsync before multiple threads are created.

I have no idea if this module will work on Windows.

CREDITS

Many thanks to Jeff Rodriguez for his module Parallel::Fork::BossWorker.

COPYRIGHT AND LICENSE

Copyright (C) 2009 by joe vannucci, <jvannucci@cpan.org>

All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 719:

You forgot a '=back' before '=head2'