MediaWiki  1.29.1
runJobs.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
27 
33 class RunJobs extends Maintenance {
34  public function __construct() {
35  parent::__construct();
36  $this->addDescription( 'Run pending jobs' );
37  $this->addOption( 'maxjobs', 'Maximum number of jobs to run', false, true );
38  $this->addOption( 'maxtime', 'Maximum amount of wall-clock time', false, true );
39  $this->addOption( 'type', 'Type of job to run', false, true );
40  $this->addOption( 'procs', 'Number of processes to use', false, true );
41  $this->addOption( 'nothrottle', 'Ignore job throttling configuration', false, false );
42  $this->addOption( 'result', 'Set to JSON to print only a JSON response', false, true );
43  $this->addOption( 'wait', 'Wait for new jobs instead of exiting', false, false );
44  }
45 
46  public function memoryLimit() {
47  if ( $this->hasOption( 'memory-limit' ) ) {
48  return parent::memoryLimit();
49  }
50 
51  // Don't eat all memory on the machine if we get a bad job.
52  return "150M";
53  }
54 
55  public function execute() {
56  if ( $this->hasOption( 'procs' ) ) {
57  $procs = intval( $this->getOption( 'procs' ) );
58  if ( $procs < 1 || $procs > 1000 ) {
59  $this->error( "Invalid argument to --procs", true );
60  } elseif ( $procs != 1 ) {
61  $fc = new ForkController( $procs );
62  if ( $fc->start() != 'child' ) {
63  exit( 0 );
64  }
65  }
66  }
67 
68  $outputJSON = ( $this->getOption( 'result' ) === 'json' );
69  $wait = $this->hasOption( 'wait' );
70 
71  $runner = new JobRunner( LoggerFactory::getInstance( 'runJobs' ) );
72  if ( !$outputJSON ) {
73  $runner->setDebugHandler( [ $this, 'debugInternal' ] );
74  }
75 
76  $type = $this->getOption( 'type', false );
77  $maxJobs = $this->getOption( 'maxjobs', false );
78  $maxTime = $this->getOption( 'maxtime', false );
79  $throttle = !$this->hasOption( 'nothrottle' );
80 
81  while ( true ) {
82  $response = $runner->run( [
83  'type' => $type,
84  'maxJobs' => $maxJobs,
85  'maxTime' => $maxTime,
86  'throttle' => $throttle,
87  ] );
88 
89  if ( $outputJSON ) {
90  $this->output( FormatJson::encode( $response, true ) );
91  }
92 
93  if (
94  !$wait ||
95  $response['reached'] === 'time-limit' ||
96  $response['reached'] === 'job-limit' ||
97  $response['reached'] === 'memory-limit'
98  ) {
99  break;
100  }
101 
102  if ( $maxJobs !== false ) {
103  $maxJobs -= count( $response['jobs'] );
104  }
105 
106  sleep( 1 );
107  }
108  }
109 
113  public function debugInternal( $s ) {
114  $this->output( $s );
115  }
116 }
117 
118 $maintClass = "RunJobs";
119 require_once RUN_MAINTENANCE_IF_MAIN;
RunJobs
Maintenance script that runs pending jobs.
Definition: runJobs.php:33
RunJobs\execute
execute()
Do the actual work.
Definition: runJobs.php:55
ForkController
Class for managing forking command line scripts.
Definition: ForkController.php:33
RunJobs\memoryLimit
memoryLimit()
Normally we disable the memory_limit when running admin scripts.
Definition: runJobs.php:46
captcha-old.count
count
Definition: captcha-old.py:225
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
RunJobs\debugInternal
debugInternal( $s)
Definition: runJobs.php:113
$s
$s
Definition: mergeMessageFileList.php:188
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
$type
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition: hooks.txt:2536
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
FormatJson\encode
static encode( $value, $pretty=false, $escaping=0)
Returns the JSON representation of a value.
Definition: FormatJson.php:127
RunJobs\__construct
__construct()
Default constructor.
Definition: runJobs.php:34
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:215
$response
this hook is for auditing only $response
Definition: hooks.txt:783
$maintClass
$maintClass
Definition: runJobs.php:118
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:250
LoggerFactory
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
Maintenance\error
error( $err, $die=0)
Throw an error to the user.
Definition: Maintenance.php:392
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
$wait
$wait
Definition: styleTest.css.php:46
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:236
JobRunner
Job queue runner utility methods.
Definition: JobRunner.php:40