MediaWiki REL1_28
runJobs.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
27
33class 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";
119require_once RUN_MAINTENANCE_IF_MAIN;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Class for managing forking command line scripts.
Job queue runner utility methods.
Definition JobRunner.php:37
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
PSR-3 logger instance factory.
Maintenance script that runs pending jobs.
Definition runJobs.php:33
execute()
Do the actual work.
Definition runJobs.php:55
debugInternal( $s)
Definition runJobs.php:113
memoryLimit()
Normally we disable the memory_limit when running admin scripts.
Definition runJobs.php:46
__construct()
Default constructor.
Definition runJobs.php:34
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
namespace are movable Hooks may change this value to override the return value of MWNamespace::isMovable(). 'NewDifferenceEngine' 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 one of or reset 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:2568
this hook is for auditing only $response
Definition hooks.txt:805
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:37
require_once RUN_MAINTENANCE_IF_MAIN
$maintClass
Definition runJobs.php:118