MediaWiki REL1_32
JobQueueAggregatorRedis.php
Go to the documentation of this file.
1<?php
22use Psr\Log\LoggerInterface;
23
35 protected $redisPool;
37 protected $logger;
39 protected $servers;
40
50 public function __construct( array $params ) {
51 parent::__construct( $params );
52 $this->servers = $params['redisServers'] ?? [ $params['redisServer'] ]; // b/c
53 $params['redisConfig']['serializer'] = 'none';
54 $this->redisPool = RedisConnectionPool::singleton( $params['redisConfig'] );
55 $this->logger = \MediaWiki\Logger\LoggerFactory::getInstance( 'redis' );
56 }
57
58 protected function doNotifyQueueEmpty( $wiki, $type ) {
59 return true; // managed by the service
60 }
61
62 protected function doNotifyQueueNonEmpty( $wiki, $type ) {
63 return true; // managed by the service
64 }
65
66 protected function doGetAllReadyWikiQueues() {
67 $conn = $this->getConnection();
68 if ( !$conn ) {
69 return [];
70 }
71 try {
72 $map = $conn->hGetAll( $this->getReadyQueueKey() );
73
74 if ( is_array( $map ) && isset( $map['_epoch'] ) ) {
75 unset( $map['_epoch'] ); // ignore
76 $pendingDBs = []; // (type => list of wikis)
77 foreach ( $map as $key => $time ) {
78 list( $type, $wiki ) = $this->decodeQueueName( $key );
79 $pendingDBs[$type][] = $wiki;
80 }
81 } else {
82 throw new UnexpectedValueException(
83 "No queue listing found; make sure redisJobChronService is running."
84 );
85 }
86
87 return $pendingDBs;
88 } catch ( RedisException $e ) {
89 $this->redisPool->handleError( $conn, $e );
90
91 return [];
92 }
93 }
94
95 protected function doPurge() {
96 return true; // fully and only refreshed by the service
97 }
98
105 protected function getConnection() {
106 $conn = false;
107 foreach ( $this->servers as $server ) {
108 $conn = $this->redisPool->getConnection( $server, $this->logger );
109 if ( $conn ) {
110 break;
111 }
112 }
113
114 return $conn;
115 }
116
120 private function getReadyQueueKey() {
121 return "jobqueue:aggregator:h-ready-queues:v2"; // global
122 }
123
128 private function decodeQueueName( $name ) {
129 list( $type, $wiki ) = explode( '/', $name, 2 );
130
131 return [ rawurldecode( $type ), rawurldecode( $wiki ) ];
132 }
133}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Class to handle tracking information about all queues using PhpRedis.
array $servers
List of Redis server addresses.
getConnection()
Get a connection to the server that handles all sub-queues for this queue.
Class to handle tracking information about all queues.
Helper class to manage Redis connections.
static singleton(array $options)
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
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
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition hooks.txt:1841
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
returning false will NOT prevent logging $e
Definition hooks.txt:2226
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
storage can be distributed across multiple servers
Definition memcached.txt:33
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))
$params