MediaWiki  1.28.1
RedisBagOStuff.php
Go to the documentation of this file.
1 <?php
28 class RedisBagOStuff extends BagOStuff {
30  protected $redisPool;
32  protected $servers;
34  protected $serverTagMap;
36  protected $automaticFailover;
37 
66  function __construct( $params ) {
67  parent::__construct( $params );
68  $redisConf = [ 'serializer' => 'none' ]; // manage that in this class
69  foreach ( [ 'connectTimeout', 'persistent', 'password' ] as $opt ) {
70  if ( isset( $params[$opt] ) ) {
71  $redisConf[$opt] = $params[$opt];
72  }
73  }
74  $this->redisPool = RedisConnectionPool::singleton( $redisConf );
75 
76  $this->servers = $params['servers'];
77  foreach ( $this->servers as $key => $server ) {
78  $this->serverTagMap[is_int( $key ) ? $server : $key] = $server;
79  }
80 
81  if ( isset( $params['automaticFailover'] ) ) {
82  $this->automaticFailover = $params['automaticFailover'];
83  } else {
84  $this->automaticFailover = true;
85  }
86 
87  $this->attrMap[self::ATTR_SYNCWRITES] = self::QOS_SYNCWRITES_NONE;
88  }
89 
90  protected function doGet( $key, $flags = 0 ) {
91  list( $server, $conn ) = $this->getConnection( $key );
92  if ( !$conn ) {
93  return false;
94  }
95  try {
96  $value = $conn->get( $key );
97  $result = $this->unserialize( $value );
98  } catch ( RedisException $e ) {
99  $result = false;
100  $this->handleException( $conn, $e );
101  }
102 
103  $this->logRequest( 'get', $key, $server, $result );
104  return $result;
105  }
106 
107  public function set( $key, $value, $expiry = 0, $flags = 0 ) {
108  list( $server, $conn ) = $this->getConnection( $key );
109  if ( !$conn ) {
110  return false;
111  }
112  $expiry = $this->convertToRelative( $expiry );
113  try {
114  if ( $expiry ) {
115  $result = $conn->setex( $key, $expiry, $this->serialize( $value ) );
116  } else {
117  // No expiry, that is very different from zero expiry in Redis
118  $result = $conn->set( $key, $this->serialize( $value ) );
119  }
120  } catch ( RedisException $e ) {
121  $result = false;
122  $this->handleException( $conn, $e );
123  }
124 
125  $this->logRequest( 'set', $key, $server, $result );
126  return $result;
127  }
128 
129  public function delete( $key ) {
130  list( $server, $conn ) = $this->getConnection( $key );
131  if ( !$conn ) {
132  return false;
133  }
134  try {
135  $conn->delete( $key );
136  // Return true even if the key didn't exist
137  $result = true;
138  } catch ( RedisException $e ) {
139  $result = false;
140  $this->handleException( $conn, $e );
141  }
142 
143  $this->logRequest( 'delete', $key, $server, $result );
144  return $result;
145  }
146 
147  public function getMulti( array $keys, $flags = 0 ) {
148  $batches = [];
149  $conns = [];
150  foreach ( $keys as $key ) {
151  list( $server, $conn ) = $this->getConnection( $key );
152  if ( !$conn ) {
153  continue;
154  }
155  $conns[$server] = $conn;
156  $batches[$server][] = $key;
157  }
158  $result = [];
159  foreach ( $batches as $server => $batchKeys ) {
160  $conn = $conns[$server];
161  try {
162  $conn->multi( Redis::PIPELINE );
163  foreach ( $batchKeys as $key ) {
164  $conn->get( $key );
165  }
166  $batchResult = $conn->exec();
167  if ( $batchResult === false ) {
168  $this->debug( "multi request to $server failed" );
169  continue;
170  }
171  foreach ( $batchResult as $i => $value ) {
172  if ( $value !== false ) {
173  $result[$batchKeys[$i]] = $this->unserialize( $value );
174  }
175  }
176  } catch ( RedisException $e ) {
177  $this->handleException( $conn, $e );
178  }
179  }
180 
181  $this->debug( "getMulti for " . count( $keys ) . " keys " .
182  "returned " . count( $result ) . " results" );
183  return $result;
184  }
185 
191  public function setMulti( array $data, $expiry = 0 ) {
192  $batches = [];
193  $conns = [];
194  foreach ( $data as $key => $value ) {
195  list( $server, $conn ) = $this->getConnection( $key );
196  if ( !$conn ) {
197  continue;
198  }
199  $conns[$server] = $conn;
200  $batches[$server][] = $key;
201  }
202 
203  $expiry = $this->convertToRelative( $expiry );
204  $result = true;
205  foreach ( $batches as $server => $batchKeys ) {
206  $conn = $conns[$server];
207  try {
208  $conn->multi( Redis::PIPELINE );
209  foreach ( $batchKeys as $key ) {
210  if ( $expiry ) {
211  $conn->setex( $key, $expiry, $this->serialize( $data[$key] ) );
212  } else {
213  $conn->set( $key, $this->serialize( $data[$key] ) );
214  }
215  }
216  $batchResult = $conn->exec();
217  if ( $batchResult === false ) {
218  $this->debug( "setMulti request to $server failed" );
219  continue;
220  }
221  foreach ( $batchResult as $value ) {
222  if ( $value === false ) {
223  $result = false;
224  }
225  }
226  } catch ( RedisException $e ) {
227  $this->handleException( $server, $conn, $e );
228  $result = false;
229  }
230  }
231 
232  return $result;
233  }
234 
235  public function add( $key, $value, $expiry = 0 ) {
236  list( $server, $conn ) = $this->getConnection( $key );
237  if ( !$conn ) {
238  return false;
239  }
240  $expiry = $this->convertToRelative( $expiry );
241  try {
242  if ( $expiry ) {
243  $result = $conn->set(
244  $key,
245  $this->serialize( $value ),
246  [ 'nx', 'ex' => $expiry ]
247  );
248  } else {
249  $result = $conn->setnx( $key, $this->serialize( $value ) );
250  }
251  } catch ( RedisException $e ) {
252  $result = false;
253  $this->handleException( $conn, $e );
254  }
255 
256  $this->logRequest( 'add', $key, $server, $result );
257  return $result;
258  }
259 
272  public function incr( $key, $value = 1 ) {
273  list( $server, $conn ) = $this->getConnection( $key );
274  if ( !$conn ) {
275  return false;
276  }
277  try {
278  if ( !$conn->exists( $key ) ) {
279  return null;
280  }
281  // @FIXME: on races, the key may have a 0 TTL
282  $result = $conn->incrBy( $key, $value );
283  } catch ( RedisException $e ) {
284  $result = false;
285  $this->handleException( $conn, $e );
286  }
287 
288  $this->logRequest( 'incr', $key, $server, $result );
289  return $result;
290  }
291 
292  public function changeTTL( $key, $expiry = 0 ) {
293  list( $server, $conn ) = $this->getConnection( $key );
294  if ( !$conn ) {
295  return false;
296  }
297 
298  $expiry = $this->convertToRelative( $expiry );
299  try {
300  $result = $conn->expire( $key, $expiry );
301  } catch ( RedisException $e ) {
302  $result = false;
303  $this->handleException( $conn, $e );
304  }
305 
306  $this->logRequest( 'expire', $key, $server, $result );
307  return $result;
308  }
309 
310  public function modifySimpleRelayEvent( array $event ) {
311  if ( array_key_exists( 'val', $event ) ) {
312  $event['val'] = serialize( $event['val'] ); // this class uses PHP serialization
313  }
314 
315  return $event;
316  }
317 
322  protected function serialize( $data ) {
323  // Serialize anything but integers so INCR/DECR work
324  // Do not store integer-like strings as integers to avoid type confusion (bug 60563)
325  return is_int( $data ) ? $data : serialize( $data );
326  }
327 
332  protected function unserialize( $data ) {
333  $int = intval( $data );
334  return $data === (string)$int ? $int : unserialize( $data );
335  }
336 
342  protected function getConnection( $key ) {
343  $candidates = array_keys( $this->serverTagMap );
344 
345  if ( count( $this->servers ) > 1 ) {
346  ArrayUtils::consistentHashSort( $candidates, $key, '/' );
347  if ( !$this->automaticFailover ) {
348  $candidates = array_slice( $candidates, 0, 1 );
349  }
350  }
351 
352  while ( ( $tag = array_shift( $candidates ) ) !== null ) {
353  $server = $this->serverTagMap[$tag];
354  $conn = $this->redisPool->getConnection( $server, $this->logger );
355  if ( !$conn ) {
356  continue;
357  }
358 
359  // If automatic failover is enabled, check that the server's link
360  // to its master (if any) is up -- but only if there are other
361  // viable candidates left to consider. Also, getMasterLinkStatus()
362  // does not work with twemproxy, though $candidates will be empty
363  // by now in such cases.
364  if ( $this->automaticFailover && $candidates ) {
365  try {
366  if ( $this->getMasterLinkStatus( $conn ) === 'down' ) {
367  // If the master cannot be reached, fail-over to the next server.
368  // If masters are in data-center A, and replica DBs in data-center B,
369  // this helps avoid the case were fail-over happens in A but not
370  // to the corresponding server in B (e.g. read/write mismatch).
371  continue;
372  }
373  } catch ( RedisException $e ) {
374  // Server is not accepting commands
375  $this->handleException( $conn, $e );
376  continue;
377  }
378  }
379 
380  return [ $server, $conn ];
381  }
382 
384 
385  return [ false, false ];
386  }
387 
394  protected function getMasterLinkStatus( RedisConnRef $conn ) {
395  $info = $conn->info();
396  return isset( $info['master_link_status'] )
397  ? $info['master_link_status']
398  : null;
399  }
400 
405  protected function logError( $msg ) {
406  $this->logger->error( "Redis error: $msg" );
407  }
408 
417  protected function handleException( RedisConnRef $conn, $e ) {
419  $this->redisPool->handleError( $conn, $e );
420  }
421 
429  public function logRequest( $method, $key, $server, $result ) {
430  $this->debug( "$method $key on $server: " .
431  ( $result === false ? "failure" : "success" ) );
432  }
433 }
const ERR_UNEXPECTED
Definition: BagOStuff.php:80
static consistentHashSort(&$array, $key, $separator="\000")
Sort the given array in a pseudo-random order which depends only on the given key and each element va...
Definition: ArrayUtils.php:49
modifySimpleRelayEvent(array $event)
array $serverTagMap
Map of (tag => server name)
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
the array() calling protocol came about after MediaWiki 1.4rc1.
getMulti(array $keys, $flags=0)
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
Definition: hooks.txt:2102
logError($msg)
Log a fatal error.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition: hooks.txt:177
$value
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2703
const ERR_UNREACHABLE
Definition: BagOStuff.php:79
getConnection($key)
Get a Redis object with a connection suitable for fetching the specified key.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1934
static singleton(array $options)
setMulti(array $data, $expiry=0)
array $servers
List of server names.
changeTTL($key, $expiry=0)
incr($key, $value=1)
Non-atomic implementation of incr().
$params
add($key, $value, $expiry=0)
RedisConnectionPool $redisPool
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books $tag
Definition: hooks.txt:1007
Redis-based caching module for redis server >= 2.6.12.
handleException(RedisConnRef $conn, $e)
The redis extension throws an exception in response to various read, write and protocol errors...
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
Definition: distributors.txt:9
getMasterLinkStatus(RedisConnRef $conn)
Check the master link status of a Redis server that is configured as a replica DB.
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
__construct($params)
Construct a RedisBagOStuff object.
doGet($key, $flags=0)
convertToRelative($exptime)
Convert an optionally absolute expiry time to a relative time.
Definition: BagOStuff.php:707
logRequest($method, $key, $server, $result)
Send information about a single request to the debug log.
Helper class to handle automatically marking connectons as reusable (via RAII pattern) ...
storage can be distributed across multiple servers
Definition: memcached.txt:33
debug($text)
Definition: BagOStuff.php:679
setLastError($err)
Set the "last error" registry.
Definition: BagOStuff.php:630
set($key, $value, $expiry=0, $flags=0)