Merge "Use standard function name for constructor."
[lhc/web/wiklou.git] / maintenance / runJobs.php
1 <?php
2 /**
3 * Run pending jobs.
4 *
5 * Options:
6 * --maxjobs <num> (default 10000)
7 * --type <job_cmd>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 * @ingroup Maintenance
26 */
27
28 require_once( __DIR__ . '/Maintenance.php' );
29
30 /**
31 * Maintenance script that runs pending jobs.
32 *
33 * @ingroup Maintenance
34 */
35 class RunJobs extends Maintenance {
36 public function __construct() {
37 parent::__construct();
38 $this->mDescription = "Run pending jobs";
39 $this->addOption( 'maxjobs', 'Maximum number of jobs to run', false, true );
40 $this->addOption( 'maxtime', 'Maximum amount of wall-clock time', false, true );
41 $this->addOption( 'type', 'Type of job to run', false, true );
42 $this->addOption( 'procs', 'Number of processes to use', false, true );
43 }
44
45 public function memoryLimit() {
46 if ( $this->hasOption( 'memory-limit' ) ) {
47 return parent::memoryLimit();
48 }
49 // Don't eat all memory on the machine if we get a bad job.
50 return "150M";
51 }
52
53 public function execute() {
54 global $wgTitle;
55 if ( $this->hasOption( 'procs' ) ) {
56 $procs = intval( $this->getOption( 'procs' ) );
57 if ( $procs < 1 || $procs > 1000 ) {
58 $this->error( "Invalid argument to --procs", true );
59 }
60 $fc = new ForkController( $procs );
61 if ( $fc->start() != 'child' ) {
62 exit( 0 );
63 }
64 }
65 $maxJobs = $this->getOption( 'maxjobs', false );
66 $maxTime = $this->getOption( 'maxtime', false );
67 $startTime = time();
68 $type = $this->getOption( 'type', false );
69 $wgTitle = Title::newFromText( 'RunJobs.php' );
70 $dbw = wfGetDB( DB_MASTER );
71 $n = 0;
72
73 if ( $type === false ) {
74 $conds = Job::defaultQueueConditions( );
75 } else {
76 $conds = array( 'job_cmd' => $type );
77 }
78
79 while ( $dbw->selectField( 'job', 'job_id', $conds, 'runJobs.php' ) ) {
80 $offset = 0;
81 for ( ; ; ) {
82 $job = !$type ? Job::pop( $offset ) : Job::pop_type( $type );
83
84 if ( !$job ) {
85 break;
86 }
87
88 wfWaitForSlaves();
89 $t = microtime( true );
90 $offset = $job->id;
91 $this->runJobsLog( $job->toString() . " STARTING" );
92 $status = $job->run();
93 $t = microtime( true ) - $t;
94 $timeMs = intval( $t * 1000 );
95 if ( !$status ) {
96 $this->runJobsLog( $job->toString() . " t=$timeMs error={$job->error}" );
97 } else {
98 $this->runJobsLog( $job->toString() . " t=$timeMs good" );
99 }
100
101 if ( $maxJobs && ++$n > $maxJobs ) {
102 break 2;
103 }
104 if ( $maxTime && time() - $startTime > $maxTime ) {
105 break 2;
106 }
107 }
108 }
109 }
110
111 /**
112 * Log the job message
113 * @param $msg String The message to log
114 */
115 private function runJobsLog( $msg ) {
116 $this->output( wfTimestamp( TS_DB ) . " $msg\n" );
117 wfDebugLog( 'runJobs', $msg );
118 }
119 }
120
121 $maintClass = "RunJobs";
122 require_once( RUN_MAINTENANCE_IF_MAIN );