Merge "Don't modify $wgHooks on language object construction"
[lhc/web/wiklou.git] / includes / jobqueue / JobQueueDB.php
1 <?php
2 /**
3 * Database-backed job queue code.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @author Aaron Schulz
22 */
23
24 /**
25 * Class to handle job queues stored in the DB
26 *
27 * @ingroup JobQueue
28 * @since 1.21
29 */
30 class JobQueueDB extends JobQueue {
31 const CACHE_TTL_SHORT = 30; // integer; seconds to cache info without re-validating
32 const MAX_AGE_PRUNE = 604800; // integer; seconds a job can live once claimed
33 const MAX_JOB_RANDOM = 2147483647; // integer; 2^31 - 1, used for job_random
34 const MAX_OFFSET = 255; // integer; maximum number of rows to skip
35
36 /** @var WANObjectCache */
37 protected $cache;
38
39 /** @var bool|string Name of an external DB cluster. False if not set */
40 protected $cluster = false;
41
42 /**
43 * Additional parameters include:
44 * - cluster : The name of an external cluster registered via LBFactory.
45 * If not specified, the primary DB cluster for the wiki will be used.
46 * This can be overridden with a custom cluster so that DB handles will
47 * be retrieved via LBFactory::getExternalLB() and getConnection().
48 * @param array $params
49 */
50 protected function __construct( array $params ) {
51 parent::__construct( $params );
52
53 $this->cluster = isset( $params['cluster'] ) ? $params['cluster'] : false;
54 $this->cache = ObjectCache::getMainWANInstance();
55 }
56
57 protected function supportedOrders() {
58 return array( 'random', 'timestamp', 'fifo' );
59 }
60
61 protected function optimalOrder() {
62 return 'random';
63 }
64
65 /**
66 * @see JobQueue::doIsEmpty()
67 * @return bool
68 */
69 protected function doIsEmpty() {
70 $dbr = $this->getSlaveDB();
71 try {
72 $found = $dbr->selectField( // unclaimed job
73 'job', '1', array( 'job_cmd' => $this->type, 'job_token' => '' ), __METHOD__
74 );
75 } catch ( DBError $e ) {
76 $this->throwDBException( $e );
77 }
78
79 return !$found;
80 }
81
82 /**
83 * @see JobQueue::doGetSize()
84 * @return int
85 */
86 protected function doGetSize() {
87 $key = $this->getCacheKey( 'size' );
88
89 $size = $this->cache->get( $key );
90 if ( is_int( $size ) ) {
91 return $size;
92 }
93
94 try {
95 $dbr = $this->getSlaveDB();
96 $size = (int)$dbr->selectField( 'job', 'COUNT(*)',
97 array( 'job_cmd' => $this->type, 'job_token' => '' ),
98 __METHOD__
99 );
100 } catch ( DBError $e ) {
101 $this->throwDBException( $e );
102 }
103 $this->cache->set( $key, $size, self::CACHE_TTL_SHORT );
104
105 return $size;
106 }
107
108 /**
109 * @see JobQueue::doGetAcquiredCount()
110 * @return int
111 */
112 protected function doGetAcquiredCount() {
113 if ( $this->claimTTL <= 0 ) {
114 return 0; // no acknowledgements
115 }
116
117 $key = $this->getCacheKey( 'acquiredcount' );
118
119 $count = $this->cache->get( $key );
120 if ( is_int( $count ) ) {
121 return $count;
122 }
123
124 $dbr = $this->getSlaveDB();
125 try {
126 $count = (int)$dbr->selectField( 'job', 'COUNT(*)',
127 array( 'job_cmd' => $this->type, "job_token != {$dbr->addQuotes( '' )}" ),
128 __METHOD__
129 );
130 } catch ( DBError $e ) {
131 $this->throwDBException( $e );
132 }
133 $this->cache->set( $key, $count, self::CACHE_TTL_SHORT );
134
135 return $count;
136 }
137
138 /**
139 * @see JobQueue::doGetAbandonedCount()
140 * @return int
141 * @throws MWException
142 */
143 protected function doGetAbandonedCount() {
144 if ( $this->claimTTL <= 0 ) {
145 return 0; // no acknowledgements
146 }
147
148 $key = $this->getCacheKey( 'abandonedcount' );
149
150 $count = $this->cache->get( $key );
151 if ( is_int( $count ) ) {
152 return $count;
153 }
154
155 $dbr = $this->getSlaveDB();
156 try {
157 $count = (int)$dbr->selectField( 'job', 'COUNT(*)',
158 array(
159 'job_cmd' => $this->type,
160 "job_token != {$dbr->addQuotes( '' )}",
161 "job_attempts >= " . $dbr->addQuotes( $this->maxTries )
162 ),
163 __METHOD__
164 );
165 } catch ( DBError $e ) {
166 $this->throwDBException( $e );
167 }
168
169 $this->cache->set( $key, $count, self::CACHE_TTL_SHORT );
170
171 return $count;
172 }
173
174 /**
175 * @see JobQueue::doBatchPush()
176 * @param IJobSpecification[] $jobs
177 * @param int $flags
178 * @throws DBError|Exception
179 * @return void
180 */
181 protected function doBatchPush( array $jobs, $flags ) {
182 $dbw = $this->getMasterDB();
183
184 $method = __METHOD__;
185 $dbw->onTransactionIdle(
186 function () use ( $dbw, $jobs, $flags, $method ) {
187 $this->doBatchPushInternal( $dbw, $jobs, $flags, $method );
188 }
189 );
190 }
191
192 /**
193 * This function should *not* be called outside of JobQueueDB
194 *
195 * @param IDatabase $dbw
196 * @param IJobSpecification[] $jobs
197 * @param int $flags
198 * @param string $method
199 * @throws DBError
200 * @return void
201 */
202 public function doBatchPushInternal( IDatabase $dbw, array $jobs, $flags, $method ) {
203 if ( !count( $jobs ) ) {
204 return;
205 }
206
207 $rowSet = array(); // (sha1 => job) map for jobs that are de-duplicated
208 $rowList = array(); // list of jobs for jobs that are not de-duplicated
209 foreach ( $jobs as $job ) {
210 $row = $this->insertFields( $job );
211 if ( $job->ignoreDuplicates() ) {
212 $rowSet[$row['job_sha1']] = $row;
213 } else {
214 $rowList[] = $row;
215 }
216 }
217
218 if ( $flags & self::QOS_ATOMIC ) {
219 $dbw->startAtomic( $method ); // wrap all the job additions in one transaction
220 }
221 try {
222 // Strip out any duplicate jobs that are already in the queue...
223 if ( count( $rowSet ) ) {
224 $res = $dbw->select( 'job', 'job_sha1',
225 array(
226 // No job_type condition since it's part of the job_sha1 hash
227 'job_sha1' => array_keys( $rowSet ),
228 'job_token' => '' // unclaimed
229 ),
230 $method
231 );
232 foreach ( $res as $row ) {
233 wfDebug( "Job with hash '{$row->job_sha1}' is a duplicate.\n" );
234 unset( $rowSet[$row->job_sha1] ); // already enqueued
235 }
236 }
237 // Build the full list of job rows to insert
238 $rows = array_merge( $rowList, array_values( $rowSet ) );
239 // Insert the job rows in chunks to avoid slave lag...
240 foreach ( array_chunk( $rows, 50 ) as $rowBatch ) {
241 $dbw->insert( 'job', $rowBatch, $method );
242 }
243 JobQueue::incrStats( 'inserts', $this->type, count( $rows ) );
244 JobQueue::incrStats( 'dupe_inserts', $this->type,
245 count( $rowSet ) + count( $rowList ) - count( $rows )
246 );
247 } catch ( DBError $e ) {
248 if ( $flags & self::QOS_ATOMIC ) {
249 $dbw->rollback( $method );
250 }
251 throw $e;
252 }
253 if ( $flags & self::QOS_ATOMIC ) {
254 $dbw->endAtomic( $method );
255 }
256
257 return;
258 }
259
260 /**
261 * @see JobQueue::doPop()
262 * @return Job|bool
263 */
264 protected function doPop() {
265 $dbw = $this->getMasterDB();
266 try {
267 $dbw->commit( __METHOD__, 'flush' ); // flush existing transaction
268 $autoTrx = $dbw->getFlag( DBO_TRX ); // get current setting
269 $dbw->clearFlag( DBO_TRX ); // make each query its own transaction
270 $scopedReset = new ScopedCallback( function () use ( $dbw, $autoTrx ) {
271 $dbw->setFlag( $autoTrx ? DBO_TRX : 0 ); // restore old setting
272 } );
273
274 $uuid = wfRandomString( 32 ); // pop attempt
275 $job = false; // job popped off
276 do { // retry when our row is invalid or deleted as a duplicate
277 // Try to reserve a row in the DB...
278 if ( in_array( $this->order, array( 'fifo', 'timestamp' ) ) ) {
279 $row = $this->claimOldest( $uuid );
280 } else { // random first
281 $rand = mt_rand( 0, self::MAX_JOB_RANDOM ); // encourage concurrent UPDATEs
282 $gte = (bool)mt_rand( 0, 1 ); // find rows with rand before/after $rand
283 $row = $this->claimRandom( $uuid, $rand, $gte );
284 }
285 // Check if we found a row to reserve...
286 if ( !$row ) {
287 break; // nothing to do
288 }
289 JobQueue::incrStats( 'pops', $this->type );
290 // Get the job object from the row...
291 $title = Title::makeTitle( $row->job_namespace, $row->job_title );
292 $job = Job::factory( $row->job_cmd, $title,
293 self::extractBlob( $row->job_params ), $row->job_id );
294 $job->metadata['id'] = $row->job_id;
295 $job->metadata['timestamp'] = $row->job_timestamp;
296 break; // done
297 } while ( true );
298
299 if ( !$job || mt_rand( 0, 9 ) == 0 ) {
300 // Handled jobs that need to be recycled/deleted;
301 // any recycled jobs will be picked up next attempt
302 $this->recycleAndDeleteStaleJobs();
303 }
304 } catch ( DBError $e ) {
305 $this->throwDBException( $e );
306 }
307
308 return $job;
309 }
310
311 /**
312 * Reserve a row with a single UPDATE without holding row locks over RTTs...
313 *
314 * @param string $uuid 32 char hex string
315 * @param int $rand Random unsigned integer (31 bits)
316 * @param bool $gte Search for job_random >= $random (otherwise job_random <= $random)
317 * @return stdClass|bool Row|false
318 */
319 protected function claimRandom( $uuid, $rand, $gte ) {
320 $dbw = $this->getMasterDB();
321 // Check cache to see if the queue has <= OFFSET items
322 $tinyQueue = $this->cache->get( $this->getCacheKey( 'small' ) );
323
324 $row = false; // the row acquired
325 $invertedDirection = false; // whether one job_random direction was already scanned
326 // This uses a replication safe method for acquiring jobs. One could use UPDATE+LIMIT
327 // instead, but that either uses ORDER BY (in which case it deadlocks in MySQL) or is
328 // not replication safe. Due to http://bugs.mysql.com/bug.php?id=6980, subqueries cannot
329 // be used here with MySQL.
330 do {
331 if ( $tinyQueue ) { // queue has <= MAX_OFFSET rows
332 // For small queues, using OFFSET will overshoot and return no rows more often.
333 // Instead, this uses job_random to pick a row (possibly checking both directions).
334 $ineq = $gte ? '>=' : '<=';
335 $dir = $gte ? 'ASC' : 'DESC';
336 $row = $dbw->selectRow( 'job', self::selectFields(), // find a random job
337 array(
338 'job_cmd' => $this->type,
339 'job_token' => '', // unclaimed
340 "job_random {$ineq} {$dbw->addQuotes( $rand )}" ),
341 __METHOD__,
342 array( 'ORDER BY' => "job_random {$dir}" )
343 );
344 if ( !$row && !$invertedDirection ) {
345 $gte = !$gte;
346 $invertedDirection = true;
347 continue; // try the other direction
348 }
349 } else { // table *may* have >= MAX_OFFSET rows
350 // Bug 42614: "ORDER BY job_random" with a job_random inequality causes high CPU
351 // in MySQL if there are many rows for some reason. This uses a small OFFSET
352 // instead of job_random for reducing excess claim retries.
353 $row = $dbw->selectRow( 'job', self::selectFields(), // find a random job
354 array(
355 'job_cmd' => $this->type,
356 'job_token' => '', // unclaimed
357 ),
358 __METHOD__,
359 array( 'OFFSET' => mt_rand( 0, self::MAX_OFFSET ) )
360 );
361 if ( !$row ) {
362 $tinyQueue = true; // we know the queue must have <= MAX_OFFSET rows
363 $this->cache->set( $this->getCacheKey( 'small' ), 1, 30 );
364 continue; // use job_random
365 }
366 }
367
368 if ( $row ) { // claim the job
369 $dbw->update( 'job', // update by PK
370 array(
371 'job_token' => $uuid,
372 'job_token_timestamp' => $dbw->timestamp(),
373 'job_attempts = job_attempts+1' ),
374 array( 'job_cmd' => $this->type, 'job_id' => $row->job_id, 'job_token' => '' ),
375 __METHOD__
376 );
377 // This might get raced out by another runner when claiming the previously
378 // selected row. The use of job_random should minimize this problem, however.
379 if ( !$dbw->affectedRows() ) {
380 $row = false; // raced out
381 }
382 } else {
383 break; // nothing to do
384 }
385 } while ( !$row );
386
387 return $row;
388 }
389
390 /**
391 * Reserve a row with a single UPDATE without holding row locks over RTTs...
392 *
393 * @param string $uuid 32 char hex string
394 * @return stdClass|bool Row|false
395 */
396 protected function claimOldest( $uuid ) {
397 $dbw = $this->getMasterDB();
398
399 $row = false; // the row acquired
400 do {
401 if ( $dbw->getType() === 'mysql' ) {
402 // Per http://bugs.mysql.com/bug.php?id=6980, we can't use subqueries on the
403 // same table being changed in an UPDATE query in MySQL (gives Error: 1093).
404 // Oracle and Postgre have no such limitation. However, MySQL offers an
405 // alternative here by supporting ORDER BY + LIMIT for UPDATE queries.
406 $dbw->query( "UPDATE {$dbw->tableName( 'job' )} " .
407 "SET " .
408 "job_token = {$dbw->addQuotes( $uuid ) }, " .
409 "job_token_timestamp = {$dbw->addQuotes( $dbw->timestamp() )}, " .
410 "job_attempts = job_attempts+1 " .
411 "WHERE ( " .
412 "job_cmd = {$dbw->addQuotes( $this->type )} " .
413 "AND job_token = {$dbw->addQuotes( '' )} " .
414 ") ORDER BY job_id ASC LIMIT 1",
415 __METHOD__
416 );
417 } else {
418 // Use a subquery to find the job, within an UPDATE to claim it.
419 // This uses as much of the DB wrapper functions as possible.
420 $dbw->update( 'job',
421 array(
422 'job_token' => $uuid,
423 'job_token_timestamp' => $dbw->timestamp(),
424 'job_attempts = job_attempts+1' ),
425 array( 'job_id = (' .
426 $dbw->selectSQLText( 'job', 'job_id',
427 array( 'job_cmd' => $this->type, 'job_token' => '' ),
428 __METHOD__,
429 array( 'ORDER BY' => 'job_id ASC', 'LIMIT' => 1 ) ) .
430 ')'
431 ),
432 __METHOD__
433 );
434 }
435 // Fetch any row that we just reserved...
436 if ( $dbw->affectedRows() ) {
437 $row = $dbw->selectRow( 'job', self::selectFields(),
438 array( 'job_cmd' => $this->type, 'job_token' => $uuid ), __METHOD__
439 );
440 if ( !$row ) { // raced out by duplicate job removal
441 wfDebug( "Row deleted as duplicate by another process.\n" );
442 }
443 } else {
444 break; // nothing to do
445 }
446 } while ( !$row );
447
448 return $row;
449 }
450
451 /**
452 * @see JobQueue::doAck()
453 * @param Job $job
454 * @throws MWException
455 * @return Job|bool
456 */
457 protected function doAck( Job $job ) {
458 if ( !isset( $job->metadata['id'] ) ) {
459 throw new MWException( "Job of type '{$job->getType()}' has no ID." );
460 }
461
462 $dbw = $this->getMasterDB();
463 try {
464 $dbw->commit( __METHOD__, 'flush' ); // flush existing transaction
465 $autoTrx = $dbw->getFlag( DBO_TRX ); // get current setting
466 $dbw->clearFlag( DBO_TRX ); // make each query its own transaction
467 $scopedReset = new ScopedCallback( function () use ( $dbw, $autoTrx ) {
468 $dbw->setFlag( $autoTrx ? DBO_TRX : 0 ); // restore old setting
469 } );
470
471 // Delete a row with a single DELETE without holding row locks over RTTs...
472 $dbw->delete( 'job',
473 array( 'job_cmd' => $this->type, 'job_id' => $job->metadata['id'] ), __METHOD__ );
474
475 JobQueue::incrStats( 'acks', $this->type );
476 } catch ( DBError $e ) {
477 $this->throwDBException( $e );
478 }
479
480 return true;
481 }
482
483 /**
484 * @see JobQueue::doDeduplicateRootJob()
485 * @param IJobSpecification $job
486 * @throws MWException
487 * @return bool
488 */
489 protected function doDeduplicateRootJob( IJobSpecification $job ) {
490 $params = $job->getParams();
491 if ( !isset( $params['rootJobSignature'] ) ) {
492 throw new MWException( "Cannot register root job; missing 'rootJobSignature'." );
493 } elseif ( !isset( $params['rootJobTimestamp'] ) ) {
494 throw new MWException( "Cannot register root job; missing 'rootJobTimestamp'." );
495 }
496 $key = $this->getRootJobCacheKey( $params['rootJobSignature'] );
497 // Callers should call batchInsert() and then this function so that if the insert
498 // fails, the de-duplication registration will be aborted. Since the insert is
499 // deferred till "transaction idle", do the same here, so that the ordering is
500 // maintained. Having only the de-duplication registration succeed would cause
501 // jobs to become no-ops without any actual jobs that made them redundant.
502 $dbw = $this->getMasterDB();
503 $cache = $this->dupCache;
504 $dbw->onTransactionIdle( function () use ( $cache, $params, $key, $dbw ) {
505 $timestamp = $cache->get( $key ); // current last timestamp of this job
506 if ( $timestamp && $timestamp >= $params['rootJobTimestamp'] ) {
507 return true; // a newer version of this root job was enqueued
508 }
509
510 // Update the timestamp of the last root job started at the location...
511 return $cache->set( $key, $params['rootJobTimestamp'], JobQueueDB::ROOTJOB_TTL );
512 } );
513
514 return true;
515 }
516
517 /**
518 * @see JobQueue::doDelete()
519 * @return bool
520 */
521 protected function doDelete() {
522 $dbw = $this->getMasterDB();
523 try {
524 $dbw->delete( 'job', array( 'job_cmd' => $this->type ) );
525 } catch ( DBError $e ) {
526 $this->throwDBException( $e );
527 }
528
529 return true;
530 }
531
532 /**
533 * @see JobQueue::doWaitForBackups()
534 * @return void
535 */
536 protected function doWaitForBackups() {
537 wfWaitForSlaves( false, $this->wiki, $this->cluster ?: false );
538 }
539
540 /**
541 * @return void
542 */
543 protected function doFlushCaches() {
544 foreach ( array( 'size', 'acquiredcount' ) as $type ) {
545 $this->cache->delete( $this->getCacheKey( $type ) );
546 }
547 }
548
549 /**
550 * @see JobQueue::getAllQueuedJobs()
551 * @return Iterator
552 */
553 public function getAllQueuedJobs() {
554 return $this->getJobIterator( array( 'job_cmd' => $this->getType(), 'job_token' => '' ) );
555 }
556
557 /**
558 * @see JobQueue::getAllAcquiredJobs()
559 * @return Iterator
560 */
561 public function getAllAcquiredJobs() {
562 return $this->getJobIterator( array( 'job_cmd' => $this->getType(), "job_token > ''" ) );
563 }
564
565 /**
566 * @param array $conds Query conditions
567 * @return Iterator
568 */
569 protected function getJobIterator( array $conds ) {
570 $dbr = $this->getSlaveDB();
571 try {
572 return new MappedIterator(
573 $dbr->select( 'job', self::selectFields(), $conds ),
574 function ( $row ) {
575 $job = Job::factory(
576 $row->job_cmd,
577 Title::makeTitle( $row->job_namespace, $row->job_title ),
578 strlen( $row->job_params ) ? unserialize( $row->job_params ) : array()
579 );
580 $job->metadata['id'] = $row->job_id;
581 $job->metadata['timestamp'] = $row->job_timestamp;
582
583 return $job;
584 }
585 );
586 } catch ( DBError $e ) {
587 $this->throwDBException( $e );
588 }
589 }
590
591 public function getCoalesceLocationInternal() {
592 return $this->cluster
593 ? "DBCluster:{$this->cluster}:{$this->wiki}"
594 : "LBFactory:{$this->wiki}";
595 }
596
597 protected function doGetSiblingQueuesWithJobs( array $types ) {
598 $dbr = $this->getSlaveDB();
599 // @note: this does not check whether the jobs are claimed or not.
600 // This is useful so JobQueueGroup::pop() also sees queues that only
601 // have stale jobs. This lets recycleAndDeleteStaleJobs() re-enqueue
602 // failed jobs so that they can be popped again for that edge case.
603 $res = $dbr->select( 'job', 'DISTINCT job_cmd',
604 array( 'job_cmd' => $types ), __METHOD__ );
605
606 $types = array();
607 foreach ( $res as $row ) {
608 $types[] = $row->job_cmd;
609 }
610
611 return $types;
612 }
613
614 protected function doGetSiblingQueueSizes( array $types ) {
615 $dbr = $this->getSlaveDB();
616 $res = $dbr->select( 'job', array( 'job_cmd', 'COUNT(*) AS count' ),
617 array( 'job_cmd' => $types ), __METHOD__, array( 'GROUP BY' => 'job_cmd' ) );
618
619 $sizes = array();
620 foreach ( $res as $row ) {
621 $sizes[$row->job_cmd] = (int)$row->count;
622 }
623
624 return $sizes;
625 }
626
627 /**
628 * Recycle or destroy any jobs that have been claimed for too long
629 *
630 * @return int Number of jobs recycled/deleted
631 */
632 public function recycleAndDeleteStaleJobs() {
633 $now = time();
634 $count = 0; // affected rows
635 $dbw = $this->getMasterDB();
636
637 try {
638 if ( !$dbw->lock( "jobqueue-recycle-{$this->type}", __METHOD__, 1 ) ) {
639 return $count; // already in progress
640 }
641
642 // Remove claims on jobs acquired for too long if enabled...
643 if ( $this->claimTTL > 0 ) {
644 $claimCutoff = $dbw->timestamp( $now - $this->claimTTL );
645 // Get the IDs of jobs that have be claimed but not finished after too long.
646 // These jobs can be recycled into the queue by expiring the claim. Selecting
647 // the IDs first means that the UPDATE can be done by primary key (less deadlocks).
648 $res = $dbw->select( 'job', 'job_id',
649 array(
650 'job_cmd' => $this->type,
651 "job_token != {$dbw->addQuotes( '' )}", // was acquired
652 "job_token_timestamp < {$dbw->addQuotes( $claimCutoff )}", // stale
653 "job_attempts < {$dbw->addQuotes( $this->maxTries )}" ), // retries left
654 __METHOD__
655 );
656 $ids = array_map(
657 function ( $o ) {
658 return $o->job_id;
659 }, iterator_to_array( $res )
660 );
661 if ( count( $ids ) ) {
662 // Reset job_token for these jobs so that other runners will pick them up.
663 // Set the timestamp to the current time, as it is useful to now that the job
664 // was already tried before (the timestamp becomes the "released" time).
665 $dbw->update( 'job',
666 array(
667 'job_token' => '',
668 'job_token_timestamp' => $dbw->timestamp( $now ) ), // time of release
669 array(
670 'job_id' => $ids ),
671 __METHOD__
672 );
673 $affected = $dbw->affectedRows();
674 $count += $affected;
675 JobQueue::incrStats( 'recycles', $this->type, $affected );
676 $this->aggr->notifyQueueNonEmpty( $this->wiki, $this->type );
677 }
678 }
679
680 // Just destroy any stale jobs...
681 $pruneCutoff = $dbw->timestamp( $now - self::MAX_AGE_PRUNE );
682 $conds = array(
683 'job_cmd' => $this->type,
684 "job_token != {$dbw->addQuotes( '' )}", // was acquired
685 "job_token_timestamp < {$dbw->addQuotes( $pruneCutoff )}" // stale
686 );
687 if ( $this->claimTTL > 0 ) { // only prune jobs attempted too many times...
688 $conds[] = "job_attempts >= {$dbw->addQuotes( $this->maxTries )}";
689 }
690 // Get the IDs of jobs that are considered stale and should be removed. Selecting
691 // the IDs first means that the UPDATE can be done by primary key (less deadlocks).
692 $res = $dbw->select( 'job', 'job_id', $conds, __METHOD__ );
693 $ids = array_map(
694 function ( $o ) {
695 return $o->job_id;
696 }, iterator_to_array( $res )
697 );
698 if ( count( $ids ) ) {
699 $dbw->delete( 'job', array( 'job_id' => $ids ), __METHOD__ );
700 $affected = $dbw->affectedRows();
701 $count += $affected;
702 JobQueue::incrStats( 'abandons', $this->type, $affected );
703 }
704
705 $dbw->unlock( "jobqueue-recycle-{$this->type}", __METHOD__ );
706 } catch ( DBError $e ) {
707 $this->throwDBException( $e );
708 }
709
710 return $count;
711 }
712
713 /**
714 * @param IJobSpecification $job
715 * @return array
716 */
717 protected function insertFields( IJobSpecification $job ) {
718 $dbw = $this->getMasterDB();
719
720 return array(
721 // Fields that describe the nature of the job
722 'job_cmd' => $job->getType(),
723 'job_namespace' => $job->getTitle()->getNamespace(),
724 'job_title' => $job->getTitle()->getDBkey(),
725 'job_params' => self::makeBlob( $job->getParams() ),
726 // Additional job metadata
727 'job_id' => $dbw->nextSequenceValue( 'job_job_id_seq' ),
728 'job_timestamp' => $dbw->timestamp(),
729 'job_sha1' => Wikimedia\base_convert(
730 sha1( serialize( $job->getDeduplicationInfo() ) ),
731 16, 36, 31
732 ),
733 'job_random' => mt_rand( 0, self::MAX_JOB_RANDOM )
734 );
735 }
736
737 /**
738 * @throws JobQueueConnectionError
739 * @return DBConnRef
740 */
741 protected function getSlaveDB() {
742 try {
743 return $this->getDB( DB_SLAVE );
744 } catch ( DBConnectionError $e ) {
745 throw new JobQueueConnectionError( "DBConnectionError:" . $e->getMessage() );
746 }
747 }
748
749 /**
750 * @throws JobQueueConnectionError
751 * @return DBConnRef
752 */
753 protected function getMasterDB() {
754 try {
755 return $this->getDB( DB_MASTER );
756 } catch ( DBConnectionError $e ) {
757 throw new JobQueueConnectionError( "DBConnectionError:" . $e->getMessage() );
758 }
759 }
760
761 /**
762 * @param int $index (DB_SLAVE/DB_MASTER)
763 * @return DBConnRef
764 */
765 protected function getDB( $index ) {
766 $lb = ( $this->cluster !== false )
767 ? wfGetLBFactory()->getExternalLB( $this->cluster, $this->wiki )
768 : wfGetLB( $this->wiki );
769
770 return $lb->getConnectionRef( $index, array(), $this->wiki );
771 }
772
773 /**
774 * @param string $property
775 * @return string
776 */
777 private function getCacheKey( $property ) {
778 list( $db, $prefix ) = wfSplitWikiID( $this->wiki );
779 $cluster = is_string( $this->cluster ) ? $this->cluster : 'main';
780
781 return wfForeignMemcKey( $db, $prefix, 'jobqueue', $cluster, $this->type, $property );
782 }
783
784 /**
785 * @param array|bool $params
786 * @return string
787 */
788 protected static function makeBlob( $params ) {
789 if ( $params !== false ) {
790 return serialize( $params );
791 } else {
792 return '';
793 }
794 }
795
796 /**
797 * @param string $blob
798 * @return bool|mixed
799 */
800 protected static function extractBlob( $blob ) {
801 if ( (string)$blob !== '' ) {
802 return unserialize( $blob );
803 } else {
804 return false;
805 }
806 }
807
808 /**
809 * @param DBError $e
810 * @throws JobQueueError
811 */
812 protected function throwDBException( DBError $e ) {
813 throw new JobQueueError( get_class( $e ) . ": " . $e->getMessage() );
814 }
815
816 /**
817 * Return the list of job fields that should be selected.
818 * @since 1.23
819 * @return array
820 */
821 public static function selectFields() {
822 return array(
823 'job_id',
824 'job_cmd',
825 'job_namespace',
826 'job_title',
827 'job_timestamp',
828 'job_params',
829 'job_random',
830 'job_attempts',
831 'job_token',
832 'job_token_timestamp',
833 'job_sha1',
834 );
835 }
836 }