MediaWiki REL1_32
|
Custom job to perform updates on tables in busier environments. More...
Public Member Functions | |
__construct (Title $title, $params=[]) | |
run () | |
Run the job. | |
Public Member Functions inherited from Job | |
__construct ( $command, $title, $params=false) | |
allowRetries () | |
getDeduplicationInfo () | |
Subclasses may need to override this to make duplication detection work. | |
getLastError () | |
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 () | |
teardown ( $status) | |
Do any final cleanup after run(), deferred updates, and all DB commits happen. | |
toString () | |
workItemCount () | |
Static Private Attributes | |
static array | $actorMigratedColumns |
Core tables+columns that are being migrated to the actor table. | |
Additional Inherited Members | |
Static Public Member Functions inherited from Job | |
static | factory ( $command, Title $title, $params=[]) |
Create the appropriate object to handle a specific job. | |
static | newRootJobParams ( $key) |
Get "root job" parameters for a task. | |
Public Attributes inherited from Job | |
string | $command |
array | $metadata = [] |
Additional queue metadata. | |
array | $params |
Array of job parameters. | |
Protected Member Functions inherited from Job | |
addTeardownCallback ( $callback) | |
setLastError ( $error) | |
Protected Attributes inherited from Job | |
string | $error |
Text for error that occurred last. | |
int | $executionFlags = 0 |
Bitfield of JOB_* class constants. | |
bool | $removeDuplicates |
Expensive jobs may set this to true. | |
callable[] | $teardownCallbacks = [] |
Title | $title |
Custom job to perform updates on tables in busier environments.
Job parameters include:
Additionally, one of the following groups of parameters must be set: a) The timestamp based rename paramaters:
To avoid some race conditions, the following parameters should be set:
Definition at line 28 of file RenameUserJob.php.
RenameUserJob::__construct | ( | Title | $title, |
$params = [] ) |
Definition at line 41 of file RenameUserJob.php.
References Job\$params.
RenameUserJob::run | ( | ) |
Run the job.
Reimplemented from Job.
Definition at line 45 of file RenameUserJob.php.
References $wgUpdateRowsPerQuery, DB_MASTER, RenameuserSQL\getActorMigrationStage(), MIGRATION_NEW, wfDebugLog(), and wfGetDB().
|
staticprivate |
Core tables+columns that are being migrated to the actor
table.
Definition at line 30 of file RenameUserJob.php.