MediaWiki
REL1_24
|
Class to handle enqueueing and running of background jobs. More...
Public Member Functions | |
ack (Job $job) | |
Acknowledge that a job was completed. | |
batchPush (array $jobs, $flags=0) | |
Push a batch of jobs into the queue. | |
deduplicateRootJob (Job $job) | |
Register the "root job" of a given job into the queue for de-duplication. | |
delayedJobsEnabled () | |
delete () | |
Deleted all unclaimed and delayed jobs from the queue. | |
flushCaches () | |
Clear any process and persistent caches. | |
getAbandonedCount () | |
Get the number of acquired jobs that can no longer be attempted. | |
getAcquiredCount () | |
Get the number of acquired jobs (these are temporarily out of the queue). | |
getAllDelayedJobs () | |
Get an iterator to traverse over all delayed jobs in this queue. | |
getAllQueuedJobs () | |
Get an iterator to traverse over all available jobs in this queue. | |
getCoalesceLocationInternal () | |
Do not use this function outside of JobQueue/JobQueueGroup. | |
getDelayedCount () | |
Get the number of delayed jobs (these are temporarily out of the queue). | |
getOrder () | |
getPeriodicTasks () | |
Return a map of task names to task definition maps. | |
getSiblingQueueSizes (array $types) | |
Check the size of each of the given queues. | |
getSiblingQueuesWithJobs (array $types) | |
Check whether each of the given queues are empty. | |
getSize () | |
Get the number of available (unacquired, non-delayed) jobs in the queue. | |
getType () | |
getWiki () | |
isEmpty () | |
Quickly check if the queue has no available (unacquired, non-delayed) jobs. | |
pop () | |
Pop a job off of the queue. | |
push ($jobs, $flags=0) | |
Push one or more jobs into the queue. | |
setTestingPrefix ($key) | |
Namespace the queue with a key to isolate it for testing. | |
waitForBackups () | |
Wait for any slaves or backup servers to catch up. | |
Static Public Member Functions | |
static | factory (array $params) |
Get a job queue object of the specified type. | |
static | incrStats ($key, $type, $delta=1, $wiki=null) |
Call wfIncrStats() for the queue overall and for the queue type. | |
Public Attributes | |
const | QOS_ATOMIC = 1 |
const | ROOTJOB_TTL = 2419200 |
Protected Member Functions | |
__construct (array $params) | |
doAck (Job $job) | |
doBatchPush (array $jobs, $flags) | |
doDeduplicateRootJob (Job $job) | |
doDelete () | |
doFlushCaches () | |
doGetAbandonedCount () | |
doGetAcquiredCount () | |
doGetDelayedCount () | |
doGetPeriodicTasks () | |
doGetSiblingQueueSizes (array $types) | |
doGetSiblingQueuesWithJobs (array $types) | |
doGetSize () | |
doIsEmpty () | |
doIsRootJobOldDuplicate (Job $job) | |
doPop () | |
doWaitForBackups () | |
getRootJobCacheKey ($signature) | |
isRootJobOldDuplicate (Job $job) | |
Check if the "root" job of a given job has been superseded by a newer one. | |
optimalOrder () | |
Get the default queue order to use if configuration does not specify one. | |
supportedOrders () | |
Get the allowed queue orders for configuration validation. | |
supportsDelayedJobs () | |
Find out if delayed jobs are supported for configuration validation. | |
Protected Attributes | |
bool | $checkDelay |
Allow delayed jobs *. | |
int | $claimTTL |
Time to live in seconds *. | |
BagOStuff | $dupCache |
* | |
int | $maxTries |
Maximum number of times to try a job *. | |
string | $order |
Job priority for pop() *. | |
string | $type |
Job type *. | |
string | $wiki |
Wiki ID *. |
Class to handle enqueueing and running of background jobs.
Definition at line 31 of file JobQueue.php.
JobQueue::__construct | ( | array $ | params | ) | [protected] |
array | $params |
MWException |
Reimplemented in JobQueueRedis, JobQueueFederated, and JobQueueDB.
Definition at line 54 of file JobQueue.php.
References empty, optimalOrder(), order, supportedOrders(), supportsDelayedJobs(), type, wfGetCache(), and wiki.
JobQueue::ack | ( | Job $ | job | ) | [final] |
Acknowledge that a job was completed.
This does nothing for certain queue classes or if "claimTTL" is not set. Outside callers should use JobQueueGroup::ack() instead of this function.
Job | $job |
MWException |
Definition at line 395 of file JobQueue.php.
JobQueue::batchPush | ( | array $ | jobs, |
$ | flags = 0 |
||
) | [final] |
Push a batch of jobs into the queue.
This does not require $wgJobClasses to be set for the given job type. Outside callers should use JobQueueGroup::push() instead of this function.
array | $jobs | List of Jobs |
int | $flags | Bitfield (supports JobQueue::QOS_ATOMIC) |
MWException |
Definition at line 317 of file JobQueue.php.
JobQueue::deduplicateRootJob | ( | Job $ | job | ) | [final] |
Register the "root job" of a given job into the queue for de-duplication.
This should only be called right *after* all the new jobs have been inserted. This is used to turn older, duplicate, job entries into no-ops. The root job information will remain in the registry until it simply falls out of cache.
This requires that $job has two special fields in the "params" array:
A "root job" is a conceptual job that consist of potentially many smaller jobs that are actually inserted into the queue. For example, "refreshLinks" jobs are spawned when a template is edited. One can think of the task as "update links of pages that use template X" and an instance of that task as a "root job". However, what actually goes into the queue are range and leaf job subtypes. Since these jobs include things like page ID ranges and DB master positions, and can morph into smaller jobs recursively, simple duplicate detection for individual jobs being identical (like that of job_sha1) is not useful.
In the case of "refreshLinks", if these jobs are still in the queue when the template is edited again, we want all of these old refreshLinks jobs for that template to become no-ops. This can greatly reduce server load, since refreshLinks jobs involves parsing. Essentially, the new batch of jobs belong to a new "root job" and the older ones to a previous "root job" for the same task of "update links of pages that use template X".
This does nothing for certain queue classes.
Job | $job |
MWException |
Definition at line 441 of file JobQueue.php.
JobQueue::delayedJobsEnabled | ( | ) | [final] |
Definition at line 143 of file JobQueue.php.
JobQueue::delete | ( | ) | [final] |
Deleted all unclaimed and delayed jobs from the queue.
JobQueueError |
Definition at line 533 of file JobQueue.php.
JobQueue::doAck | ( | Job $ | job | ) | [abstract, protected] |
Job | $job |
Reimplemented in JobQueueDB, JobQueueRedis, and JobQueueFederated.
JobQueue::doBatchPush | ( | array $ | jobs, |
$ | flags | ||
) | [abstract, protected] |
array | $jobs | |
int | $flags |
Reimplemented in JobQueueFederated, JobQueueDB, and JobQueueRedis.
JobQueue::doDeduplicateRootJob | ( | Job $ | job | ) | [protected] |
Job | $job |
MWException |
Reimplemented in JobQueueDB, JobQueueRedis, and JobQueueFederated.
Definition at line 458 of file JobQueue.php.
References $key, $timestamp, getRootJobCacheKey(), Job\getRootJobParams(), Job\hasRootJobParams(), and ROOTJOB_TTL.
JobQueue::doDelete | ( | ) | [protected] |
MWException |
Reimplemented in JobQueueDB, JobQueueRedis, and JobQueueFederated.
Definition at line 543 of file JobQueue.php.
JobQueue::doFlushCaches | ( | ) | [protected] |
Reimplemented in JobQueueDB, and JobQueueFederated.
Definition at line 612 of file JobQueue.php.
JobQueue::doGetAbandonedCount | ( | ) | [protected] |
Reimplemented in JobQueueFederated, JobQueueRedis, and JobQueueDB.
Definition at line 289 of file JobQueue.php.
JobQueue::doGetAcquiredCount | ( | ) | [abstract, protected] |
Reimplemented in JobQueueFederated, JobQueueRedis, and JobQueueDB.
JobQueue::doGetDelayedCount | ( | ) | [protected] |
Reimplemented in JobQueueFederated, and JobQueueRedis.
Definition at line 264 of file JobQueue.php.
JobQueue::doGetPeriodicTasks | ( | ) | [protected] |
Reimplemented in JobQueueRedis, JobQueueDB, and JobQueueFederated.
Definition at line 593 of file JobQueue.php.
JobQueue::doGetSiblingQueueSizes | ( | array $ | types | ) | [protected] |
array | $types | List of queues types |
Reimplemented in JobQueueDB, JobQueueRedis, and JobQueueFederated.
Definition at line 692 of file JobQueue.php.
JobQueue::doGetSiblingQueuesWithJobs | ( | array $ | types | ) | [protected] |
array | $types | List of queues types |
Reimplemented in JobQueueDB, JobQueueRedis, and JobQueueFederated.
Definition at line 667 of file JobQueue.php.
JobQueue::doGetSize | ( | ) | [abstract, protected] |
Reimplemented in JobQueueFederated, JobQueueRedis, and JobQueueDB.
JobQueue::doIsEmpty | ( | ) | [abstract, protected] |
Reimplemented in JobQueueFederated, JobQueueRedis, and JobQueueDB.
JobQueue::doIsRootJobOldDuplicate | ( | Job $ | job | ) | [protected] |
Job | $job |
Reimplemented in JobQueueRedis, and JobQueueFederated.
Definition at line 502 of file JobQueue.php.
JobQueue::doPop | ( | ) | [abstract, protected] |
Reimplemented in JobQueueFederated, JobQueueRedis, and JobQueueDB.
JobQueue::doWaitForBackups | ( | ) | [protected] |
Reimplemented in JobQueueDB, and JobQueueFederated.
Definition at line 565 of file JobQueue.php.
static JobQueue::factory | ( | array $ | params | ) | [static, final] |
Get a job queue object of the specified type.
$params includes:
Queue classes should throw an exception if they do not support the options given.
array | $params |
MWException |
Definition at line 105 of file JobQueue.php.
Referenced by CopyJobQueue\execute(), JobQueueRedis\getJobFromFields(), and JobQueueTest\setUp().
JobQueue::flushCaches | ( | ) | [final] |
JobQueue::getAbandonedCount | ( | ) | [final] |
Get the number of acquired jobs that can no longer be attempted.
Queue classes should use caching if they are any slower without memcached.
If caching is used, this number might be out of date for a minute.
JobQueueError |
Definition at line 277 of file JobQueue.php.
JobQueue::getAcquiredCount | ( | ) | [final] |
Get the number of acquired jobs (these are temporarily out of the queue).
Queue classes should use caching if they are any slower without memcached.
If caching is used, this number might be out of date for a minute.
JobQueueError |
Definition at line 228 of file JobQueue.php.
Get an iterator to traverse over all delayed jobs in this queue.
Note: results may be stale if the queue is concurrently modified.
JobQueueError |
Reimplemented in JobQueueRedis, and JobQueueFederated.
Definition at line 633 of file JobQueue.php.
JobQueue::getAllQueuedJobs | ( | ) | [abstract] |
Get an iterator to traverse over all available jobs in this queue.
This does not include jobs that are currently acquired or delayed. Note: results may be stale if the queue is concurrently modified.
JobQueueError |
Reimplemented in JobQueueDB, JobQueueRedis, and JobQueueFederated.
Do not use this function outside of JobQueue/JobQueueGroup.
Reimplemented in JobQueueDB, JobQueueRedis, and JobQueueFederated.
Definition at line 643 of file JobQueue.php.
JobQueue::getDelayedCount | ( | ) | [final] |
Get the number of delayed jobs (these are temporarily out of the queue).
Queue classes should use caching if they are any slower without memcached.
If caching is used, this number might be out of date for a minute.
JobQueueError |
Definition at line 252 of file JobQueue.php.
JobQueue::getOrder | ( | ) | [final] |
Definition at line 135 of file JobQueue.php.
References type.
JobQueue::getPeriodicTasks | ( | ) | [final] |
Return a map of task names to task definition maps.
A "task" is a fast periodic queue maintenance action. Mutually exclusive tasks must implement their own locking in the callback.
Each task value is an associative array with:
Definition at line 580 of file JobQueue.php.
JobQueue::getRootJobCacheKey | ( | $ | signature | ) | [protected] |
string | $signature | Hash identifier of the root job |
Definition at line 520 of file JobQueue.php.
Referenced by doDeduplicateRootJob().
JobQueue::getSiblingQueueSizes | ( | array $ | types | ) | [final] |
Check the size of each of the given queues.
For queues not served by the same store as this one, 0 is returned. This is used for batching checks for queues stored at the same place.
array | $types | List of queues types |
MWException |
Definition at line 681 of file JobQueue.php.
JobQueue::getSiblingQueuesWithJobs | ( | array $ | types | ) | [final] |
Check whether each of the given queues are empty.
This is used for batching checks for queues stored at the same place.
array | $types | List of queues types |
MWException |
Definition at line 656 of file JobQueue.php.
JobQueue::getSize | ( | ) | [final] |
Get the number of available (unacquired, non-delayed) jobs in the queue.
Queue classes should use caching if they are any slower without memcached.
If caching is used, this number might be out of date for a minute.
JobQueueError |
Definition at line 205 of file JobQueue.php.
JobQueue::getType | ( | ) | [final] |
Definition at line 128 of file JobQueue.php.
References wiki.
JobQueue::getWiki | ( | ) | [final] |
Definition at line 121 of file JobQueue.php.
static JobQueue::incrStats | ( | $ | key, |
$ | type, | ||
$ | delta = 1 , |
||
$ | wiki = null |
||
) | [static] |
Call wfIncrStats() for the queue overall and for the queue type.
string | $key | Event type |
string | $type | Job type |
int | $delta | |
string | $wiki | Wiki ID (added in 1.23) |
Definition at line 705 of file JobQueue.php.
JobQueue::isEmpty | ( | ) | [final] |
Quickly check if the queue has no available (unacquired, non-delayed) jobs.
Queue classes should use caching if they are any slower without memcached.
If caching is used, this might return false when there are actually no jobs. If pop() is called and returns false then it should correct the cache. Also, calling flushCaches() first prevents this. However, this affect is typically not distinguishable from the race condition between isEmpty() and pop().
JobQueueError |
Definition at line 182 of file JobQueue.php.
JobQueue::isRootJobOldDuplicate | ( | Job $ | job | ) | [final, protected] |
Check if the "root" job of a given job has been superseded by a newer one.
Job | $job |
MWException |
Definition at line 486 of file JobQueue.php.
JobQueue::optimalOrder | ( | ) | [abstract, protected] |
Get the default queue order to use if configuration does not specify one.
Reimplemented in JobQueueFederated, JobQueueRedis, and JobQueueDB.
Referenced by __construct().
JobQueue::pop | ( | ) | [final] |
Pop a job off of the queue.
This requires $wgJobClasses to be set for the given job type. Outside callers should use JobQueueGroup::pop() instead of this function.
MWException |
Definition at line 352 of file JobQueue.php.
JobQueue::push | ( | $ | jobs, |
$ | flags = 0 |
||
) | [final] |
Push one or more jobs into the queue.
This does not require $wgJobClasses to be set for the given job type. Outside callers should use JobQueueGroup::push() instead of this function.
Job | array | $jobs | A single job or an array of Jobs |
int | $flags | Bitfield (supports JobQueue::QOS_ATOMIC) |
JobQueueError |
Definition at line 303 of file JobQueue.php.
Referenced by CopyJobQueue\copyJobs().
JobQueue::setTestingPrefix | ( | $ | key | ) |
Namespace the queue with a key to isolate it for testing.
string | $key |
MWException |
Reimplemented in JobQueueRedis, and JobQueueFederated.
Definition at line 720 of file JobQueue.php.
JobQueue::supportedOrders | ( | ) | [abstract, protected] |
Get the allowed queue orders for configuration validation.
Reimplemented in JobQueueFederated, JobQueueRedis, and JobQueueDB.
Referenced by __construct().
JobQueue::supportsDelayedJobs | ( | ) | [protected] |
Find out if delayed jobs are supported for configuration validation.
Reimplemented in JobQueueFederated, and JobQueueRedis.
Definition at line 166 of file JobQueue.php.
Referenced by __construct().
JobQueue::waitForBackups | ( | ) | [final] |
Wait for any slaves or backup servers to catch up.
This does nothing for certain queue classes.
JobQueueError |
Definition at line 555 of file JobQueue.php.
Referenced by CopyJobQueue\copyJobs().
bool JobQueue::$checkDelay [protected] |
Allow delayed jobs *.
Definition at line 42 of file JobQueue.php.
int JobQueue::$claimTTL [protected] |
Time to live in seconds *.
Definition at line 38 of file JobQueue.php.
BagOStuff JobQueue::$dupCache [protected] |
*
Definition at line 44 of file JobQueue.php.
int JobQueue::$maxTries [protected] |
Maximum number of times to try a job *.
Definition at line 40 of file JobQueue.php.
string JobQueue::$order [protected] |
Definition at line 36 of file JobQueue.php.
string JobQueue::$type [protected] |
Job type *.
Definition at line 34 of file JobQueue.php.
string JobQueue::$wiki [protected] |
Wiki ID *.
Definition at line 32 of file JobQueue.php.
const JobQueue::QOS_ATOMIC = 1 |
Definition at line 46 of file JobQueue.php.
const JobQueue::ROOTJOB_TTL = 2419200 |
Definition at line 48 of file JobQueue.php.
Referenced by doDeduplicateRootJob().