MediaWiki REL1_39
|
Job to update link tables for pages. More...
Public Member Functions | ||||
__construct (PageIdentity $page, array $params) | ||||
getDeduplicationInfo () | ||||
Subclasses may need to override this to make duplication detection work. | ||||
run () | ||||
Run the job. | ||||
workItemCount () | ||||
Public Member Functions inherited from Job | ||||
__construct ( $command, $params=null) | ||||
allowRetries () | ||||
| ||||
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. | ||||
isRootJob () | ||||
setMetadata ( $field, $value) | ||||
teardown ( $status) | ||||
toString () | ||||
| ||||
Public Member Functions inherited from RunnableJob | ||||
tearDown ( $status) | ||||
Do any final cleanup after run(), deferred updates, and all DB commits happen. | ||||
Static Public Member Functions | |
static | newDynamic (PageIdentity $page, array $params) |
static | newPrioritized (PageIdentity $page, array $params) |
Static Public Member Functions inherited from Job | |
static | factory ( $command, $params=[]) |
Create the appropriate object to handle a specific job. | |
static | newRootJobParams ( $key) |
Get "root job" parameters for a task. | |
Protected Member Functions | |
runForTitle (PageIdentity $pageIdentity) | |
Protected Member Functions inherited from Job | |
addTeardownCallback ( $callback) | |
setLastError ( $error) | |
Additional Inherited Members | |
Public Attributes inherited from Job | |
string | $command |
array | $metadata = [] |
Additional queue metadata. | |
array | $params |
Array of job parameters. | |
Protected Attributes inherited from Job | |
string | $error |
Text for error that occurred last. | |
int | $executionFlags = 0 |
Bitfield of JOB_* class constants. | |
bool | $removeDuplicates = false |
Expensive jobs may set this to true. | |
callable[] | $teardownCallbacks = [] |
Title | $title |
Job to update link tables for pages.
This job comes in a few variants:
Metrics:
refreshlinks_warning.<warning>
: A recoverable issue. The job will continue as normal.refreshlinks_outcome.<reason>
: If the job ends with an unusual outcome, it will increment this exactly once. The reason starts with bad_
, a failure is logged and the job may be retried later. The reason starts with good_
, the job was cancelled and considered a success, i.e. it was superseded. Definition at line 58 of file RefreshLinksJob.php.
RefreshLinksJob::__construct | ( | PageIdentity | $page, |
array | $params ) |
Definition at line 64 of file RefreshLinksJob.php.
References MediaWiki\Page\PageIdentity\canExist().
RefreshLinksJob::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.
Reimplemented from Job.
Definition at line 448 of file RefreshLinksJob.php.
|
static |
PageIdentity | $page | |
array | $params |
Definition at line 105 of file RefreshLinksJob.php.
References $job.
|
static |
PageIdentity | $page | |
array | $params |
Definition at line 93 of file RefreshLinksJob.php.
References $job.
Referenced by MediaWiki\Deferred\LinksUpdate\LinksUpdate\queueRecursiveJobs().
RefreshLinksJob::run | ( | ) |
Run the job.
Implements RunnableJob.
Definition at line 112 of file RefreshLinksJob.php.
References $title, Job\getRootJobParams(), BacklinkJobUtils\partitionBacklinkJob(), runForTitle(), and Job\setLastError().
|
protected |
PageIdentity | $pageIdentity |
Definition at line 173 of file RefreshLinksJob.php.
References DB_PRIMARY, and Job\setLastError().
Referenced by run().
RefreshLinksJob::workItemCount | ( | ) |
Reimplemented from Job.
Definition at line 464 of file RefreshLinksJob.php.