MediaWiki  1.29.2
JobRunner Class Reference

Job queue runner utility methods. More...

Inheritance diagram for JobRunner:
Collaboration diagram for JobRunner:

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
 
const READONLY_BACKOFF_TTL = 30
 

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)
 
 getErrorBackoffTTL ( $error)
 
 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...
 

Detailed Description

Job queue runner utility methods.

Since
1.24

Definition at line 40 of file JobRunner.php.

Constructor & Destructor Documentation

◆ __construct()

JobRunner::__construct ( LoggerInterface  $logger = null)
Parameters
LoggerInterface$logger

Definition at line 72 of file JobRunner.php.

References $logger, and setLogger().

Member Function Documentation

◆ checkMemoryOK()

JobRunner::checkMemoryOK ( )
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.

Returns
bool

Definition at line 475 of file JobRunner.php.

References debugCallback(), and list.

Referenced by run().

◆ commitMasterChanges()

JobRunner::commitMasterChanges ( LBFactory  $lbFactory,
Job  $job,
  $fnameTrxOwner 
)
private

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.

Parameters
LBFactory$lbFactory
Job$job
string$fnameTrxOwner
Exceptions
DBError

Definition at line 520 of file JobRunner.php.

References $job, $lbFactory, $time, debugCallback(), global, use, and wfWikiID().

Referenced by executeJob().

◆ debugCallback()

JobRunner::debugCallback (   $msg)
private

Log the job message.

Parameters
string$msgThe message to log

Definition at line 503 of file JobRunner.php.

References wfTimestamp().

Referenced by checkMemoryOK(), commitMasterChanges(), and executeJob().

◆ executeJob()

JobRunner::executeJob ( Job  $job,
LBFactory  $lbFactory,
  $stats,
  $popTime 
)
private
Parameters
Job$job
LBFactory$lbFactory
StatsdDataFactory$stats
float$popTime
Returns
array Map of status/error/timeMs

Definition at line 277 of file JobRunner.php.

References $e, $job, $lbFactory, $status, DeferredUpdates\addCallableUpdate(), class, commitMasterChanges(), debugCallback(), DeferredUpdates\doUpdates(), getMaxRssKb(), MWExceptionHandler\logException(), MWExceptionHandler\rollbackMasterChangesAndLog(), and wfTimestamp().

Referenced by run().

◆ getBackoffTimeToWait()

JobRunner::getBackoffTimeToWait ( Job  $job)
private
Parameters
Job$job
Returns
int Seconds for this runner to avoid doing more jobs of this type
See also
$wgJobBackoffThrottling

Definition at line 364 of file JobRunner.php.

References $job, and global.

Referenced by run().

◆ getErrorBackoffTTL()

JobRunner::getErrorBackoffTTL (   $error)
private
Parameters
string$error
Returns
int TTL in seconds

Definition at line 264 of file JobRunner.php.

References ERROR_BACKOFF_TTL, and READONLY_BACKOFF_TTL.

Referenced by run().

◆ getMaxRssKb()

JobRunner::getMaxRssKb ( )
private
Returns
int|null Max memory RSS in kilobytes

Definition at line 353 of file JobRunner.php.

References wfGetRusage().

Referenced by executeJob().

◆ loadBackoffs()

JobRunner::loadBackoffs ( array  $backoffs,
  $mode = 'wait' 
)
private

Get the previous backoff expiries from persistent storage On I/O or lock acquisition failure this returns the original $backoffs.

Parameters
array$backoffsMap of (job type => UNIX timestamp)
string$modeLock wait mode - "wait" or "nowait"
Returns
array Map of (job type => backoff expiry timestamp)

Definition at line 398 of file JobRunner.php.

References $content, $type, as, and wfTempDir().

Referenced by syncBackoffDeltas().

◆ run()

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:

  • type : the job type
  • status : ok/failed
  • error : any error message string
  • time : the job run time in ms The response map also has:
  • backoffs : the (job type => seconds) map of backoff times
  • elapsed : the total time spent running tasks in ms
  • reached : the reason the script finished, one of (none-ready, job-limit, time-limit, memory-limit)

This method outputs status information only if a debug handler was set. Any exceptions are caught and logged, but are not reported as output.

Parameters
array$optionsMap of parameters:
  • type : the job type (or false for the default types)
  • maxJobs : maximum number of jobs to run
  • maxTime : maximum time in seconds before stopping
  • throttle : whether to respect job backoff configuration
Returns
array Summary response that can easily be JSON serialized

Definition at line 103 of file JobRunner.php.

References $e, $job, $lbFactory, $options, $response, $type, $wait, checkMemoryOK(), executeJob(), false, getBackoffTimeToWait(), getErrorBackoffTTL(), global, Profiler\instance(), list, WebRequest\overrideRequestId(), JobQueueGroup\singleton(), syncBackoffDeltas(), JobQueueGroup\TYPE_DEFAULT, JobQueueGroup\USE_CACHE, wfReadOnly(), and wfWikiID().

◆ setDebugHandler()

JobRunner::setDebugHandler (   $debug)
Parameters
callable$debugOptional debug output handler

Definition at line 57 of file JobRunner.php.

References $debug.

◆ setLogger()

JobRunner::setLogger ( LoggerInterface  $logger)
Parameters
LoggerInterface$logger
Returns
void

Definition at line 65 of file JobRunner.php.

References $logger.

Referenced by __construct().

◆ syncBackoffDeltas()

JobRunner::syncBackoffDeltas ( array  $backoffs,
array $deltas,
  $mode = 'wait' 
)
private

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.

Parameters
array$backoffsMap of (job type => UNIX timestamp)
array$deltasMap of (job type => seconds)
string$modeLock wait mode - "wait" or "nowait"
Returns
array The new backoffs account for $backoffs and the latest file data

Definition at line 435 of file JobRunner.php.

References $content, $type, as, loadBackoffs(), and wfTempDir().

Referenced by run().

Member Data Documentation

◆ $debug

callable null JobRunner::$debug
protected

Debug output handler.

Definition at line 42 of file JobRunner.php.

Referenced by setDebugHandler().

◆ $logger

LoggerInterface JobRunner::$logger
protected

Definition at line 47 of file JobRunner.php.

Referenced by __construct(), and setLogger().

◆ ERROR_BACKOFF_TTL

const JobRunner::ERROR_BACKOFF_TTL = 1

Definition at line 51 of file JobRunner.php.

Referenced by getErrorBackoffTTL().

◆ LAG_CHECK_PERIOD

const JobRunner::LAG_CHECK_PERIOD = 1.0

Definition at line 50 of file JobRunner.php.

◆ MAX_ALLOWED_LAG

const JobRunner::MAX_ALLOWED_LAG = 3

Definition at line 49 of file JobRunner.php.

◆ READONLY_BACKOFF_TTL

const JobRunner::READONLY_BACKOFF_TTL = 30

Definition at line 52 of file JobRunner.php.

Referenced by getErrorBackoffTTL().


The documentation for this class was generated from the following file: