1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
|
package Minion::Worker;
use Mojo::Base 'Mojo::EventEmitter';
use Carp qw(croak);
use Mojo::Util qw(steady_time);
has [qw(commands status)] => sub { {} };
has [qw(id minion)];
sub add_command { $_[0]->commands->{$_[1]} = $_[2] and return $_[0] }
sub dequeue {
my ($self, $wait, $options) = @_;
# Worker not registered
return undef unless my $id = $self->id;
my $minion = $self->minion;
return undef unless my $job = $minion->backend->dequeue($id, $wait, $options);
$job = $minion->class_for_task($job->{task})
->new(args => $job->{args}, id => $job->{id}, minion => $minion, retries => $job->{retries}, task => $job->{task});
$self->emit(dequeue => $job);
return $job;
}
sub info { $_[0]->minion->backend->list_workers(0, 1, {ids => [$_[0]->id]})->{workers}[0] }
sub new {
my $self = shift->SUPER::new(@_);
$self->on(busy => sub { sleep 1 });
return $self;
}
sub process_commands {
my $self = shift;
for my $command (@{$self->minion->backend->receive($self->id)}) {
next unless my $cb = $self->commands->{shift @$command};
$self->$cb(@$command);
}
return $self;
}
sub register {
my $self = shift;
my $status = {status => $self->status};
return $self->id($self->minion->backend->register_worker($self->id, $status));
}
sub run {
my $self = shift;
my $status = $self->status;
$status->{command_interval} //= 10;
$status->{dequeue_timeout} //= 5;
$status->{heartbeat_interval} //= 300;
$status->{jobs} //= 4;
$status->{queues} ||= ['default'];
$status->{performed} //= 0;
$status->{repair_interval} //= 21600;
$status->{repair_interval} -= int rand $status->{repair_interval} / 2;
$status->{spare} //= 1;
$status->{spare_min_priority} //= 1;
# Reset event loop
Mojo::IOLoop->reset;
local $SIG{CHLD} = sub { };
local $SIG{INT} = local $SIG{TERM} = sub { $self->{finished}++ };
local $SIG{QUIT} = sub {
++$self->{finished} and kill 'KILL', map { $_->pid } @{$self->{jobs}};
};
# Remote control commands need to validate arguments carefully
my $commands = $self->commands;
local $commands->{jobs} = sub { $status->{jobs} = $_[1] if ($_[1] // '') =~ /^\d+$/ };
local $commands->{kill} = \&_kill;
local $commands->{stop} = sub { $self->_kill('KILL', $_[1]) };
eval { $self->_work until $self->{finished} && !@{$self->{jobs}} };
my $err = $@;
$self->unregister;
croak $err if $err;
}
sub unregister {
my $self = shift;
$self->minion->backend->unregister_worker(delete $self->{id});
return $self;
}
sub _kill {
my ($self, $signal, $id) = (shift, shift // '', shift // '');
return unless grep { $signal eq $_ } qw(INT TERM KILL USR1 USR2);
$_->kill($signal) for grep { $_->id eq $id } @{$self->{jobs}};
}
sub _work {
my $self = shift;
# Send heartbeats in regular intervals
my $status = $self->status;
$self->{last_heartbeat} ||= -$status->{heartbeat_interval};
$self->register and $self->{last_heartbeat} = steady_time
if ($self->{last_heartbeat} + $status->{heartbeat_interval}) < steady_time;
# Process worker remote control commands in regular intervals
$self->{last_command} ||= 0;
$self->process_commands and $self->{last_command} = steady_time
if ($self->{last_command} + $status->{command_interval}) < steady_time;
# Repair in regular intervals (randomize to avoid congestion)
$self->{last_repair} ||= 0;
if (($self->{last_repair} + $status->{repair_interval}) < steady_time) {
$self->minion->repair;
$self->{last_repair} = steady_time;
}
# Check if jobs are finished
my $jobs = $self->{jobs} ||= [];
@$jobs = map { $_->is_finished && ++$status->{performed} ? () : $_ } @$jobs;
# Job limit has been reached or worker is stopping
my @extra;
if ($self->{finished} || ($status->{jobs} + $status->{spare}) <= @$jobs) { return $self->emit('busy') }
elsif ($status->{jobs} <= @$jobs) { @extra = (min_priority => $status->{spare_min_priority}) }
# Try to get more jobs
my ($max, $queues) = @{$status}{qw(dequeue_timeout queues)};
my $job = $self->emit('wait')->dequeue($max => {queues => $queues, @extra});
push @$jobs, $job->start if $job;
}
1;
=encoding utf8
=head1 NAME
Minion::Worker - Minion worker
=head1 SYNOPSIS
use Minion::Worker;
my $worker = Minion::Worker->new(minion => $minion);
=head1 DESCRIPTION
L<Minion::Worker> performs jobs for L<Minion>.
=head1 WORKER SIGNALS
The L<Minion::Worker> process can be controlled at runtime with the following signals.
=head2 INT, TERM
Stop gracefully after finishing the current jobs.
=head2 QUIT
Stop immediately without finishing the current jobs.
=head1 JOB SIGNALS
The job processes spawned by the L<Minion::Worker> process can be controlled at runtime with the following signals.
=head2 INT, TERM
This signal starts out with the operating system default and allows for jobs to install a custom signal handler to stop
gracefully.
=head2 USR1, USR2
These signals start out being ignored and allow for jobs to install custom signal handlers.
=head1 EVENTS
L<Minion::Worker> inherits all events from L<Mojo::EventEmitter> and can emit the following new ones.
=head2 busy
$worker->on(busy => sub ($worker) {
...
});
Emitted in the worker process when it is performing the maximum number of jobs in parallel.
$worker->on(busy => sub ($worker) {
my $max = $worker->status->{jobs};
say "Performing $max jobs.";
});
=head2 dequeue
$worker->on(dequeue => sub ($worker, $job) {
...
});
Emitted in the worker process after a job has been dequeued.
$worker->on(dequeue => sub ($worker, $job) {
my $id = $job->id;
say "Job $id has been dequeued.";
});
=head2 wait
$worker->on(wait => sub ($worker) {
...
});
Emitted in the worker process before it tries to dequeue a job.
$worker->on(wait => sub ($worker) {
my $max = $worker->status->{dequeue_timeout};
say "Waiting up to $max seconds for a new job.";
});
=head1 ATTRIBUTES
L<Minion::Worker> implements the following attributes.
=head2 commands
my $commands = $worker->commands;
$worker = $worker->commands({jobs => sub {...}});
Registered worker remote control commands.
=head2 id
my $id = $worker->id;
$worker = $worker->id($id);
Worker id.
=head2 minion
my $minion = $worker->minion;
$worker = $worker->minion(Minion->new);
L<Minion> object this worker belongs to.
=head2 status
my $status = $worker->status;
$worker = $worker->status({queues => ['default', 'important']);
Status information to configure workers started with L</"run"> and to share every time L</"register"> is called.
=head1 METHODS
L<Minion::Worker> inherits all methods from L<Mojo::EventEmitter> and implements the following new ones.
=head2 add_command
$worker = $worker->add_command(jobs => sub {...});
Register a worker remote control command.
$worker->add_command(foo => sub ($worker, @args) {
...
});
=head2 dequeue
my $job = $worker->dequeue(0.5);
my $job = $worker->dequeue(0.5 => {queues => ['important']});
Wait a given amount of time in seconds for a job, dequeue L<Minion::Job> object and transition from C<inactive> to
C<active> state, or return C<undef> if queues were empty.
These options are currently available:
=over 2
=item id
id => '10023'
Dequeue a specific job.
=item min_priority
min_priority => 3
Do not dequeue jobs with a lower priority.
=item queues
queues => ['important']
One or more queues to dequeue jobs from, defaults to C<default>.
=back
=head2 info
my $info = $worker->info;
Get worker information.
# Check worker host
my $host = $worker->info->{host};
These fields are currently available:
=over 2
=item host
host => 'localhost'
Worker host.
=item jobs
jobs => ['10023', '10024', '10025', '10029']
Ids of jobs the worker is currently processing.
=item notified
notified => 784111777
Epoch time worker sent the last heartbeat.
=item pid
pid => 12345
Process id of worker.
=item started
started => 784111777
Epoch time worker was started.
=item status
status => {queues => ['default', 'important']}
Hash reference with whatever status information the worker would like to share.
=back
=head2 new
my $worker = Minion::Worker->new;
my $worker = Minion::Worker->new(status => {foo => 'bar'});
my $worker = Minion::Worker->new({status => {foo => 'bar'}});
Construct a new L<Minion::Worker> object and subscribe to L</"busy"> event with default handler that sleeps for one
second.
=head2 process_commands
$worker = $worker->process_commands;
Process worker remote control commands.
=head2 register
$worker = $worker->register;
Register worker or send heartbeat to show that this worker is still alive.
=head2 run
$worker->run;
Run worker and wait for L</"WORKER SIGNALS">.
These L</"status"> options are currently available:
=over 2
=item command_interval
command_interval => 20
Worker remote control command interval, defaults to C<10>.
=item dequeue_timeout
dequeue_timeout => 5
Maximum amount time in seconds to wait for a job, defaults to C<5>.
=item heartbeat_interval
heartbeat_interval => 60
Heartbeat interval, defaults to C<300>.
=item jobs
jobs => 12
Maximum number of jobs to perform parallel in forked worker processes (not including spare processes), defaults to C<4>.
=item queues
queues => ['test']
One or more queues to get jobs from, defaults to C<default>.
=item repair_interval
repair_interval => 3600
Repair interval, up to half of this value can be subtracted randomly to make sure not all workers repair at the same
time, defaults to C<21600> (6 hours).
=item spare
spare => 2
Number of spare worker processes to reserve for high priority jobs, defaults to C<1>.
=item spare_min_priority
spare_min_priority => 7
Minimum priority of jobs to use spare worker processes for, defaults to C<1>.
=back
These remote control L</"commands"> are currently available:
=over 2
=item jobs
$minion->broadcast('jobs', [10]);
$minion->broadcast('jobs', [10], [$worker_id]);
Instruct one or more workers to change the number of jobs to perform concurrently. Setting this value to C<0> will
effectively pause the worker. That means all current jobs will be finished, but no new ones accepted, until the number
is increased again.
=item kill
$minion->broadcast('kill', ['INT', 10025]);
$minion->broadcast('kill', ['INT', 10025], [$worker_id]);
Instruct one or more workers to send a signal to a job that is currently being performed. This command will be ignored
by workers that do not have a job matching the id. That means it is safe to broadcast this command to all workers.
=item stop
$minion->broadcast('stop', [10025]);
$minion->broadcast('stop', [10025], [$worker_id]);
Instruct one or more workers to stop a job that is currently being performed immediately. This command will be ignored
by workers that do not have a job matching the id. That means it is safe to broadcast this command to all workers.
=back
=head2 unregister
$worker = $worker->unregister;
Unregister worker.
=head1 SEE ALSO
L<Minion>, L<https://minion.pm>, L<Mojolicious::Guides>, L<https://mojolicious.org>.
=cut
|