MediaWiki
1.33.0
|
Class to both describe a background job and handle jobs. More...
Public Member Functions | |
__construct ( $command, $params=null) | |
allowRetries () | |
getDeduplicationInfo () | |
Subclasses may need to override this to make duplication detection work. More... | |
getLastError () | |
getMetadata ( $field=null) | |
getParams () | |
getQueuedTimestamp () | |
getReadyTimestamp () | |
getReleaseTimestamp () | |
getRequestId () | |
getRootJobParams () | |
getTitle () | |
getType () | |
hasExecutionFlag ( $flag) | |
hasRootJobParams () | |
ignoreDuplicates () | |
Whether the queue should reject insertion of this job if a duplicate exists. More... | |
isRootJob () | |
run () | |
Run the job. More... | |
setMetadata ( $field, $value) | |
teardown ( $status) | |
Do any final cleanup after run(), deferred updates, and all DB commits happen. More... | |
toString () | |
workItemCount () | |
Static Public Member Functions | |
static | factory ( $command, $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... | |
int | $executionFlags = 0 |
Bitfield of JOB_* class constants. More... | |
bool | $removeDuplicates = false |
Expensive jobs may set this to true. More... | |
callable[] | $teardownCallbacks = [] |
Title | $title |
Class to both describe a background job and handle jobs.
To push jobs onto queues, use JobQueueGroup::singleton()->push();
Job::__construct | ( | $command, | |
$params = null |
|||
) |
string | $command | |
array | Title | null | $params |
Reimplemented in DeletePageJob, ReplaceTextJob, and CreatePdfThumbnailsJob.
Definition at line 113 of file Job.php.
References $command, $params, $title, WebRequest\getRequestId(), Title\makeTitle(), NS_SPECIAL, and title.
|
protected |
callable | $callback | A function with one parameter, the success status, which will be false if the job failed or it succeeded but the DB changes could not be committed or any deferred updates threw an exception. (This parameter was added in 1.28.) |
Definition at line 355 of file Job.php.
Referenced by AssembleUploadChunksJob\run(), PublishStashedFileJob\run(), and ReplaceTextJob\run().
Job::allowRetries | ( | ) |
Reimplemented in PublishStashedFileJob, ThumbnailRenderJob, and AssembleUploadChunksJob.
|
static |
Create the appropriate object to handle a specific job.
InvalidArgumentException |
Definition at line 72 of file Job.php.
References $command, $handler, $job, $params, $title, $wgJobClasses, Title\makeTitle(), and NS_SPECIAL.
Referenced by JobQueueDB\doPop(), JobQueueRedis\getJobFromFields(), JobQueueRedis\getJobFromUidInternal(), JobQueueDB\getJobIterator(), JobQueueMemory\jobFromSpecInternal(), RenameuserSQL\rename(), and JobTest\testJobFactory().
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.
Reimplemented in RefreshLinksJob, CategoryMembershipChangeJob, HTMLCacheUpdateJob, PublishStashedFileJob, AssembleUploadChunksJob, and ClearUserWatchlistJob.
Definition at line 270 of file Job.php.
References getParams(), getTitle(), and getType().
Job::getMetadata | ( | $field = null | ) |
string | null | $field | Metadata field or null to get all the metadata |
Definition at line 166 of file Job.php.
References $metadata.
Referenced by setMetadata().
Job::getParams | ( | ) |
Implements IJobSpecification.
Definition at line 157 of file Job.php.
References $params.
Referenced by getDeduplicationInfo(), and ClearUserWatchlistJob\run().
Job::getQueuedTimestamp | ( | ) |
Definition at line 205 of file Job.php.
References wfTimestampOrNull().
Referenced by getReadyTimestamp().
Job::getReadyTimestamp | ( | ) |
Definition at line 225 of file Job.php.
References getQueuedTimestamp(), and getReleaseTimestamp().
Job::getReleaseTimestamp | ( | ) |
Implements IJobSpecification.
Definition at line 195 of file Job.php.
References wfTimestampOrNull().
Referenced by getReadyTimestamp().
Job::getRequestId | ( | ) |
Definition at line 217 of file Job.php.
Referenced by DeletePageJob\run().
Job::getRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 324 of file Job.php.
References null.
Referenced by HTMLCacheUpdateJob\run(), and RefreshLinksJob\run().
Job::getTitle | ( | ) |
Implements IJobSpecification.
Definition at line 150 of file Job.php.
References $title.
Referenced by getDeduplicationInfo(), and ClearUserWatchlistJob\run().
Job::getType | ( | ) |
Implements IJobSpecification.
Definition at line 143 of file Job.php.
References $command.
Referenced by JobQueueGroup\ack(), JobQueue\ack(), JobQueueGroup\deduplicateRootJob(), and getDeduplicationInfo().
Job::hasExecutionFlag | ( | $flag | ) |
Job::hasRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 336 of file Job.php.
Referenced by 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 240 of file Job.php.
References $removeDuplicates.
Job::isRootJob | ( | ) |
Implements IJobSpecification.
Definition at line 345 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 311 of file Job.php.
References wfTimestampNow().
Referenced by HTMLCacheUpdateJob\newForBacklinks(), LinksUpdate\queueRecursiveJobsForTable(), RefreshLinksPartitionTest\testRefreshLinks(), and JobQueueTest\testRootDeduplication().
|
abstract |
Run the job.
Reimplemented in DoubleRedirectJob, EnqueueJob, RefreshLinksJob, CategoryMembershipChangeJob, HTMLCacheUpdateJob, NullJob, RecentChangesUpdateJob, DuplicateJob, ClearWatchlistNotificationsJob, ActivityUpdateJob, RenameUserJob, ClearUserWatchlistJob, ReplaceTextJob, CdnPurgeJob, DeleteLinksJob, PublishStashedFileJob, AssembleUploadChunksJob, EmaillingJob, EnotifNotifyJob, ThumbnailRenderJob, UserGroupExpiryJob, CreatePdfThumbnailsJob, and DeletePageJob.
|
protected |
Definition at line 429 of file Job.php.
Referenced by ThumbnailRenderJob\hitThumbUrl(), ThumbnailRenderJob\run(), AssembleUploadChunksJob\run(), PublishStashedFileJob\run(), DeleteLinksJob\run(), ClearUserWatchlistJob\run(), CategoryMembershipChangeJob\run(), RefreshLinksJob\run(), DoubleRedirectJob\run(), and RefreshLinksJob\runForTitle().
Job::setMetadata | ( | $field, | |
$value | |||
) |
string | $field | Key name to set the value for |
mixed | $value | The value to set the field for |
Definition at line 180 of file Job.php.
References $value, and getMetadata().
Job::teardown | ( | $status | ) |
Job::toString | ( | ) |
Definition at line 373 of file Job.php.
References $command, $s, $value, as, captcha-old\count, FormatJson\encode(), string, and title.
Job::workItemCount | ( | ) |
Reimplemented in RefreshLinksJob, and HTMLCacheUpdateJob.
string Job::$command |
Definition at line 32 of file Job.php.
Referenced by __construct(), factory(), getType(), and toString().
|
protected |
Text for error that occurred last.
Definition at line 47 of file Job.php.
Referenced by getLastError(), and setLastError().
|
protected |
array Job::$metadata = [] |
Additional queue metadata.
Definition at line 38 of file Job.php.
Referenced by getMetadata(), and CreatePdfThumbnailsJob\insertJobs().
array Job::$params |
Array of job parameters.
Definition at line 35 of file Job.php.
Referenced by DeletePageJob\__construct(), CreatePdfThumbnailsJob\__construct(), UserGroupExpiryJob\__construct(), EnotifNotifyJob\__construct(), RecentChangesUpdateJob\__construct(), ThumbnailRenderJob\__construct(), AssembleUploadChunksJob\__construct(), EmaillingJob\__construct(), PublishStashedFileJob\__construct(), ClearUserWatchlistJob\__construct(), CdnPurgeJob\__construct(), ActivityUpdateJob\__construct(), DeleteLinksJob\__construct(), ReplaceTextJob\__construct(), DuplicateJob\__construct(), ClearWatchlistNotificationsJob\__construct(), HTMLCacheUpdateJob\__construct(), RenameUserJob\__construct(), EnqueueJob\__construct(), RefreshLinksJob\__construct(), DoubleRedirectJob\__construct(), NullJob\__construct(), CategoryMembershipChangeJob\__construct(), __construct(), factory(), getParams(), RefreshLinksJob\newDynamic(), HTMLCacheUpdateJob\newForBacklinks(), RefreshLinksJob\newPrioritized(), and NullJob\run().
|
protected |
Expensive jobs may set this to true.
Definition at line 44 of file Job.php.
Referenced by ignoreDuplicates().
|
protected |
Definition at line 41 of file Job.php.
Referenced by DeletePageJob\__construct(), CreatePdfThumbnailsJob\__construct(), ThumbnailRenderJob\__construct(), EnotifNotifyJob\__construct(), RecentChangesUpdateJob\__construct(), AssembleUploadChunksJob\__construct(), PublishStashedFileJob\__construct(), ReplaceTextJob\__construct(), ActivityUpdateJob\__construct(), DeleteLinksJob\__construct(), CdnPurgeJob\__construct(), DuplicateJob\__construct(), ClearWatchlistNotificationsJob\__construct(), HTMLCacheUpdateJob\__construct(), RenameUserJob\__construct(), EnqueueJob\__construct(), RefreshLinksJob\__construct(), DoubleRedirectJob\__construct(), NullJob\__construct(), CategoryMembershipChangeJob\__construct(), __construct(), factory(), DoubleRedirectJob\fixRedirects(), DoubleRedirectJob\getFinalDestination(), getTitle(), CreatePdfThumbnailsJob\insertJobs(), HTMLCacheUpdateJob\invalidateTitles(), RefreshLinksJob\newDynamic(), HTMLCacheUpdateJob\newForBacklinks(), RefreshLinksJob\newPrioritized(), CategoryMembershipChangeJob\newSpec(), CategoryMembershipChangeJob\notifyUpdatesForRevision(), NullJob\run(), HTMLCacheUpdateJob\run(), RefreshLinksJob\run(), and RefreshLinksJob\runForTitle().