Merge "Wrap job execution around profiling calls."
[lhc/web/wiklou.git] / includes / job / 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 CACHE_TTL_LONG = 300; // integer; seconds to cache info that is kept up to date
33 const MAX_AGE_PRUNE = 604800; // integer; seconds a job can live once claimed
34 const MAX_JOB_RANDOM = 2147483647; // integer; 2^31 - 1, used for job_random
35 const MAX_OFFSET = 255; // integer; maximum number of rows to skip
36
37 /** @var BagOStuff */
38 protected $cache;
39
40 protected $cluster = false; // string; name of an external DB cluster
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 $params array
49 */
50 protected function __construct( array $params ) {
51 global $wgMemc;
52
53 parent::__construct( $params );
54
55 $this->cluster = isset( $params['cluster'] ) ? $params['cluster'] : false;
56 // Make sure that we don't use the SQL cache, which would be harmful
57 $this->cache = ( $wgMemc instanceof SqlBagOStuff ) ? new EmptyBagOStuff() : $wgMemc;
58 }
59
60 protected function supportedOrders() {
61 return array( 'random', 'timestamp', 'fifo' );
62 }
63
64 protected function optimalOrder() {
65 return 'random';
66 }
67
68 /**
69 * @see JobQueue::doIsEmpty()
70 * @return bool
71 */
72 protected function doIsEmpty() {
73 $key = $this->getCacheKey( 'empty' );
74
75 $isEmpty = $this->cache->get( $key );
76 if ( $isEmpty === 'true' ) {
77 return true;
78 } elseif ( $isEmpty === 'false' ) {
79 return false;
80 }
81
82 list( $dbr, $scope ) = $this->getSlaveDB();
83 $found = $dbr->selectField( // unclaimed job
84 'job', '1', array( 'job_cmd' => $this->type, 'job_token' => '' ), __METHOD__
85 );
86 $this->cache->add( $key, $found ? 'false' : 'true', self::CACHE_TTL_LONG );
87
88 return !$found;
89 }
90
91 /**
92 * @see JobQueue::doGetSize()
93 * @return integer
94 */
95 protected function doGetSize() {
96 $key = $this->getCacheKey( 'size' );
97
98 $size = $this->cache->get( $key );
99 if ( is_int( $size ) ) {
100 return $size;
101 }
102
103 list( $dbr, $scope ) = $this->getSlaveDB();
104 $size = (int)$dbr->selectField( 'job', 'COUNT(*)',
105 array( 'job_cmd' => $this->type, 'job_token' => '' ),
106 __METHOD__
107 );
108 $this->cache->set( $key, $size, self::CACHE_TTL_SHORT );
109
110 return $size;
111 }
112
113 /**
114 * @see JobQueue::doGetAcquiredCount()
115 * @return integer
116 */
117 protected function doGetAcquiredCount() {
118 if ( $this->claimTTL <= 0 ) {
119 return 0; // no acknowledgements
120 }
121
122 $key = $this->getCacheKey( 'acquiredcount' );
123
124 $count = $this->cache->get( $key );
125 if ( is_int( $count ) ) {
126 return $count;
127 }
128
129 list( $dbr, $scope ) = $this->getSlaveDB();
130 $count = (int)$dbr->selectField( 'job', 'COUNT(*)',
131 array( 'job_cmd' => $this->type, "job_token != {$dbr->addQuotes( '' )}" ),
132 __METHOD__
133 );
134 $this->cache->set( $key, $count, self::CACHE_TTL_SHORT );
135
136 return $count;
137 }
138
139 /**
140 * @see JobQueue::doGetAbandonedCount()
141 * @return integer
142 * @throws MWException
143 */
144 protected function doGetAbandonedCount() {
145 global $wgMemc;
146
147 if ( $this->claimTTL <= 0 ) {
148 return 0; // no acknowledgements
149 }
150
151 $key = $this->getCacheKey( 'abandonedcount' );
152
153 $count = $wgMemc->get( $key );
154 if ( is_int( $count ) ) {
155 return $count;
156 }
157
158 list( $dbr, $scope ) = $this->getSlaveDB();
159 $count = (int)$dbr->selectField( 'job', 'COUNT(*)',
160 array(
161 'job_cmd' => $this->type,
162 "job_token != {$dbr->addQuotes( '' )}",
163 "job_attempts >= " . $dbr->addQuotes( $this->maxTries )
164 ),
165 __METHOD__
166 );
167 $wgMemc->set( $key, $count, self::CACHE_TTL_SHORT );
168
169 return $count;
170 }
171
172 /**
173 * @see JobQueue::doBatchPush()
174 * @param array $jobs
175 * @param $flags
176 * @throws DBError|Exception
177 * @return bool
178 */
179 protected function doBatchPush( array $jobs, $flags ) {
180 list( $dbw, $scope ) = $this->getMasterDB();
181
182 $that = $this;
183 $method = __METHOD__;
184 $dbw->onTransactionIdle(
185 function() use ( $dbw, $that, $jobs, $flags, $method, $scope ) {
186 $that->doBatchPushInternal( $dbw, $jobs, $flags, $method );
187 }
188 );
189
190 return true;
191 }
192
193 /**
194 * This function should *not* be called outside of JobQueueDB
195 *
196 * @param DatabaseBase $dbw
197 * @param array $jobs
198 * @param int $flags
199 * @param string $method
200 * @return boolean
201 * @throws type
202 */
203 public function doBatchPushInternal( DatabaseBase $dbw, array $jobs, $flags, $method ) {
204 if ( !count( $jobs ) ) {
205 return true;
206 }
207
208 $rowSet = array(); // (sha1 => job) map for jobs that are de-duplicated
209 $rowList = array(); // list of jobs for jobs that are are not de-duplicated
210 foreach ( $jobs as $job ) {
211 $row = $this->insertFields( $job );
212 if ( $job->ignoreDuplicates() ) {
213 $rowSet[$row['job_sha1']] = $row;
214 } else {
215 $rowList[] = $row;
216 }
217 }
218
219 if ( $flags & self::QOS_ATOMIC ) {
220 $dbw->begin( $method ); // wrap all the job additions in one transaction
221 }
222 try {
223 // Strip out any duplicate jobs that are already in the queue...
224 if ( count( $rowSet ) ) {
225 $res = $dbw->select( 'job', 'job_sha1',
226 array(
227 // No job_type condition since it's part of the job_sha1 hash
228 'job_sha1' => array_keys( $rowSet ),
229 'job_token' => '' // unclaimed
230 ),
231 $method
232 );
233 foreach ( $res as $row ) {
234 wfDebug( "Job with hash '{$row->job_sha1}' is a duplicate." );
235 unset( $rowSet[$row->job_sha1] ); // already enqueued
236 }
237 }
238 // Build the full list of job rows to insert
239 $rows = array_merge( $rowList, array_values( $rowSet ) );
240 // Insert the job rows in chunks to avoid slave lag...
241 foreach ( array_chunk( $rows, 50 ) as $rowBatch ) {
242 $dbw->insert( 'job', $rowBatch, $method );
243 }
244 JobQueue::incrStats( 'job-insert', $this->type, count( $rows ) );
245 JobQueue::incrStats( 'job-insert-duplicate', $this->type,
246 count( $rowSet ) + count( $rowList ) - count( $rows ) );
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->commit( $method );
255 }
256
257 $this->cache->set( $this->getCacheKey( 'empty' ), 'false', JobQueueDB::CACHE_TTL_LONG );
258
259 return true;
260 }
261
262 /**
263 * @see JobQueue::doPop()
264 * @return Job|bool
265 */
266 protected function doPop() {
267 if ( $this->cache->get( $this->getCacheKey( 'empty' ) ) === 'true' ) {
268 return false; // queue is empty
269 }
270
271 list( $dbw, $scope ) = $this->getMasterDB();
272 $dbw->commit( __METHOD__, 'flush' ); // flush existing transaction
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 $this->cache->set( $this->getCacheKey( 'empty' ), 'true', self::CACHE_TTL_LONG );
288 break; // nothing to do
289 }
290 JobQueue::incrStats( 'job-pop', $this->type );
291 // Get the job object from the row...
292 $title = Title::makeTitleSafe( $row->job_namespace, $row->job_title );
293 if ( !$title ) {
294 $dbw->delete( 'job', array( 'job_id' => $row->job_id ), __METHOD__ );
295 wfDebugLog( 'JobQueueDB', "Row has invalid title '{$row->job_title}'." );
296 continue; // try again
297 }
298 $job = Job::factory( $row->job_cmd, $title,
299 self::extractBlob( $row->job_params ), $row->job_id );
300 $job->id = $row->job_id; // XXX: work around broken subclasses
301 break; // done
302 } while( true );
303
304 return $job;
305 }
306
307 /**
308 * Reserve a row with a single UPDATE without holding row locks over RTTs...
309 *
310 * @param string $uuid 32 char hex string
311 * @param $rand integer Random unsigned integer (31 bits)
312 * @param bool $gte Search for job_random >= $random (otherwise job_random <= $random)
313 * @return Row|false
314 */
315 protected function claimRandom( $uuid, $rand, $gte ) {
316 list( $dbw, $scope ) = $this->getMasterDB();
317 // Check cache to see if the queue has <= OFFSET items
318 $tinyQueue = $this->cache->get( $this->getCacheKey( 'small' ) );
319
320 $row = false; // the row acquired
321 $invertedDirection = false; // whether one job_random direction was already scanned
322 // This uses a replication safe method for acquiring jobs. One could use UPDATE+LIMIT
323 // instead, but that either uses ORDER BY (in which case it deadlocks in MySQL) or is
324 // not replication safe. Due to http://bugs.mysql.com/bug.php?id=6980, subqueries cannot
325 // be used here with MySQL.
326 do {
327 if ( $tinyQueue ) { // queue has <= MAX_OFFSET rows
328 // For small queues, using OFFSET will overshoot and return no rows more often.
329 // Instead, this uses job_random to pick a row (possibly checking both directions).
330 $ineq = $gte ? '>=' : '<=';
331 $dir = $gte ? 'ASC' : 'DESC';
332 $row = $dbw->selectRow( 'job', '*', // find a random job
333 array(
334 'job_cmd' => $this->type,
335 'job_token' => '', // unclaimed
336 "job_random {$ineq} {$dbw->addQuotes( $rand )}" ),
337 __METHOD__,
338 array( 'ORDER BY' => "job_random {$dir}" )
339 );
340 if ( !$row && !$invertedDirection ) {
341 $gte = !$gte;
342 $invertedDirection = true;
343 continue; // try the other direction
344 }
345 } else { // table *may* have >= MAX_OFFSET rows
346 // Bug 42614: "ORDER BY job_random" with a job_random inequality causes high CPU
347 // in MySQL if there are many rows for some reason. This uses a small OFFSET
348 // instead of job_random for reducing excess claim retries.
349 $row = $dbw->selectRow( 'job', '*', // find a random job
350 array(
351 'job_cmd' => $this->type,
352 'job_token' => '', // unclaimed
353 ),
354 __METHOD__,
355 array( 'OFFSET' => mt_rand( 0, self::MAX_OFFSET ) )
356 );
357 if ( !$row ) {
358 $tinyQueue = true; // we know the queue must have <= MAX_OFFSET rows
359 $this->cache->set( $this->getCacheKey( 'small' ), 1, 30 );
360 continue; // use job_random
361 }
362 }
363 if ( $row ) { // claim the job
364 $dbw->update( 'job', // update by PK
365 array(
366 'job_token' => $uuid,
367 'job_token_timestamp' => $dbw->timestamp(),
368 'job_attempts = job_attempts+1' ),
369 array( 'job_cmd' => $this->type, 'job_id' => $row->job_id, 'job_token' => '' ),
370 __METHOD__
371 );
372 // This might get raced out by another runner when claiming the previously
373 // selected row. The use of job_random should minimize this problem, however.
374 if ( !$dbw->affectedRows() ) {
375 $row = false; // raced out
376 }
377 } else {
378 break; // nothing to do
379 }
380 } while ( !$row );
381
382 return $row;
383 }
384
385 /**
386 * Reserve a row with a single UPDATE without holding row locks over RTTs...
387 *
388 * @param string $uuid 32 char hex string
389 * @return Row|false
390 */
391 protected function claimOldest( $uuid ) {
392 list( $dbw, $scope ) = $this->getMasterDB();
393
394 $row = false; // the row acquired
395 do {
396 if ( $dbw->getType() === 'mysql' ) {
397 // Per http://bugs.mysql.com/bug.php?id=6980, we can't use subqueries on the
398 // same table being changed in an UPDATE query in MySQL (gives Error: 1093).
399 // Oracle and Postgre have no such limitation. However, MySQL offers an
400 // alternative here by supporting ORDER BY + LIMIT for UPDATE queries.
401 $dbw->query( "UPDATE {$dbw->tableName( 'job' )} " .
402 "SET " .
403 "job_token = {$dbw->addQuotes( $uuid ) }, " .
404 "job_token_timestamp = {$dbw->addQuotes( $dbw->timestamp() )}, " .
405 "job_attempts = job_attempts+1 " .
406 "WHERE ( " .
407 "job_cmd = {$dbw->addQuotes( $this->type )} " .
408 "AND job_token = {$dbw->addQuotes( '' )} " .
409 ") ORDER BY job_id ASC LIMIT 1",
410 __METHOD__
411 );
412 } else {
413 // Use a subquery to find the job, within an UPDATE to claim it.
414 // This uses as much of the DB wrapper functions as possible.
415 $dbw->update( 'job',
416 array(
417 'job_token' => $uuid,
418 'job_token_timestamp' => $dbw->timestamp(),
419 'job_attempts = job_attempts+1' ),
420 array( 'job_id = (' .
421 $dbw->selectSQLText( 'job', 'job_id',
422 array( 'job_cmd' => $this->type, 'job_token' => '' ),
423 __METHOD__,
424 array( 'ORDER BY' => 'job_id ASC', 'LIMIT' => 1 ) ) .
425 ')'
426 ),
427 __METHOD__
428 );
429 }
430 // Fetch any row that we just reserved...
431 if ( $dbw->affectedRows() ) {
432 $row = $dbw->selectRow( 'job', '*',
433 array( 'job_cmd' => $this->type, 'job_token' => $uuid ), __METHOD__
434 );
435 if ( !$row ) { // raced out by duplicate job removal
436 wfDebugLog( 'JobQueueDB', "Row deleted as duplicate by another process." );
437 }
438 } else {
439 break; // nothing to do
440 }
441 } while ( !$row );
442
443 return $row;
444 }
445
446 /**
447 * @see JobQueue::doAck()
448 * @param Job $job
449 * @throws MWException
450 * @return Job|bool
451 */
452 protected function doAck( Job $job ) {
453 if ( !$job->getId() ) {
454 throw new MWException( "Job of type '{$job->getType()}' has no ID." );
455 }
456
457 list( $dbw, $scope ) = $this->getMasterDB();
458 $dbw->commit( __METHOD__, 'flush' ); // flush existing transaction
459
460 // Delete a row with a single DELETE without holding row locks over RTTs...
461 $dbw->delete( 'job',
462 array( 'job_cmd' => $this->type, 'job_id' => $job->getId() ), __METHOD__ );
463
464 return true;
465 }
466
467 /**
468 * @see JobQueue::doDeduplicateRootJob()
469 * @param Job $job
470 * @throws MWException
471 * @return bool
472 */
473 protected function doDeduplicateRootJob( Job $job ) {
474 $params = $job->getParams();
475 if ( !isset( $params['rootJobSignature'] ) ) {
476 throw new MWException( "Cannot register root job; missing 'rootJobSignature'." );
477 } elseif ( !isset( $params['rootJobTimestamp'] ) ) {
478 throw new MWException( "Cannot register root job; missing 'rootJobTimestamp'." );
479 }
480 $key = $this->getRootJobCacheKey( $params['rootJobSignature'] );
481 // Callers should call batchInsert() and then this function so that if the insert
482 // fails, the de-duplication registration will be aborted. Since the insert is
483 // deferred till "transaction idle", do the same here, so that the ordering is
484 // maintained. Having only the de-duplication registration succeed would cause
485 // jobs to become no-ops without any actual jobs that made them redundant.
486 list( $dbw, $scope ) = $this->getMasterDB();
487 $cache = $this->cache;
488 $dbw->onTransactionIdle( function() use ( $cache, $params, $key, $scope ) {
489 $timestamp = $cache->get( $key ); // current last timestamp of this job
490 if ( $timestamp && $timestamp >= $params['rootJobTimestamp'] ) {
491 return true; // a newer version of this root job was enqueued
492 }
493
494 // Update the timestamp of the last root job started at the location...
495 return $cache->set( $key, $params['rootJobTimestamp'], JobQueueDB::ROOTJOB_TTL );
496 } );
497
498 return true;
499 }
500
501 /**
502 * @see JobQueue::doWaitForBackups()
503 * @return void
504 */
505 protected function doWaitForBackups() {
506 wfWaitForSlaves();
507 }
508
509 /**
510 * @return Array
511 */
512 protected function doGetPeriodicTasks() {
513 return array(
514 'recycleAndDeleteStaleJobs' => array(
515 'callback' => array( $this, 'recycleAndDeleteStaleJobs' ),
516 'period' => ceil( $this->claimTTL / 2 )
517 )
518 );
519 }
520
521 /**
522 * @return void
523 */
524 protected function doFlushCaches() {
525 foreach ( array( 'empty', 'size', 'acquiredcount' ) as $type ) {
526 $this->cache->delete( $this->getCacheKey( $type ) );
527 }
528 }
529
530 /**
531 * @see JobQueue::getAllQueuedJobs()
532 * @return Iterator
533 */
534 public function getAllQueuedJobs() {
535 list( $dbr, $scope ) = $this->getSlaveDB();
536 return new MappedIterator(
537 $dbr->select( 'job', '*', array( 'job_cmd' => $this->getType(), 'job_token' => '' ) ),
538 function( $row ) use ( $scope ) {
539 $job = Job::factory(
540 $row->job_cmd,
541 Title::makeTitle( $row->job_namespace, $row->job_title ),
542 strlen( $row->job_params ) ? unserialize( $row->job_params ) : false,
543 $row->job_id
544 );
545 $job->id = $row->job_id; // XXX: work around broken subclasses
546 return $job;
547 }
548 );
549 }
550
551 /**
552 * Recycle or destroy any jobs that have been claimed for too long
553 *
554 * @return integer Number of jobs recycled/deleted
555 */
556 public function recycleAndDeleteStaleJobs() {
557 $now = time();
558 list( $dbw, $scope ) = $this->getMasterDB();
559 $count = 0; // affected rows
560
561 if ( !$dbw->lock( "jobqueue-recycle-{$this->type}", __METHOD__, 1 ) ) {
562 return $count; // already in progress
563 }
564
565 // Remove claims on jobs acquired for too long if enabled...
566 if ( $this->claimTTL > 0 ) {
567 $claimCutoff = $dbw->timestamp( $now - $this->claimTTL );
568 // Get the IDs of jobs that have be claimed but not finished after too long.
569 // These jobs can be recycled into the queue by expiring the claim. Selecting
570 // the IDs first means that the UPDATE can be done by primary key (less deadlocks).
571 $res = $dbw->select( 'job', 'job_id',
572 array(
573 'job_cmd' => $this->type,
574 "job_token != {$dbw->addQuotes( '' )}", // was acquired
575 "job_token_timestamp < {$dbw->addQuotes( $claimCutoff )}", // stale
576 "job_attempts < {$dbw->addQuotes( $this->maxTries )}" ), // retries left
577 __METHOD__
578 );
579 $ids = array_map( function( $o ) { return $o->job_id; }, iterator_to_array( $res ) );
580 if ( count( $ids ) ) {
581 // Reset job_token for these jobs so that other runners will pick them up.
582 // Set the timestamp to the current time, as it is useful to now that the job
583 // was already tried before (the timestamp becomes the "released" time).
584 $dbw->update( 'job',
585 array(
586 'job_token' => '',
587 'job_token_timestamp' => $dbw->timestamp( $now ) ), // time of release
588 array(
589 'job_id' => $ids ),
590 __METHOD__
591 );
592 $count += $dbw->affectedRows();
593 JobQueue::incrStats( 'job-recycle', $this->type, $dbw->affectedRows() );
594 $this->cache->set( $this->getCacheKey( 'empty' ), 'false', self::CACHE_TTL_LONG );
595 }
596 }
597
598 // Just destroy any stale jobs...
599 $pruneCutoff = $dbw->timestamp( $now - self::MAX_AGE_PRUNE );
600 $conds = array(
601 'job_cmd' => $this->type,
602 "job_token != {$dbw->addQuotes( '' )}", // was acquired
603 "job_token_timestamp < {$dbw->addQuotes( $pruneCutoff )}" // stale
604 );
605 if ( $this->claimTTL > 0 ) { // only prune jobs attempted too many times...
606 $conds[] = "job_attempts >= {$dbw->addQuotes( $this->maxTries )}";
607 }
608 // Get the IDs of jobs that are considered stale and should be removed. Selecting
609 // the IDs first means that the UPDATE can be done by primary key (less deadlocks).
610 $res = $dbw->select( 'job', 'job_id', $conds, __METHOD__ );
611 $ids = array_map( function( $o ) { return $o->job_id; }, iterator_to_array( $res ) );
612 if ( count( $ids ) ) {
613 $dbw->delete( 'job', array( 'job_id' => $ids ), __METHOD__ );
614 $count += $dbw->affectedRows();
615 }
616
617 $dbw->unlock( "jobqueue-recycle-{$this->type}", __METHOD__ );
618
619 return $count;
620 }
621
622 /**
623 * @return Array (DatabaseBase, ScopedCallback)
624 */
625 protected function getSlaveDB() {
626 return $this->getDB( DB_SLAVE );
627 }
628
629 /**
630 * @return Array (DatabaseBase, ScopedCallback)
631 */
632 protected function getMasterDB() {
633 return $this->getDB( DB_MASTER );
634 }
635
636 /**
637 * @param $index integer (DB_SLAVE/DB_MASTER)
638 * @return Array (DatabaseBase, ScopedCallback)
639 */
640 protected function getDB( $index ) {
641 $lb = ( $this->cluster !== false )
642 ? wfGetLBFactory()->getExternalLB( $this->cluster, $this->wiki )
643 : wfGetLB( $this->wiki );
644 $conn = $lb->getConnection( $index, array(), $this->wiki );
645 return array(
646 $conn,
647 new ScopedCallback( function() use ( $lb, $conn ) {
648 $lb->reuseConnection( $conn );
649 } )
650 );
651 }
652
653 /**
654 * @param $job Job
655 * @return array
656 */
657 protected function insertFields( Job $job ) {
658 list( $dbw, $scope ) = $this->getMasterDB();
659 return array(
660 // Fields that describe the nature of the job
661 'job_cmd' => $job->getType(),
662 'job_namespace' => $job->getTitle()->getNamespace(),
663 'job_title' => $job->getTitle()->getDBkey(),
664 'job_params' => self::makeBlob( $job->getParams() ),
665 // Additional job metadata
666 'job_id' => $dbw->nextSequenceValue( 'job_job_id_seq' ),
667 'job_timestamp' => $dbw->timestamp(),
668 'job_sha1' => wfBaseConvert(
669 sha1( serialize( $job->getDeduplicationInfo() ) ),
670 16, 36, 31
671 ),
672 'job_random' => mt_rand( 0, self::MAX_JOB_RANDOM )
673 );
674 }
675
676 /**
677 * @return string
678 */
679 private function getCacheKey( $property ) {
680 list( $db, $prefix ) = wfSplitWikiID( $this->wiki );
681 return wfForeignMemcKey( $db, $prefix, 'jobqueue', $this->type, $property );
682 }
683
684 /**
685 * @param $params
686 * @return string
687 */
688 protected static function makeBlob( $params ) {
689 if ( $params !== false ) {
690 return serialize( $params );
691 } else {
692 return '';
693 }
694 }
695
696 /**
697 * @param $blob
698 * @return bool|mixed
699 */
700 protected static function extractBlob( $blob ) {
701 if ( (string)$blob !== '' ) {
702 return unserialize( $blob );
703 } else {
704 return false;
705 }
706 }
707 }