MediaWiki
1.27.3
|
Class to both describe a background job and handle jobs. More...
Public Member Functions | |
__construct ($command, $title, $params=false) | |
allowRetries () | |
getDeduplicationInfo () | |
Subclasses may need to override this to make duplication detection work. More... | |
getLastError () | |
getParams () | |
getQueuedTimestamp () | |
getReadyTimestamp () | |
getReleaseTimestamp () | |
getRequestId () | |
getRootJobParams () | |
getTitle () | |
getType () | |
hasRootJobParams () | |
ignoreDuplicates () | |
Whether the queue should reject insertion of this job if a duplicate exists. More... | |
insert () | |
Insert a single job into the queue. More... | |
isRootJob () | |
run () | |
Run the job. More... | |
teardown () | |
Do any final cleanup after run(), deferred updates, and all DB commits happen. More... | |
toString () | |
workItemCount () | |
Static Public Member Functions | |
static | batchInsert ($jobs) |
Batch-insert a group of jobs into the queue. More... | |
static | factory ($command, Title $title, $params=[]) |
Create the appropriate object to handle a specific job. More... | |
static | newRootJobParams ($key) |
Get "root job" parameters for a task. More... | |
Public Attributes | |
string | $command |
array | $metadata = [] |
Additional queue metadata. More... | |
array | $params |
Array of job parameters. More... | |
Protected Member Functions | |
addTeardownCallback ($callback) | |
setLastError ($error) | |
Protected Attributes | |
string | $error |
Text for error that occurred last. More... | |
bool | $removeDuplicates |
Expensive jobs may set this to true. More... | |
callable[] | $teardownCallbacks = [] |
Title | $title |
Class to both describe a background job and handle jobs.
The queue aspects of this class are now deprecated. Using the class to push jobs onto queues is deprecated (use JobSpecification).
Job::__construct | ( | $command, | |
$title, | |||
$params = false |
|||
) |
|
protected |
callable | $callback |
Definition at line 307 of file Job.php.
Referenced by AssembleUploadChunksJob\run(), and PublishStashedFileJob\run().
Job::allowRetries | ( | ) |
|
static |
Batch-insert a group of jobs into the queue.
This will be wrapped in a transaction with a forced commit.
This may add duplicate at insert time, but they will be removed later on, when the first one is popped.
Job[] | $jobs Array of Job objects |
Definition at line 112 of file Job.php.
References JobQueueGroup\singleton(), and wfDeprecated().
|
static |
Create the appropriate object to handle a specific job.
MWException |
Definition at line 68 of file Job.php.
References $command, $job, and global.
Referenced by JobQueueDB\doPop(), JobQueueRedis\getJobFromFields(), JobQueueRedis\getJobFromUidInternal(), JobQueueDB\getJobIterator(), and JobQueueMemory\jobFromSpecInternal().
Job::getDeduplicationInfo | ( | ) |
Subclasses may need to override this to make duplication detection work.
The resulting map conveys everything that makes the job unique. This is only checked if ignoreDuplicates() returns true, meaning that duplicate jobs are supposed to be ignored.
Implements IJobSpecification.
Definition at line 220 of file Job.php.
References getParams(), getTitle(), and getType().
Job::getLastError | ( | ) |
Job::getParams | ( | ) |
Implements IJobSpecification.
Definition at line 135 of file Job.php.
References $params.
Referenced by getDeduplicationInfo(), DuplicateJob\newFromJob(), and BacklinkJobUtils\partitionBacklinkJob().
Job::getQueuedTimestamp | ( | ) |
Definition at line 153 of file Job.php.
References TS_UNIX, and wfTimestampOrNull().
Referenced by getReadyTimestamp().
Job::getReadyTimestamp | ( | ) |
Definition at line 175 of file Job.php.
References getQueuedTimestamp(), and getReleaseTimestamp().
Referenced by JobRunner\executeJob().
Job::getReleaseTimestamp | ( | ) |
Implements IJobSpecification.
Definition at line 143 of file Job.php.
References TS_UNIX, and wfTimestampOrNull().
Referenced by getReadyTimestamp().
Job::getRequestId | ( | ) |
Job::getRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 274 of file Job.php.
Referenced by JobQueueFederated\doIsRootJobOldDuplicate(), JobQueueRedis\doIsRootJobOldDuplicate(), JobQueue\doIsRootJobOldDuplicate(), JobRunner\executeJob(), HTMLCacheUpdateJob\run(), and RefreshLinksJob\run().
Job::getTitle | ( | ) |
Implements IJobSpecification.
Definition at line 128 of file Job.php.
References $title.
Referenced by getDeduplicationInfo(), DuplicateJob\newFromJob(), and BacklinkJobUtils\partitionBacklinkJob().
Job::getType | ( | ) |
Implements IJobSpecification.
Definition at line 121 of file Job.php.
References $command.
Referenced by JobQueueGroup\ack(), JobQueue\ack(), JobQueueGroup\deduplicateRootJob(), JobRunner\executeJob(), JobRunner\getBackoffTimeToWait(), getDeduplicationInfo(), JobQueue\isRootJobOldDuplicate(), and DuplicateJob\newFromJob().
Job::hasRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 290 of file Job.php.
Referenced by JobQueueRedis\doIsRootJobOldDuplicate(), JobQueue\doIsRootJobOldDuplicate(), and isRootJob().
Job::ignoreDuplicates | ( | ) |
Whether the queue should reject insertion of this job if a duplicate exists.
This can be used to avoid duplicated effort or combined with delayed jobs to coalesce updates into larger batches. Claimed jobs are never treated as duplicates of new jobs, and some queues may allow a few duplicates due to network partitions and fail-over. Thus, additional locking is needed to enforce mutual exclusion if this is really needed.
Implements IJobSpecification.
Definition at line 190 of file Job.php.
References $removeDuplicates.
Job::insert | ( | ) |
Insert a single job into the queue.
Definition at line 327 of file Job.php.
References JobQueueGroup\singleton().
Job::isRootJob | ( | ) |
Implements IJobSpecification.
Definition at line 299 of file Job.php.
References hasRootJobParams().
|
static |
Get "root job" parameters for a task.
This is used to no-op redundant jobs, including child jobs of jobs, as long as the children inherit the root job parameters. When a job with root job parameters and "rootJobIsSelf" set is pushed, the deduplicateRootJob() method is automatically called on it. If the root job is only virtual and not actually pushed (e.g. the sub-jobs are inserted directly), then call deduplicateRootJob() directly.
string | $key | A key that identifies the task |
Definition at line 261 of file Job.php.
References $key, and wfTimestampNow().
Referenced by HTMLCacheUpdateJob\newForBacklinks(), LinksUpdate\queueRecursiveJobsForTable(), RefreshLinksPartitionTest\testRefreshLinks(), and JobQueueTest\testRootDeduplication().
|
abstract |
|
protected |
Definition at line 391 of file Job.php.
References $error.
Referenced by ThumbnailRenderJob\run(), AssembleUploadChunksJob\run(), PublishStashedFileJob\run(), DeleteLinksJob\run(), CategoryMembershipChangeJob\run(), DoubleRedirectJob\run(), and RefreshLinksJob\runForTitle().
Job::teardown | ( | ) |
Do any final cleanup after run(), deferred updates, and all DB commits happen.
Definition at line 316 of file Job.php.
References as.
Referenced by JobRunner\executeJob().
Job::toString | ( | ) |
Definition at line 335 of file Job.php.
References $command, $key, $s, $value, as, FormatJson\encode(), string, and title.
Referenced by JobRunner\commitMasterChanges(), and JobRunner\executeJob().
Job::workItemCount | ( | ) |
Definition at line 207 of file Job.php.
Referenced by JobRunner\getBackoffTimeToWait().
string Job::$command |
Definition at line 33 of file Job.php.
Referenced by __construct(), factory(), getType(), and toString().
|
protected |
Text for error that occurred last.
Definition at line 48 of file Job.php.
Referenced by getLastError(), and setLastError().
array Job::$params |
Array of job parameters.
Definition at line 36 of file Job.php.
Referenced by getParams(), RefreshLinksJob\newDynamic(), RefreshLinksJob\newPrioritized(), and NullJob\run().
|
protected |
Expensive jobs may set this to true.
Definition at line 45 of file Job.php.
Referenced by ignoreDuplicates().
|
protected |
Definition at line 42 of file Job.php.
Referenced by __construct(), DoubleRedirectJob\fixRedirects(), DoubleRedirectJob\getFinalDestination(), getTitle(), HTMLCacheUpdateJob\invalidateTitles(), RefreshLinksJob\newDynamic(), HTMLCacheUpdateJob\newForBacklinks(), RefreshLinksJob\newPrioritized(), CategoryMembershipChangeJob\notifyUpdatesForRevision(), HTMLCacheUpdateJob\run(), and NullJob\run().