Go to the documentation of this file.
76 if ( !isset( self::$instances[
$domain] ) ) {
85 self::$instances[
$domain]->invalidWiki =
true;
89 return self::$instances[
$domain];
98 self::$instances = [];
117 if ( !isset( $conf[
'readOnlyReason'] ) ) {
134 public function push( $jobs ) {
137 if ( $this->invalidWiki ) {
139 $e =
new LogicException(
"Domain '{$this->domain}' is not recognized." );
144 $jobs = is_array( $jobs ) ? $jobs : [ $jobs ];
145 if ( !
count( $jobs ) ) {
152 foreach ( $jobs
as $job ) {
153 $jobsByType[
$job->getType()][] =
$job;
156 foreach ( $jobsByType
as $type => $jobs ) {
160 if ( $this->
cache->hasField(
'queues-ready',
'list' ) ) {
161 $list = $this->
cache->getField(
'queues-ready',
'list' );
162 if (
count( array_diff( array_keys( $jobsByType ), $list ) ) ) {
163 $this->
cache->clear(
'queues-ready' );
169 $cache->makeGlobalKey(
'jobqueue', $this->domain,
'hasjobs', self::TYPE_ANY ),
175 $cache->makeGlobalKey(
'jobqueue', $this->domain,
'hasjobs', self::TYPE_DEFAULT ),
194 if ( $this->invalidWiki ) {
196 throw new LogicException(
"Domain '{$this->domain}' is not recognized." );
199 if ( PHP_SAPI ===
'cli' || PHP_SAPI ===
'phpdbg' ) {
200 $this->
push( $jobs );
204 $jobs = is_array( $jobs ) ? $jobs : [ $jobs ];
234 public function pop( $qtype = self::TYPE_DEFAULT, $flags = 0,
array $blacklist = [] ) {
237 if ( is_string( $qtype ) ) {
238 if ( !in_array( $qtype, $blacklist ) ) {
239 $job = $this->
get( $qtype )->
pop();
242 if ( $flags & self::USE_CACHE ) {
243 if ( !$this->
cache->hasField(
'queues-ready',
'list', self::PROC_CACHE_TTL ) ) {
246 $types = $this->
cache->getField(
'queues-ready',
'list' );
251 if ( $qtype == self::TYPE_DEFAULT ) {
255 $types = array_diff( $types, $blacklist );
263 $this->
cache->clear(
'queues-ready' );
325 return array_diff( $this->
getQueueTypes(), $wgJobTypesExcludedFromDefaultQueue );
337 $key =
$cache->makeGlobalKey(
'jobqueue', $this->domain,
'hasjobs',
$type );
342 if (
$type == self::TYPE_DEFAULT ) {
349 return (
$value ===
'true' );
360 $nonEmpty = $info[
'queue']->getSiblingQueuesWithJobs( $this->
getQueueTypes() );
361 if ( is_array( $nonEmpty ) ) {
362 $types = array_merge( $types, $nonEmpty );
364 foreach ( $info[
'types']
as $type ) {
365 if ( !$this->
get( $type )->isEmpty() ) {
383 $sizes = $info[
'queue']->getSiblingQueueSizes( $this->
getQueueTypes() );
384 if ( is_array( $sizes ) ) {
385 $sizeMap = $sizeMap + $sizes;
387 foreach ( $info[
'types']
as $type ) {
388 $sizeMap[
$type] = $this->
get(
$type )->getSize();
402 if ( $this->coalescedQueues ===
null ) {
403 $this->coalescedQueues = [];
406 [
'wiki' => $this->domain,
'type' =>
'null' ] + $conf );
407 $loc =
$queue->getCoalesceLocationInternal();
408 if ( !isset( $this->coalescedQueues[$loc] ) ) {
409 $this->coalescedQueues[$loc][
'queue'] =
$queue;
410 $this->coalescedQueues[$loc][
'types'] = [];
412 if (
$type ===
'default' ) {
413 $this->coalescedQueues[$loc][
'types'] = array_merge(
414 $this->coalescedQueues[$loc][
'types'],
418 $this->coalescedQueues[$loc][
'types'][] =
$type;
438 $cache->makeGlobalKey(
'jobqueue',
'configvalue', $this->domain,
$name ),
439 $cache::TTL_DAY + mt_rand( 0, $cache::TTL_DAY ),
457 foreach ( $jobs
as $job ) {
459 throw new InvalidArgumentException(
"Expected IJobSpecification objects" );
$wgConf
wgConf hold the site configuration.
static isCurrentWikiDbDomain( $domain)
pop( $qtype=self::TYPE_DEFAULT, $flags=0, array $blacklist=[])
Pop a job off one of the job queues.
waitForBackups()
Wait for any replica DBs or backup queue servers to catch up.
static getCurrentWikiDbDomain()
static getLocalClusterInstance()
Get the main cluster-local cache object.
$wgJobTypeConf
Map of job types to configuration arrays.
array $coalescedQueues
Map of (bucket => (queue => JobQueue, types => list of types)
Enqueue lazy-pushed jobs that have accumulated from JobQueueGroup.
bool $invalidWiki
Whether the wiki is not recognized in configuration.
wfConfiguredReadOnlyReason()
Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
static JobQueueGroup[] $instances
queuesHaveJobs( $type=self::TYPE_ANY)
Check if there are any queues with jobs (this is cached)
static destroySingletons()
Destroy the singleton instances.
you have access to all of the normal MediaWiki so you can get a DB use the cache
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
Class to both describe a background job and handle jobs.
set( $key, $prop, $value)
Set a property field for a cache entry.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
string $domain
Wiki DB domain ID.
push( $jobs)
Insert jobs into the respective queues of which they belong.
Handles a simple LRU key/value map with a maximum number of entries.
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
getCachedConfigVar( $name)
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
static pushLazyJobs()
Push all jobs buffered via lazyPush() into their respective queues.
static getWikiIdFromDomain( $domain)
Get the wiki ID of a database domain.
$wgLocalDatabases
Other wikis on this site, can be administered from a single developer account.
Allows to change the fields on the form that will be generated $name
$wgJobTypesExcludedFromDefaultQueue
Jobs that must be explicitly requested, i.e.
getDefaultQueueTypes()
Get the list of default queue types.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
string bool $readOnlyReason
Read only rationale (or false if r/w)
static factory(array $params)
Get a job queue object of the specified type.
get( $key, $prop)
Get a property field for a cache entry.
deduplicateRootJob(Job $job)
Register the "root job" of a given job into the queue for de-duplication.
ack(Job $job)
Acknowledge that a job was completed.
static singleton( $domain=false)
static getMainWANInstance()
Get the main WAN cache object.
assertValidJobs(array $jobs)
if(count( $args)< 1) $job
getQueueTypes()
Get the list of queue types.
getQueuesWithJobs()
Get the list of job types that have non-empty queues.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Class for process caching individual properties of expiring items.
getQueueSizes()
Get the size of the queus for a list of job types.
Job queue task description interface.
lazyPush( $jobs)
Buffer jobs for insertion via push() or call it now if in CLI mode.
Class to handle enqueueing of background jobs.
static logException( $e, $catcher=self::CAUGHT_BY_OTHER)
Log an exception to the exception log (if enabled).
__construct( $domain, $readOnlyReason)