MediaWiki  1.27.2
LoadMonitorMySQL.php
Go to the documentation of this file.
1 <?php
28 class LoadMonitorMySQL implements LoadMonitor {
30  public $parent;
32  protected $srvCache;
34  protected $mainCache;
35 
36  public function __construct( $parent ) {
37  $this->parent = $parent;
38 
39  $this->srvCache = ObjectCache::getLocalServerInstance( 'hash' );
40  $this->mainCache = ObjectCache::getLocalClusterInstance();
41  }
42 
43  public function scaleLoads( &$loads, $group = false, $wiki = false ) {
44  }
45 
46  public function getLagTimes( $serverIndexes, $wiki ) {
47  if ( count( $serverIndexes ) == 1 && reset( $serverIndexes ) == 0 ) {
48  # Single server only, just return zero without caching
49  return [ 0 => 0 ];
50  }
51 
52  $key = $this->getLagTimeCacheKey();
53  # Randomize TTLs to reduce stampedes (4.0 - 5.0 sec)
54  $ttl = mt_rand( 4e6, 5e6 ) / 1e6;
55  # Keep keys around longer as fallbacks
56  $staleTTL = 60;
57 
58  # (a) Check the local APC cache
59  $value = $this->srvCache->get( $key );
60  if ( $value && $value['timestamp'] > ( microtime( true ) - $ttl ) ) {
61  wfDebugLog( 'replication', __METHOD__ . ": got lag times ($key) from local cache" );
62  return $value['lagTimes']; // cache hit
63  }
64  $staleValue = $value ?: false;
65 
66  # (b) Check the shared cache and backfill APC
67  $value = $this->mainCache->get( $key );
68  if ( $value && $value['timestamp'] > ( microtime( true ) - $ttl ) ) {
69  $this->srvCache->set( $key, $value, $staleTTL );
70  wfDebugLog( 'replication', __METHOD__ . ": got lag times ($key) from main cache" );
71 
72  return $value['lagTimes']; // cache hit
73  }
74  $staleValue = $value ?: $staleValue;
75 
76  # (c) Cache key missing or expired; regenerate and backfill
77  if ( $this->mainCache->lock( $key, 0, 10 ) ) {
78  # Let this process alone update the cache value
81  $unlocker = new ScopedCallback( function () use ( $cache, $key ) {
82  $cache->unlock( $key );
83  } );
84  } elseif ( $staleValue ) {
85  # Could not acquire lock but an old cache exists, so use it
86  return $staleValue['lagTimes'];
87  }
88 
89  $lagTimes = [];
90  foreach ( $serverIndexes as $i ) {
91  if ( $i == $this->parent->getWriterIndex() ) {
92  $lagTimes[$i] = 0; // master always has no lag
93  continue;
94  }
95 
96  $conn = $this->parent->getAnyOpenConnection( $i );
97  if ( $conn ) {
98  $close = false; // already open
99  } else {
100  $conn = $this->parent->openConnection( $i, $wiki );
101  $close = true; // new connection
102  }
103 
104  if ( !$conn ) {
105  $lagTimes[$i] = false;
106  $host = $this->parent->getServerName( $i );
107  wfDebugLog( 'replication', __METHOD__ . ": host $host (#$i) is unreachable" );
108  continue;
109  }
110 
111  $lagTimes[$i] = $conn->getLag();
112  if ( $lagTimes[$i] === false ) {
113  $host = $this->parent->getServerName( $i );
114  wfDebugLog( 'replication', __METHOD__ . ": host $host (#$i) is not replicating?" );
115  }
116 
117  if ( $close ) {
118  # Close the connection to avoid sleeper connections piling up.
119  # Note that the caller will pick one of these DBs and reconnect,
120  # which is slightly inefficient, but this only matters for the lag
121  # time cache miss cache, which is far less common that cache hits.
122  $this->parent->closeConnection( $conn );
123  }
124  }
125 
126  # Add a timestamp key so we know when it was cached
127  $value = [ 'lagTimes' => $lagTimes, 'timestamp' => microtime( true ) ];
128  $this->mainCache->set( $key, $value, $staleTTL );
129  $this->srvCache->set( $key, $value, $staleTTL );
130  wfDebugLog( 'replication', __METHOD__ . ": re-calculated lag times ($key)" );
131 
132  return $value['lagTimes'];
133  }
134 
135  public function clearCaches() {
136  $key = $this->getLagTimeCacheKey();
137  $this->srvCache->delete( $key );
138  $this->mainCache->delete( $key );
139  }
140 
141  private function getLagTimeCacheKey() {
142  $writerIndex = $this->parent->getWriterIndex();
143  // Lag is per-server, not per-DB, so key on the master DB name
144  return $this->srvCache->makeGlobalKey(
145  'lag-times', $this->parent->getServerName( $writerIndex )
146  );
147  }
148 }
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Definition: hooks.txt:2321
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$value
static getLocalClusterInstance()
Get the main cluster-local cache object.
getLagTimes($serverIndexes, $wiki)
Get an estimate of replication lag (in seconds) for each server.
Class for asserting that a callback happens when an dummy object leaves scope.
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
An interface for database load monitoring.
Definition: LoadMonitor.php:29
Basic MySQL load monitor with no external dependencies Uses memcached to cache the replication lag fo...
clearCaches()
Clear any process and persistent cache of lag times.
$cache
Definition: mcc.php:33
scaleLoads(&$loads, $group=false, $wiki=false)
Perform pre-connection load ratio adjustment.
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
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
LoadBalancer $parent
static getLocalServerInstance($fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
__construct($parent)
Construct a new LoadMonitor with a given LoadBalancer parent.