Go to the documentation of this file.
27 use Wikimedia\ScopedCallback;
58 $this->cluster = isset(
$params[
'cluster'] ) ?
$params[
'cluster'] :
false;
63 return [
'random',
'timestamp',
'fifo' ];
77 $found =
$dbr->selectField(
78 'job',
'1', [
'job_cmd' => $this->
type,
'job_token' =>
'' ], __METHOD__
94 $size = $this->
cache->get( $key );
95 if ( is_int( $size ) ) {
101 $size = (int)
$dbr->selectField(
'job',
'COUNT(*)',
102 [
'job_cmd' => $this->type,
'job_token' =>
'' ],
108 $this->
cache->set( $key, $size, self::CACHE_TTL_SHORT );
118 if ( $this->claimTTL <= 0 ) {
124 $count = $this->
cache->get( $key );
125 if ( is_int( $count ) ) {
131 $count = (int)
$dbr->selectField(
'job',
'COUNT(*)',
132 [
'job_cmd' => $this->type,
"job_token != {$dbr->addQuotes( '' )}" ],
138 $this->
cache->set( $key, $count, self::CACHE_TTL_SHORT );
149 if ( $this->claimTTL <= 0 ) {
155 $count = $this->
cache->get( $key );
156 if ( is_int( $count ) ) {
162 $count = (int)
$dbr->selectField(
'job',
'COUNT(*)',
164 'job_cmd' => $this->type,
165 "job_token != {$dbr->addQuotes( '' )}",
166 "job_attempts >= " .
$dbr->addQuotes( $this->maxTries )
174 $this->
cache->set( $key, $count, self::CACHE_TTL_SHORT );
198 $dbw->onTransactionPreCommitOrIdle(
217 if ( !
count( $jobs ) ) {
223 foreach ( $jobs
as $job ) {
225 if (
$job->ignoreDuplicates() ) {
226 $rowSet[$row[
'job_sha1']] = $row;
232 if (
$flags & self::QOS_ATOMIC ) {
237 if (
count( $rowSet ) ) {
241 'job_sha1' => array_keys( $rowSet ),
246 foreach (
$res as $row ) {
247 wfDebug(
"Job with hash '{$row->job_sha1}' is a duplicate.\n" );
248 unset( $rowSet[$row->job_sha1] );
252 $rows = array_merge( $rowList, array_values( $rowSet ) );
254 foreach ( array_chunk(
$rows, 50 )
as $rowBatch ) {
255 $dbw->
insert(
'job', $rowBatch, $method );
264 if (
$flags & self::QOS_ATOMIC ) {
278 $autoTrx = $dbw->getFlag(
DBO_TRX );
280 $scopedReset =
new ScopedCallback(
function ()
use ( $dbw, $autoTrx ) {
281 $dbw->setFlag( $autoTrx ?
DBO_TRX : 0 );
288 if ( in_array( $this->
order, [
'fifo',
'timestamp' ] ) ) {
291 $rand = mt_rand( 0, self::MAX_JOB_RANDOM );
292 $gte = (bool)mt_rand( 0, 1 );
303 self::extractBlob( $row->job_params ), $row->job_id );
304 $job->metadata[
'id'] = $row->job_id;
305 $job->metadata[
'timestamp'] = $row->job_timestamp;
309 if ( !
$job || mt_rand( 0, 9 ) == 0 ) {
335 $invertedDirection =
false;
344 $ineq = $gte ?
'>=' :
'<=';
345 $dir = $gte ?
'ASC' :
'DESC';
346 $row = $dbw->selectRow(
'job', self::selectFields(),
348 'job_cmd' => $this->
type,
350 "job_random {$ineq} {$dbw->addQuotes( $rand )}" ],
352 [
'ORDER BY' =>
"job_random {$dir}" ]
354 if ( !$row && !$invertedDirection ) {
356 $invertedDirection =
true;
363 $row = $dbw->selectRow(
'job', self::selectFields(),
365 'job_cmd' => $this->
type,
369 [
'OFFSET' => mt_rand( 0, self::MAX_OFFSET ) ]
381 'job_token' => $uuid,
382 'job_token_timestamp' => $dbw->timestamp(),
383 'job_attempts = job_attempts+1' ],
384 [
'job_cmd' =>
$this->type,
'job_id' => $row->job_id,
'job_token' =>
'' ],
389 if ( !$dbw->affectedRows() ) {
411 if ( $dbw->getType() ===
'mysql' ) {
416 $dbw->query(
"UPDATE {$dbw->tableName( 'job' )} " .
418 "job_token = {$dbw->addQuotes( $uuid ) }, " .
419 "job_token_timestamp = {$dbw->addQuotes( $dbw->timestamp() )}, " .
420 "job_attempts = job_attempts+1 " .
422 "job_cmd = {$dbw->addQuotes( $this->type )} " .
423 "AND job_token = {$dbw->addQuotes( '' )} " .
424 ") ORDER BY job_id ASC LIMIT 1",
432 'job_token' => $uuid,
433 'job_token_timestamp' => $dbw->timestamp(),
434 'job_attempts = job_attempts+1' ],
436 $dbw->selectSQLText(
'job',
'job_id',
437 [
'job_cmd' => $this->
type,
'job_token' =>
'' ],
439 [
'ORDER BY' =>
'job_id ASC',
'LIMIT' => 1 ] ) .
446 if ( $dbw->affectedRows() ) {
447 $row = $dbw->selectRow(
'job', self::selectFields(),
448 [
'job_cmd' => $this->
type,
'job_token' => $uuid ], __METHOD__
451 wfDebug(
"Row deleted as duplicate by another process.\n" );
467 if ( !isset(
$job->metadata[
'id'] ) ) {
468 throw new MWException(
"Job of type '{$job->getType()}' has no ID." );
473 $autoTrx = $dbw->getFlag(
DBO_TRX );
475 $scopedReset =
new ScopedCallback(
function ()
use ( $dbw, $autoTrx ) {
476 $dbw->setFlag( $autoTrx ?
DBO_TRX : 0 );
481 [
'job_cmd' => $this->
type,
'job_id' => $job->metadata[
'id'] ], __METHOD__ );
497 if ( !isset(
$params[
'rootJobSignature'] ) ) {
498 throw new MWException(
"Cannot register root job; missing 'rootJobSignature'." );
499 } elseif ( !isset(
$params[
'rootJobTimestamp'] ) ) {
500 throw new MWException(
"Cannot register root job; missing 'rootJobTimestamp'." );
510 $dbw->onTransactionIdle(
513 if ( $timestamp && $timestamp >=
$params[
'rootJobTimestamp'] ) {
533 $dbw->delete(
'job', [
'job_cmd' => $this->
type ] );
546 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
547 $lbFactory->waitForReplication( [
'wiki' => $this->
wiki,
'cluster' => $this->cluster ] );
554 foreach ( [
'size',
'acquiredcount' ]
as $type ) {
583 $dbr->select(
'job', self::selectFields(), $conds ),
588 strlen( $row->job_params ) ?
unserialize( $row->job_params ) : []
590 $job->metadata[
'id'] = $row->job_id;
591 $job->metadata[
'timestamp'] = $row->job_timestamp;
602 return $this->cluster
603 ?
"DBCluster:{$this->cluster}:{$this->wiki}"
604 :
"LBFactory:{$this->wiki}";
613 $res =
$dbr->select(
'job',
'DISTINCT job_cmd',
614 [
'job_cmd' => $types ], __METHOD__ );
617 foreach (
$res as $row ) {
618 $types[] = $row->job_cmd;
626 $res =
$dbr->select(
'job', [
'job_cmd',
'COUNT(*) AS count' ],
627 [
'job_cmd' => $types ], __METHOD__, [
'GROUP BY' =>
'job_cmd' ] );
630 foreach (
$res as $row ) {
631 $sizes[$row->job_cmd] = (int)$row->count;
648 if ( !$dbw->lock(
"jobqueue-recycle-{$this->type}", __METHOD__, 1 ) ) {
653 if ( $this->claimTTL > 0 ) {
654 $claimCutoff = $dbw->timestamp( $now - $this->claimTTL );
658 $res = $dbw->select(
'job',
'job_id',
660 'job_cmd' => $this->
type,
661 "job_token != {$dbw->addQuotes( '' )}",
662 "job_token_timestamp < {$dbw->addQuotes( $claimCutoff )}",
663 "job_attempts < {$dbw->addQuotes( $this->maxTries )}" ],
669 }, iterator_to_array(
$res )
671 if (
count( $ids ) ) {
678 'job_token_timestamp' => $dbw->timestamp( $now ) ],
683 $affected = $dbw->affectedRows();
686 $this->aggr->notifyQueueNonEmpty( $this->
wiki, $this->
type );
691 $pruneCutoff = $dbw->timestamp( $now - self::MAX_AGE_PRUNE );
694 "job_token != {$dbw->addQuotes( '' )}",
695 "job_token_timestamp < {$dbw->addQuotes( $pruneCutoff )}"
697 if ( $this->claimTTL > 0 ) {
698 $conds[] =
"job_attempts >= {$dbw->addQuotes( $this->maxTries )}";
702 $res = $dbw->select(
'job',
'job_id', $conds, __METHOD__ );
706 }, iterator_to_array(
$res )
708 if (
count( $ids ) ) {
709 $dbw->delete(
'job', [
'job_id' => $ids ], __METHOD__ );
710 $affected = $dbw->affectedRows();
715 $dbw->unlock(
"jobqueue-recycle-{$this->type}", __METHOD__ );
733 'job_namespace' =>
$job->getTitle()->getNamespace(),
734 'job_title' =>
$job->getTitle()->getDBkey(),
737 'job_timestamp' => $dbw->timestamp(),
738 'job_sha1' => Wikimedia\base_convert(
742 'job_random' => mt_rand( 0, self::MAX_JOB_RANDOM )
774 protected function getDB( $index ) {
775 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
776 $lb = ( $this->cluster !==
false )
777 ? $lbFactory->getExternalLB( $this->cluster )
778 : $lbFactory->getMainLB( $this->
wiki );
780 return ( $lb->getServerType( $lb->getWriterIndex() ) !==
'sqlite' )
783 ? $lb->getConnectionRef( $index, [], $this->
wiki, $lb::CONN_TRX_AUTO )
785 : $lb->getConnectionRef( $index, [], $this->
wiki );
794 $cluster = is_string( $this->cluster ) ? $this->cluster :
'main';
816 if ( (
string)
$blob !==
'' ) {
847 'job_token_timestamp',
doBatchPushInternal(IDatabase $dbw, array $jobs, $flags, $method)
This function should not be called outside of JobQueueDB.
Convenience class for generating iterators from iterators.
doGetSiblingQueuesWithJobs(array $types)
getCoalesceLocationInternal()
Do not use this function outside of JobQueue/JobQueueGroup.
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
processing should stop and the error should be shown to the user * false
static incrStats( $key, $type, $delta=1)
Call wfIncrStats() for the queue overall and for the queue type.
doGetSiblingQueueSizes(array $types)
throwDBException(DBError $e)
Prior to maintenance scripts were a hodgepodge of code that had no cohesion or formal method of action Beginning maintenance scripts have been cleaned up to use a unified class Directory structure How to run a script How to write your own DIRECTORY STRUCTURE The maintenance directory of a MediaWiki installation contains several all of which have unique purposes HOW TO RUN A SCRIPT Ridiculously just call php someScript php that s in the top level maintenance directory if not default wiki
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
unserialize( $serialized)
optimalOrder()
Get the default queue order to use if configuration does not specify one.
__construct(array $params)
Additional parameters include:
set( $key, $value, $ttl=0, array $opts=[])
Set the value of a key in cache.
wfSplitWikiID( $wiki)
Split a wiki ID into DB name and table prefix.
insertFields(IJobSpecification $job)
Class to handle job queues stored in the DB.
you have access to all of the normal MediaWiki so you can get a DB use the cache
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
getJobIterator(array $conds)
static makeBlob( $params)
supportedOrders()
Get the allowed queue orders for configuration validation.
Class to both describe a background job and handle jobs.
static factory( $command, Title $title, $params=[])
Create the appropriate object to handle a specific job.
namespace and then decline to actually register it file or subcat img or subcat $title
doDeduplicateRootJob(IJobSpecification $job)
recycleAndDeleteStaleJobs()
Recycle or destroy any jobs that have been claimed for too long.
doBatchPush(array $jobs, $flags)
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
wfForeignMemcKey( $db, $prefix)
Make a cache key for a foreign DB.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
static extractBlob( $blob)
get( $key, &$curTTL=null, array $checkKeys=[], &$asOf=null)
Fetch the value of a key from cache.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Multi-datacenter aware caching interface.
static selectFields()
Return the list of job fields that should be selected.
claimOldest( $uuid)
Reserve a row with a single UPDATE without holding row locks over RTTs...
getRootJobCacheKey( $signature)
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
static getMainWANInstance()
Get the main WAN cache object.
if(count( $args)< 1) $job
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Class to handle enqueueing and running of background jobs.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any order
Job queue task description interface.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
bool string $cluster
Name of an external DB cluster.
the array() calling protocol came about after MediaWiki 1.4rc1.
wfRandomString( $length=32)
Get a random string containing a number of pseudo-random hex characters.
claimRandom( $uuid, $rand, $gte)
Reserve a row with a single UPDATE without holding row locks over RTTs...