MediaWiki
1.28.0
|
Job queue runner utility methods. More...
Public Member Functions | |
__construct (LoggerInterface $logger=null) | |
run (array $options) | |
Run jobs of the specified number/type for the specified time. More... | |
setDebugHandler ($debug) | |
setLogger (LoggerInterface $logger) | |
Public Attributes | |
const | ERROR_BACKOFF_TTL = 1 |
const | LAG_CHECK_PERIOD = 1.0 |
const | MAX_ALLOWED_LAG = 3 |
Protected Attributes | |
callable null | $debug |
Debug output handler. More... | |
$logger | |
Private Member Functions | |
checkMemoryOK () | |
Make sure that this script is not too close to the memory usage limit. More... | |
commitMasterChanges (LBFactory $lbFactory, Job $job, $fnameTrxOwner) | |
Issue a commit on all masters who are currently in a transaction and have made changes to the database. More... | |
debugCallback ($msg) | |
Log the job message. More... | |
executeJob (Job $job, LBFactory $lbFactory, $stats, $popTime) | |
getBackoffTimeToWait (Job $job) | |
getMaxRssKb () | |
loadBackoffs (array $backoffs, $mode= 'wait') | |
Get the previous backoff expiries from persistent storage On I/O or lock acquisition failure this returns the original $backoffs. More... | |
syncBackoffDeltas (array $backoffs, array &$deltas, $mode= 'wait') | |
Merge the current backoff expiries from persistent storage. More... | |
JobRunner::__construct | ( | LoggerInterface | $logger = null | ) |
LoggerInterface | $logger |
Definition at line 68 of file JobRunner.php.
References $logger, and setLogger().
|
private |
Make sure that this script is not too close to the memory usage limit.
It is better to die in between jobs than OOM right in the middle of one.
Definition at line 459 of file JobRunner.php.
References debugCallback(), and list.
Referenced by run().
Issue a commit on all masters who are currently in a transaction and have made changes to the database.
It also supports sometimes waiting for the local wiki's replica DBs to catch up. See the documentation for $wgJobSerialCommitThreshold for more.
DBError |
Definition at line 504 of file JobRunner.php.
References $time, LBFactory\commitMasterChanges(), debugCallback(), LBFactory\getMainLB(), global, Job\toString(), use, and wfWikiID().
Referenced by executeJob().
|
private |
Log the job message.
string | $msg | The message to log |
Definition at line 487 of file JobRunner.php.
References TS_DB, and wfTimestamp().
Referenced by checkMemoryOK(), commitMasterChanges(), and executeJob().
Definition at line 263 of file JobRunner.php.
References $e, $status, LBFactory\beginMasterChanges(), commitMasterChanges(), debugCallback(), DeferredUpdates\doUpdates(), LBFactory\flushReplicaSnapshots(), Job\getLastError(), getMaxRssKb(), Job\getReadyTimestamp(), Job\getRootJobParams(), Job\getType(), MWExceptionHandler\logException(), MWExceptionHandler\rollbackMasterChangesAndLog(), Job\run(), Job\teardown(), Job\toString(), TS_UNIX, and wfTimestamp().
Referenced by run().
|
private |
Job | $job |
Definition at line 348 of file JobRunner.php.
References Job\getType(), global, and Job\workItemCount().
Referenced by run().
|
private |
Definition at line 337 of file JobRunner.php.
References wfGetRusage().
Referenced by executeJob().
|
private |
Get the previous backoff expiries from persistent storage On I/O or lock acquisition failure this returns the original $backoffs.
array | $backoffs | Map of (job type => UNIX timestamp) |
string | $mode | Lock wait mode - "wait" or "nowait" |
Definition at line 382 of file JobRunner.php.
References $content, $timestamp, $type, as, and wfTempDir().
Referenced by syncBackoffDeltas().
JobRunner::run | ( | array | $options | ) |
Run jobs of the specified number/type for the specified time.
The response map has a 'job' field that lists status of each job, including:
This method outputs status information only if a debug handler was set. Any exceptions are caught and logged, but are not reported as output.
array | $options | Map of parameters:
|
Definition at line 99 of file JobRunner.php.
References $e, $job, $lbFactory, $response, $type, $wait, checkMemoryOK(), executeJob(), false, getBackoffTimeToWait(), global, Profiler\instance(), list, WebRequest\overrideRequestId(), JobQueueGroup\singleton(), syncBackoffDeltas(), JobQueueGroup\TYPE_DEFAULT, JobQueueGroup\USE_CACHE, wfReadOnly(), and wfWikiID().
JobRunner::setDebugHandler | ( | $debug | ) |
callable | $debug | Optional debug output handler |
Definition at line 53 of file JobRunner.php.
References $debug.
JobRunner::setLogger | ( | LoggerInterface | $logger | ) |
LoggerInterface | $logger |
Definition at line 61 of file JobRunner.php.
References $logger.
Referenced by __construct().
Merge the current backoff expiries from persistent storage.
The $deltas map is set to an empty array on success. On I/O or lock acquisition failure this returns the original $backoffs.
array | $backoffs | Map of (job type => UNIX timestamp) |
array | $deltas | Map of (job type => seconds) |
string | $mode | Lock wait mode - "wait" or "nowait" |
Definition at line 419 of file JobRunner.php.
References $content, $timestamp, $type, as, loadBackoffs(), and wfTempDir().
Referenced by run().
|
protected |
|
protected |
Definition at line 44 of file JobRunner.php.
Referenced by __construct(), and setLogger().
const JobRunner::ERROR_BACKOFF_TTL = 1 |
Definition at line 48 of file JobRunner.php.
const JobRunner::LAG_CHECK_PERIOD = 1.0 |
Definition at line 47 of file JobRunner.php.
const JobRunner::MAX_ALLOWED_LAG = 3 |
Definition at line 46 of file JobRunner.php.