Removing Wikitravel from the default interwiki list
[mediawiki.git] / includes / db / LoadMonitor.php
blobfa2dd99ff88d28f142102a5f7c17aefaedf661fe
1 <?php
2 /**
3 * Database load monitoring.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Database
24 /**
25 * An interface for database load monitoring
27 * @ingroup Database
29 interface LoadMonitor {
30 /**
31 * Construct a new LoadMonitor with a given LoadBalancer parent
33 * @param LoadBalancer $parent
35 public function __construct( $parent );
37 /**
38 * Perform pre-connection load ratio adjustment.
39 * @param array $loads
40 * @param string|bool $group The selected query group. Default: false
41 * @param string|bool $wiki Default: false
43 public function scaleLoads( &$loads, $group = false, $wiki = false );
45 /**
46 * Return an estimate of replication lag for each server
48 * @param array $serverIndexes
49 * @param string $wiki
51 * @return array
53 public function getLagTimes( $serverIndexes, $wiki );
56 class LoadMonitorNull implements LoadMonitor {
57 public function __construct( $parent ) {
60 public function scaleLoads( &$loads, $group = false, $wiki = false ) {
63 public function getLagTimes( $serverIndexes, $wiki ) {
64 return array_fill_keys( $serverIndexes, 0 );
68 /**
69 * Basic MySQL load monitor with no external dependencies
70 * Uses memcached to cache the replication lag for a short time
72 * @ingroup Database
74 class LoadMonitorMySQL implements LoadMonitor {
75 /** @var LoadBalancer */
76 public $parent;
78 public function __construct( $parent ) {
79 $this->parent = $parent;
82 public function scaleLoads( &$loads, $group = false, $wiki = false ) {
85 public function getLagTimes( $serverIndexes, $wiki ) {
86 if ( count( $serverIndexes ) == 1 && reset( $serverIndexes ) == 0 ) {
87 // Single server only, just return zero without caching
88 return array( 0 => 0 );
91 $section = new ProfileSection( __METHOD__ );
93 $expiry = 5;
94 $requestRate = 10;
96 global $wgMemc;
97 if ( empty( $wgMemc ) ) {
98 $wgMemc = wfGetMainCache();
101 $masterName = $this->parent->getServerName( 0 );
102 $memcKey = wfMemcKey( 'lag_times', $masterName );
103 $times = $wgMemc->get( $memcKey );
104 if ( is_array( $times ) ) {
105 # Randomly recache with probability rising over $expiry
106 $elapsed = time() - $times['timestamp'];
107 $chance = max( 0, ( $expiry - $elapsed ) * $requestRate );
108 if ( mt_rand( 0, $chance ) != 0 ) {
109 unset( $times['timestamp'] ); // hide from caller
111 return $times;
113 wfIncrStats( 'lag_cache_miss_expired' );
114 } else {
115 wfIncrStats( 'lag_cache_miss_absent' );
118 # Cache key missing or expired
119 if ( $wgMemc->add( "$memcKey:lock", 1, 10 ) ) {
120 # Let this process alone update the cache value
121 $unlocker = new ScopedCallback( function () use ( $wgMemc, $memcKey ) {
122 $wgMemc->delete( $memcKey );
123 } );
124 } elseif ( is_array( $times ) ) {
125 # Could not acquire lock but an old cache exists, so use it
126 unset( $times['timestamp'] ); // hide from caller
128 return $times;
131 $times = array();
132 foreach ( $serverIndexes as $i ) {
133 if ( $i == 0 ) { # Master
134 $times[$i] = 0;
135 } elseif ( false !== ( $conn = $this->parent->getAnyOpenConnection( $i ) ) ) {
136 $times[$i] = $conn->getLag();
137 } elseif ( false !== ( $conn = $this->parent->openConnection( $i, $wiki ) ) ) {
138 $times[$i] = $conn->getLag();
142 # Add a timestamp key so we know when it was cached
143 $times['timestamp'] = time();
144 $wgMemc->set( $memcKey, $times, $expiry + 10 );
145 unset( $times['timestamp'] ); // hide from caller
147 return $times;