Go to the documentation of this file.
59 $this->
wiki = $params[
'wiki'];
60 $this->
type = $params[
'type'];
61 $this->claimTTL = isset(
$params[
'claimTTL'] ) ?
$params[
'claimTTL'] : 0;
62 $this->maxTries = isset(
$params[
'maxTries'] ) ?
$params[
'maxTries'] : 3;
64 $this->
order = $params[
'order'];
69 throw new MWException( __CLASS__ .
" does not support '{$this->order}' order." );
72 $this->aggr = isset(
$params[
'aggregator'] )
75 $this->readOnlyReason = isset(
$params[
'readOnlyReason'] )
110 if ( !class_exists( $class ) ) {
111 throw new MWException(
"Invalid job queue class '$class'." );
114 if ( !( $obj instanceof
self ) ) {
115 throw new MWException(
"Class '$class' is not a " . __CLASS__ .
" class." );
305 $jobs = is_array( $jobs ) ? $jobs : [ $jobs ];
322 if ( !
count( $jobs ) ) {
326 foreach ( $jobs
as $job ) {
329 "Got '{$job->getType()}' job; expected a '{$this->type}' job." );
332 "Got delayed '{$job->getType()}' job; delays are not supported." );
337 $this->aggr->notifyQueueNonEmpty( $this->
wiki, $this->
type );
339 foreach ( $jobs
as $job ) {
340 if (
$job->isRootJob() ) {
361 final public function pop() {
366 throw new MWException(
"Cannot pop '{$this->type}' job off foreign wiki queue." );
369 throw new MWException(
"Unrecognized job type '{$this->type}'." );
375 $this->aggr->notifyQueueEmpty( $this->
wiki, $this->type );
384 }
catch ( Exception
$e ) {
395 abstract protected function doPop();
410 throw new MWException(
"Got '{$job->getType()}' job; expected '{$this->type}'." );
413 $this->
doAck( $job );
456 throw new MWException(
"Got '{$job->getType()}' job; expected '{$this->type}'." );
469 if ( !
$job->hasRootJobParams() ) {
470 throw new MWException(
"Cannot register root job; missing parameters." );
480 $timestamp = $this->dupCache->get( $key );
481 if ( $timestamp && $timestamp >=
$params[
'rootJobTimestamp'] ) {
498 throw new MWException(
"Got '{$job->getType()}' job; expected '{$this->type}'." );
511 if ( !
$job->hasRootJobParams() ) {
518 $timestamp = $this->dupCache->get( $key );
521 return ( $timestamp && $timestamp >
$params[
'rootJobTimestamp'] );
541 final public function delete() {
552 throw new MWException(
"This method is not implemented." );
609 return new ArrayIterator( [] );
623 return new ArrayIterator( [] );
634 return new ArrayIterator( [] );
696 if ( $this->readOnlyReason !==
false ) {
712 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
714 $stats->updateCount(
"jobqueue.{$key}.all", $delta );
715 $stats->updateCount(
"jobqueue.{$key}.{$type}", $delta );
isEmpty()
Quickly check if the queue has no available (unacquired, non-delayed) jobs.
optimalOrder()
Get the default queue order to use if configuration does not specify one.
getAllDelayedJobs()
Get an iterator to traverse over all delayed jobs in this queue.
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
static incrStats( $key, $type, $delta=1)
Call wfIncrStats() for the queue overall and for the queue type.
int $claimTTL
Time to live in seconds.
batchPush(array $jobs, $flags=0)
Push a batch of jobs into the queue.
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
doGetSiblingQueuesWithJobs(array $types)
interface is intended to be more or less compatible with the PHP memcached client.
wfSplitWikiID( $wiki)
Split a wiki ID into DB name and table prefix.
string bool $readOnlyReason
Read only rationale (or false if r/w)
doBatchPush(array $jobs, $flags)
deduplicateRootJob(IJobSpecification $job)
Register the "root job" of a given job into the queue for de-duplication.
push( $jobs, $flags=0)
Push one or more jobs into the queue.
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
Class to handle tracking information about all queues.
getAbandonedCount()
Get the number of acquired jobs that can no longer be attempted.
Class to both describe a background job and handle jobs.
getAcquiredCount()
Get the number of acquired jobs (these are temporarily out of the queue).
doGetSiblingQueueSizes(array $types)
ack(Job $job)
Acknowledge that a job was completed.
doIsRootJobOldDuplicate(Job $job)
supportedOrders()
Get the allowed queue orders for configuration validation.
getDelayedCount()
Get the number of delayed jobs (these are temporarily out of the queue).
wfGetCache( $cacheType)
Get a specific cache object.
when a variable name is used in a it is silently declared as a new masking the global
wfForeignMemcKey( $db, $prefix)
Make a cache key for a foreign DB.
static newFromJob(Job $job)
Get a duplicate no-op version of a job.
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
getSize()
Get the number of available (unacquired, non-delayed) jobs in the queue.
getAllQueuedJobs()
Get an iterator to traverse over all available jobs in this queue.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
waitForBackups()
Wait for any replica DBs or backup servers to catch up.
static factory(array $params)
Get a job queue object of the specified type.
supportsDelayedJobs()
Find out if delayed jobs are supported for configuration validation.
string $order
Job priority for pop()
$wgJobClasses
Maps jobs to their handlers; extensions can add to this to provide custom jobs.
getAllAcquiredJobs()
Get an iterator to traverse over all claimed jobs in this queue.
getRootJobCacheKey( $signature)
if(count( $args)< 1) $job
flushCaches()
Clear any process and persistent caches.
int $maxTries
Maximum number of times to try a job.
pop()
Pop a job off of the queue.
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.
getCoalesceLocationInternal()
Do not use this function outside of JobQueue/JobQueueGroup.
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
isRootJobOldDuplicate(Job $job)
Check if the "root" job of a given job has been superseded by a newer one.
getAllAbandonedJobs()
Get an iterator to traverse over all abandoned jobs in this queue.
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
getSiblingQueueSizes(array $types)
Check the size of each of the given queues.
getSiblingQueuesWithJobs(array $types)
Check whether each of the given queues are empty.
Job queue task description interface.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
doDeduplicateRootJob(IJobSpecification $job)
__construct(array $params)
the array() calling protocol came about after MediaWiki 1.4rc1.