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
|
package Minion::Command::minion::job;
use Mojo::Base 'Mojolicious::Command';
use Mojo::JSON 'decode_json';
use Mojo::Util qw(dumper getopt tablify);
has description => 'Manage Minion jobs';
has usage => sub { shift->extract_usage };
sub run {
my ($self, @args) = @_;
my ($args, $opts) = ([], {});
getopt \@args,
'A|attempts=i' => \$opts->{attempts},
'a|args=s' => sub { $args = decode_json($_[1]) },
'b|broadcast=s' => (\my $command),
'd|delay=i' => \$opts->{delay},
'e|enqueue=s' => \my $enqueue,
'f|foreground' => \my $foreground,
'H|history' => \my $history,
'L|locks' => \my $locks,
'l|limit=i' => \(my $limit = 100),
'o|offset=i' => \(my $offset = 0),
'P|parent=s' => sub { push @{$opts->{parents}}, $_[1] },
'p|priority=i' => \$opts->{priority},
'q|queue=s' => sub { push @{$opts->{queues}}, $opts->{queue} = $_[1] },
'R|retry' => \my $retry,
'remove' => \my $remove,
'S|state=s' => sub { push @{$opts->{states}}, $_[1] },
's|stats' => \my $stats,
't|task=s' => sub { push @{$opts->{tasks}}, $_[1] },
'U|unlock=s' => \my $unlock,
'w|workers' => \my $workers;
# Worker remote control command
my $minion = $self->app->minion;
return $minion->backend->broadcast($command, $args, \@args) if $command;
# Enqueue
return say $minion->enqueue($enqueue, $args, $opts) if $enqueue;
# Show stats
return $self->_stats if $stats;
# Show history
return print dumper $minion->history if $history;
# Locks
return $minion->unlock($unlock) if $unlock;
return $self->_list_locks($offset, $limit, @args ? {names => \@args} : ())
if $locks;
# Workers
my $id = @args ? shift @args : undef;
return $id ? $self->_worker($id) : $self->_list_workers($offset, $limit)
if $workers;
# List jobs
return $self->_list_jobs($offset, $limit, $opts) unless defined $id;
die "Job does not exist.\n" unless my $job = $minion->job($id);
# Remove job
return $job->remove || die "Job is active.\n" if $remove;
# Retry job
return $job->retry($opts) || die "Job is active.\n" if $retry;
# Perform job in foreground
return $minion->foreground($id) || die "Job is not ready.\n" if $foreground;
# Job info
print dumper Minion::_datetime($job->info);
}
sub _list_jobs {
my $jobs = shift->app->minion->backend->list_jobs(@_)->{jobs};
print tablify [map { [@$_{qw(id state queue task)}] } @$jobs];
}
sub _list_locks {
my $locks = shift->app->minion->backend->list_locks(@_)->{locks};
@$locks = map { Minion::_datetime($_) } @$locks;
print tablify [map { [@$_{qw(name expires)}] } @$locks];
}
sub _list_workers {
my $workers = shift->app->minion->backend->list_workers(@_)->{workers};
my @workers = map { [$_->{id}, $_->{host} . ':' . $_->{pid}] } @$workers;
print tablify \@workers;
}
sub _stats { print dumper shift->app->minion->stats }
sub _worker {
my $worker = shift->app->minion->backend->list_workers(0, 1, {ids => [shift]})
->{workers}[0];
die "Worker does not exist.\n" unless $worker;
print dumper Minion::_datetime($worker);
}
1;
=encoding utf8
=head1 NAME
Minion::Command::minion::job - Minion job command
=head1 SYNOPSIS
Usage: APPLICATION minion job [OPTIONS] [IDS]
./myapp.pl minion job
./myapp.pl minion job 10023
./myapp.pl minion job -w
./myapp.pl minion job -w 23
./myapp.pl minion job -s
./myapp.pl minion job -f 10023
./myapp.pl minion job -q important -t foo -t bar -S inactive
./myapp.pl minion job -e foo -a '[23, "bar"]'
./myapp.pl minion job -e foo -P 10023 -P 10024 -p 5 -q important
./myapp.pl minion job -R -d 10 10023
./myapp.pl minion job --remove 10023
./myapp.pl minion job -L
./myapp.pl minion job -L some_lock some_other_lock
./myapp.pl minion job -b jobs -a '[12]'
./myapp.pl minion job -b jobs -a '[12]' 23 24 25
Options:
-A, --attempts <number> Number of times performing this new job will be
attempted, defaults to 1
-a, --args <JSON array> Arguments for new job or worker remote control
command in JSON format
-b, --broadcast <command> Broadcast remote control command to one or more
workers
-d, --delay <seconds> Delay new job for this many seconds
-e, --enqueue <task> New job to be enqueued
-f, --foreground Retry job in "minion_foreground" queue and
perform it right away in the foreground (very
useful for debugging)
-H, --history Show queue history
-h, --help Show this summary of available options
--home <path> Path to home directory of your application,
defaults to the value of MOJO_HOME or
auto-detection
-L, --locks List active named locks
-l, --limit <number> Number of jobs/workers to show when listing
them, defaults to 100
-m, --mode <name> Operating mode for your application, defaults to
the value of MOJO_MODE/PLACK_ENV or
"development"
-o, --offset <number> Number of jobs/workers to skip when listing
them, defaults to 0
-P, --parent <id> One or more jobs the new job depends on
-p, --priority <number> Priority of new job, defaults to 0
-q, --queue <name> Queue to put new job in, defaults to "default",
or list only jobs in these queues
-R, --retry Retry job
--remove Remove job
-S, --state <name> List only jobs in these states
-s, --stats Show queue statistics
-t, --task <name> List only jobs for these tasks
-U, --unlock <name> Release named lock
-w, --workers List workers instead of jobs, or show
information for a specific worker
=head1 DESCRIPTION
L<Minion::Command::minion::job> manages the L<Minion> job queue.
=head1 ATTRIBUTES
L<Minion::Command::minion::job> inherits all attributes from
L<Mojolicious::Command> and implements the following new ones.
=head2 description
my $description = $job->description;
$job = $job->description('Foo');
Short description of this command, used for the command list.
=head2 usage
my $usage = $job->usage;
$job = $job->usage('Foo');
Usage information for this command, used for the help screen.
=head1 METHODS
L<Minion::Command::minion::job> inherits all methods from
L<Mojolicious::Command> and implements the following new ones.
=head2 run
$job->run(@ARGV);
Run this command.
=head1 SEE ALSO
L<Minion>, L<Mojolicious::Guides>, L<https://mojolicious.org>.
=cut
|