MediaWiki REL1_31
|
Class to handle job queues stored in the DB. More...
Public Member Functions | |
doBatchPushInternal (IDatabase $dbw, array $jobs, $flags, $method) | |
This function should not be called outside of JobQueueDB. | |
getAllAbandonedJobs () | |
getAllAcquiredJobs () | |
getAllQueuedJobs () | |
getCoalesceLocationInternal () | |
Do not use this function outside of JobQueue/JobQueueGroup. | |
recycleAndDeleteStaleJobs () | |
Recycle or destroy any jobs that have been claimed for too long. | |
Public Member Functions inherited from JobQueue | |
ack (Job $job) | |
Acknowledge that a job was completed. | |
batchPush (array $jobs, $flags=0) | |
Push a batch of jobs into the queue. | |
deduplicateRootJob (IJobSpecification $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. | |
getDelayedCount () | |
Get the number of delayed jobs (these are temporarily out of the queue). | |
getOrder () | |
getReadOnlyReason () | |
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. | |
waitForBackups () | |
Wait for any replica DBs or backup servers to catch up. | |
Static Public Member Functions | |
static | selectFields () |
Return the list of job fields that should be selected. | |
Static Public Member Functions inherited from JobQueue | |
static | factory (array $params) |
Get a job queue object of the specified type. | |
static | incrStats ( $key, $type, $delta=1) |
Call wfIncrStats() for the queue overall and for the queue type. | |
Public Attributes | |
const | CACHE_TTL_SHORT = 30 |
const | MAX_AGE_PRUNE = 604800 |
const | MAX_JOB_RANDOM = 2147483647 |
const | MAX_OFFSET = 255 |
Public Attributes inherited from JobQueue | |
const | QOS_ATOMIC = 1 |
const | ROOTJOB_TTL = 2419200 |
Protected Member Functions | |
__construct (array $params) | |
Additional parameters include: | |
claimOldest ( $uuid) | |
Reserve a row with a single UPDATE without holding row locks over RTTs... | |
claimRandom ( $uuid, $rand, $gte) | |
Reserve a row with a single UPDATE without holding row locks over RTTs... | |
doAck (Job $job) | |
doBatchPush (array $jobs, $flags) | |
doDeduplicateRootJob (IJobSpecification $job) | |
doDelete () | |
doFlushCaches () | |
doGetAbandonedCount () | |
doGetAcquiredCount () | |
doGetSiblingQueueSizes (array $types) | |
doGetSiblingQueuesWithJobs (array $types) | |
doGetSize () | |
doIsEmpty () | |
doPop () | |
doWaitForBackups () | |
getDB ( $index) | |
getJobIterator (array $conds) | |
getMasterDB () | |
getReplicaDB () | |
insertFields (IJobSpecification $job) | |
optimalOrder () | |
Get the default queue order to use if configuration does not specify one. | |
supportedOrders () | |
Get the allowed queue orders for configuration validation. | |
throwDBException (DBError $e) | |
Protected Member Functions inherited from JobQueue | |
assertNotReadOnly () | |
doGetDelayedCount () | |
doIsRootJobOldDuplicate (Job $job) | |
getRootJobCacheKey ( $signature) | |
isRootJobOldDuplicate (Job $job) | |
Check if the "root" job of a given job has been superseded by a newer one. | |
supportsDelayedJobs () | |
Find out if delayed jobs are supported for configuration validation. | |
Static Protected Member Functions | |
static | extractBlob ( $blob) |
static | makeBlob ( $params) |
Protected Attributes | |
WANObjectCache | $cache |
bool string | $cluster = false |
Name of an external DB cluster. | |
Protected Attributes inherited from JobQueue | |
JobQueueAggregator | $aggr |
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 bool | $readOnlyReason |
Read only rationale (or false if r/w) | |
string | $type |
Job type. | |
string | $wiki |
Wiki ID. | |
Private Member Functions | |
getCacheKey ( $property) | |
Class to handle job queues stored in the DB.
Definition at line 35 of file JobQueueDB.php.
|
protected |
Additional parameters include:
array | $params |
Reimplemented from JobQueue.
Definition at line 55 of file JobQueueDB.php.
|
protected |
Reserve a row with a single UPDATE without holding row locks over RTTs...
string | $uuid | 32 char hex string |
Definition at line 406 of file JobQueueDB.php.
References getMasterDB(), type, and wfDebug().
Referenced by doPop().
|
protected |
Reserve a row with a single UPDATE without holding row locks over RTTs...
string | $uuid | 32 char hex string |
int | $rand | Random unsigned integer (31 bits) |
bool | $gte | Search for job_random >= $random (otherwise job_random <= $random) |
Definition at line 329 of file JobQueueDB.php.
References cache, getCacheKey(), getMasterDB(), and type.
Referenced by doPop().
|
protected |
Job | $job |
MWException |
Reimplemented from JobQueue.
Definition at line 466 of file JobQueueDB.php.
References $e, $job, DBO_TRX, getMasterDB(), JobQueue\incrStats(), throwDBException(), and type.
|
protected |
IJobSpecification[] | $jobs | |
int | $flags |
DBError|Exception |
Reimplemented from JobQueue.
Definition at line 186 of file JobQueueDB.php.
References $fname, doBatchPushInternal(), and getMasterDB().
JobQueueDB::doBatchPushInternal | ( | IDatabase | $dbw, |
array | $jobs, | ||
$flags, | |||
$method ) |
This function should not be called outside of JobQueueDB.
IDatabase | $dbw | |
IJobSpecification[] | $jobs | |
int | $flags | |
string | $method |
DBError |
Definition at line 216 of file JobQueueDB.php.
References $e, $job, $res, $rows, Wikimedia\Rdbms\IDatabase\endAtomic(), JobQueue\incrStats(), Wikimedia\Rdbms\IDatabase\insert(), insertFields(), Wikimedia\Rdbms\IDatabase\select(), Wikimedia\Rdbms\IDatabase\startAtomic(), throwDBException(), type, and wfDebug().
Referenced by doBatchPush().
|
protected |
IJobSpecification | $job |
MWException |
Reimplemented from JobQueue.
Definition at line 495 of file JobQueueDB.php.
References $cache, JobQueue\$dupCache, $job, $params, WANObjectCache\get(), getMasterDB(), JobQueue\getRootJobCacheKey(), JobQueue\ROOTJOB_TTL, and WANObjectCache\set().
|
protected |
Reimplemented from JobQueue.
Definition at line 530 of file JobQueueDB.php.
References $e, getMasterDB(), throwDBException(), and type.
|
protected |
Reimplemented from JobQueue.
Definition at line 553 of file JobQueueDB.php.
References JobQueue\$type, cache, and getCacheKey().
|
protected |
MWException |
Reimplemented from JobQueue.
Definition at line 148 of file JobQueueDB.php.
References $dbr, $e, cache, getCacheKey(), getReplicaDB(), and throwDBException().
|
protected |
Reimplemented from JobQueue.
Definition at line 117 of file JobQueueDB.php.
References $dbr, $e, cache, getCacheKey(), getReplicaDB(), and throwDBException().
|
protected |
array | $types | List of queues types |
Reimplemented from JobQueue.
Definition at line 636 of file JobQueueDB.php.
References $dbr, $res, and getReplicaDB().
|
protected |
array | $types | List of queues types |
Reimplemented from JobQueue.
Definition at line 619 of file JobQueueDB.php.
References $dbr, $res, and getReplicaDB().
|
protected |
Reimplemented from JobQueue.
Definition at line 91 of file JobQueueDB.php.
References $dbr, $e, cache, getCacheKey(), getReplicaDB(), and throwDBException().
|
protected |
Reimplemented from JobQueue.
Definition at line 74 of file JobQueueDB.php.
References $dbr, $e, getReplicaDB(), throwDBException(), and type.
|
protected |
Reimplemented from JobQueue.
Definition at line 275 of file JobQueueDB.php.
References $e, $job, claimOldest(), claimRandom(), DBO_TRX, Job\factory(), getMasterDB(), JobQueue\incrStats(), order, recycleAndDeleteStaleJobs(), throwDBException(), type, and wfRandomString().
|
protected |
Reimplemented from JobQueue.
Definition at line 545 of file JobQueueDB.php.
|
staticprotected |
string | $blob |
Definition at line 827 of file JobQueueDB.php.
References $blob, and unserialize().
JobQueueDB::getAllAbandonedJobs | ( | ) |
Reimplemented from JobQueue.
Definition at line 579 of file JobQueueDB.php.
References getJobIterator(), and JobQueue\getType().
JobQueueDB::getAllAcquiredJobs | ( | ) |
Reimplemented from JobQueue.
Definition at line 571 of file JobQueueDB.php.
References getJobIterator(), and JobQueue\getType().
JobQueueDB::getAllQueuedJobs | ( | ) |
Reimplemented from JobQueue.
Definition at line 563 of file JobQueueDB.php.
References getJobIterator(), and JobQueue\getType().
|
private |
string | $property |
Definition at line 804 of file JobQueueDB.php.
References $cluster, $property, list, type, wfForeignMemcKey(), and wfSplitWikiID().
Referenced by claimRandom(), doFlushCaches(), doGetAbandonedCount(), doGetAcquiredCount(), and doGetSize().
JobQueueDB::getCoalesceLocationInternal | ( | ) |
Do not use this function outside of JobQueue/JobQueueGroup.
Reimplemented from JobQueue.
Definition at line 613 of file JobQueueDB.php.
|
protected |
int | $index | (DB_REPLICA/DB_MASTER) |
Reimplemented in JobQueueDBSingle.
Definition at line 786 of file JobQueueDB.php.
References false.
Referenced by getMasterDB(), and getReplicaDB().
|
protected |
array | $conds | Query conditions |
Definition at line 591 of file JobQueueDB.php.
References $dbr, $e, $job, Job\factory(), function, getReplicaDB(), throwDBException(), and unserialize().
Referenced by getAllAbandonedJobs(), getAllAcquiredJobs(), and getAllQueuedJobs().
|
protected |
JobQueueConnectionError |
Definition at line 774 of file JobQueueDB.php.
References $e, DB_MASTER, and getDB().
Referenced by claimOldest(), claimRandom(), doAck(), doBatchPush(), doDeduplicateRootJob(), doDelete(), doPop(), insertFields(), and recycleAndDeleteStaleJobs().
|
protected |
JobQueueConnectionError |
Definition at line 762 of file JobQueueDB.php.
References $e, DB_REPLICA, and getDB().
Referenced by doGetAbandonedCount(), doGetAcquiredCount(), doGetSiblingQueueSizes(), doGetSiblingQueuesWithJobs(), doGetSize(), doIsEmpty(), and getJobIterator().
|
protected |
IJobSpecification | $job |
Definition at line 739 of file JobQueueDB.php.
References $job, getMasterDB(), IJobSpecification\getType(), makeBlob(), and serialize().
Referenced by doBatchPushInternal().
|
staticprotected |
array | bool | $params |
Definition at line 815 of file JobQueueDB.php.
References $params, and serialize().
Referenced by insertFields().
|
protected |
Get the default queue order to use if configuration does not specify one.
Reimplemented from JobQueue.
Definition at line 66 of file JobQueueDB.php.
JobQueueDB::recycleAndDeleteStaleJobs | ( | ) |
Recycle or destroy any jobs that have been claimed for too long.
Definition at line 654 of file JobQueueDB.php.
References $e, $res, JobQueue\$type, getMasterDB(), JobQueue\incrStats(), throwDBException(), and type.
Referenced by doPop().
|
static |
Return the list of job fields that should be selected.
Definition at line 848 of file JobQueueDB.php.
|
protected |
Get the allowed queue orders for configuration validation.
Reimplemented from JobQueue.
Definition at line 62 of file JobQueueDB.php.
|
protected |
DBError | $e |
JobQueueError |
Definition at line 839 of file JobQueueDB.php.
References $e.
Referenced by doAck(), doBatchPushInternal(), doDelete(), doGetAbandonedCount(), doGetAcquiredCount(), doGetSize(), doIsEmpty(), doPop(), getJobIterator(), and recycleAndDeleteStaleJobs().
|
protected |
Definition at line 42 of file JobQueueDB.php.
Referenced by doDeduplicateRootJob().
|
protected |
Name of an external DB cluster.
False if not set
Definition at line 45 of file JobQueueDB.php.
Referenced by getCacheKey().
const JobQueueDB::CACHE_TTL_SHORT = 30 |
Definition at line 36 of file JobQueueDB.php.
const JobQueueDB::MAX_AGE_PRUNE = 604800 |
Definition at line 37 of file JobQueueDB.php.
const JobQueueDB::MAX_JOB_RANDOM = 2147483647 |
Definition at line 38 of file JobQueueDB.php.
const JobQueueDB::MAX_OFFSET = 255 |
Definition at line 39 of file JobQueueDB.php.