3 * @defgroup JobQueue JobQueue
6 if ( !defined( 'MEDIAWIKI' ) ) {
7 die( "This file is part of MediaWiki, it is not a valid entry point\n" );
11 * Class to both describe a background job and handle jobs.
23 /*-------------------------------------------------------------------------
25 *------------------------------------------------------------------------*/
29 * @return boolean success
31 abstract function run();
33 /*-------------------------------------------------------------------------
35 *------------------------------------------------------------------------*/
38 * @deprecated use LinksUpdate::queueRecursiveJobs()
41 * static function queueLinksJobs( $titles ) {}
45 * Pop a job of a certain type. This tries less hard than pop() to
46 * actually find a job; it may be adversely affected by concurrent job
49 static function pop_type($type) {
50 wfProfilein( __METHOD__
);
52 $dbw = wfGetDB( DB_MASTER
);
55 $row = $dbw->selectRow( 'job', '*', array( 'job_cmd' => $type ), __METHOD__
,
56 array( 'LIMIT' => 1 ));
59 wfProfileOut( __METHOD__
);
63 /* Ensure we "own" this row */
64 $dbw->delete( 'job', array( 'job_id' => $row->job_id
), __METHOD__
);
65 $affected = $dbw->affectedRows();
68 wfProfileOut( __METHOD__
);
72 $namespace = $row->job_namespace
;
73 $dbkey = $row->job_title
;
74 $title = Title
::makeTitleSafe( $namespace, $dbkey );
75 $job = Job
::factory( $row->job_cmd
, $title, Job
::extractBlob( $row->job_params
), $row->job_id
);
77 $dbw->delete( 'job', $job->insertFields(), __METHOD__
);
78 $dbw->immediateCommit();
80 wfProfileOut( __METHOD__
);
85 * Pop a job off the front of the queue
87 * @param $offset Number of jobs to skip
88 * @return Job or false if there's no jobs
90 static function pop($offset=0) {
91 wfProfileIn( __METHOD__
);
93 $dbr = wfGetDB( DB_SLAVE
);
95 /* Get a job from the slave, start with an offset,
96 scan full set afterwards, avoid hitting purged rows
98 NB: If random fetch previously was used, offset
99 will always be ahead of few entries
102 $row = $dbr->selectRow( 'job', '*', "job_id >= ${offset}", __METHOD__
,
103 array( 'ORDER BY' => 'job_id', 'LIMIT' => 1 ));
105 // Refetching without offset is needed as some of job IDs could have had delayed commits
106 // and have lower IDs than jobs already executed, blame concurrency :)
108 if ( $row === false) {
110 $row = $dbr->selectRow( 'job', '*', '', __METHOD__
,
111 array( 'ORDER BY' => 'job_id', 'LIMIT' => 1 ));
113 if ($row === false ) {
114 wfProfileOut( __METHOD__
);
118 $offset = $row->job_id
;
120 // Try to delete it from the master
121 $dbw = wfGetDB( DB_MASTER
);
122 $dbw->delete( 'job', array( 'job_id' => $row->job_id
), __METHOD__
);
123 $affected = $dbw->affectedRows();
124 $dbw->immediateCommit();
127 // Failed, someone else beat us to it
128 // Try getting a random row
129 $row = $dbw->selectRow( 'job', array( 'MIN(job_id) as minjob',
130 'MAX(job_id) as maxjob' ), '1=1', __METHOD__
);
131 if ( $row === false ||
is_null( $row->minjob
) ||
is_null( $row->maxjob
) ) {
133 wfProfileOut( __METHOD__
);
136 // Get the random row
137 $row = $dbw->selectRow( 'job', '*',
138 'job_id >= ' . mt_rand( $row->minjob
, $row->maxjob
), __METHOD__
);
139 if ( $row === false ) {
140 // Random job gone before we got the chance to select it
142 wfProfileOut( __METHOD__
);
145 // Delete the random row
146 $dbw->delete( 'job', array( 'job_id' => $row->job_id
), __METHOD__
);
147 $affected = $dbw->affectedRows();
148 $dbw->immediateCommit();
151 // Random job gone before we exclusively deleted it
153 wfProfileOut( __METHOD__
);
158 // If execution got to here, there's a row in $row that has been deleted from the database
159 // by this thread. Hence the concurrent pop was successful.
160 $namespace = $row->job_namespace
;
161 $dbkey = $row->job_title
;
162 $title = Title
::makeTitleSafe( $namespace, $dbkey );
163 $job = Job
::factory( $row->job_cmd
, $title, Job
::extractBlob( $row->job_params
), $row->job_id
);
165 // Remove any duplicates it may have later in the queue
166 // Deadlock prone section
168 $dbw->delete( 'job', $job->insertFields(), __METHOD__
);
171 wfProfileOut( __METHOD__
);
176 * Create the appropriate object to handle a specific job
178 * @param $command String: Job command
179 * @param $title Title: Associated title
180 * @param $params Array: Job parameters
181 * @param $id Int: Job identifier
184 static function factory( $command, $title, $params = false, $id = 0 ) {
185 global $wgJobClasses;
186 if( isset( $wgJobClasses[$command] ) ) {
187 $class = $wgJobClasses[$command];
188 return new $class( $title, $params, $id );
190 throw new MWException( "Invalid job command `{$command}`" );
193 static function makeBlob( $params ) {
194 if ( $params !== false ) {
195 return serialize( $params );
201 static function extractBlob( $blob ) {
202 if ( (string)$blob !== '' ) {
203 return unserialize( $blob );
210 * Batch-insert a group of jobs into the queue.
211 * This will be wrapped in a transaction with a forced commit.
213 * This may add duplicate at insert time, but they will be
214 * removed later on, when the first one is popped.
216 * @param $jobs array of Job objects
218 static function batchInsert( $jobs ) {
219 if( !count( $jobs ) ) {
222 $dbw = wfGetDB( DB_MASTER
);
224 foreach( $jobs as $job ) {
225 $rows[] = $job->insertFields();
226 if ( count( $rows ) >= 50 ) {
227 # Do a small transaction to avoid slave lag
229 $dbw->insert( 'job', $rows, __METHOD__
, 'IGNORE' );
236 $dbw->insert( 'job', $rows, __METHOD__
, 'IGNORE' );
241 /*-------------------------------------------------------------------------
242 * Non-static functions
243 *------------------------------------------------------------------------*/
245 function __construct( $command, $title, $params = false, $id = 0 ) {
246 $this->command
= $command;
247 $this->title
= $title;
248 $this->params
= $params;
251 // A bit of premature generalisation
252 // Oh well, the whole class is premature generalisation really
253 $this->removeDuplicates
= true;
257 * Insert a single job into the queue.
260 $fields = $this->insertFields();
262 $dbw = wfGetDB( DB_MASTER
);
264 if ( $this->removeDuplicates
) {
265 $res = $dbw->select( 'job', array( '1' ), $fields, __METHOD__
);
266 if ( $dbw->numRows( $res ) ) {
270 $fields['job_id'] = $dbw->nextSequenceValue( 'job_job_id_seq' );
271 $dbw->insert( 'job', $fields, __METHOD__
);
274 protected function insertFields() {
276 'job_cmd' => $this->command
,
277 'job_namespace' => $this->title
->getNamespace(),
278 'job_title' => $this->title
->getDBkey(),
279 'job_params' => Job
::makeBlob( $this->params
)
283 function toString() {
285 if ( $this->params
) {
286 foreach ( $this->params
as $key => $value ) {
287 if ( $paramString != '' ) {
290 $paramString .= "$key=$value";
294 if ( is_object( $this->title
) ) {
295 $s = "{$this->command} " . $this->title
->getPrefixedDBkey();
296 if ( $paramString !== '' ) {
297 $s .= ' ' . $paramString;
301 return "{$this->command} $paramString";
305 protected function setLastError( $error ) {
306 $this->error
= $error;
309 function getLastError() {