* fixed ipblocks.ipb_by_text field, removed default blank not null (fixed install...
[mediawiki.git] / includes / db / LoadMonitor.php
bloba6370c9e030b51fdd950736237dc994e39d7c288
1 <?php
2 /**
3 * Database load monitoring
5 * @file
6 * @ingroup Database
7 */
9 /**
10 * An interface for database load monitoring
12 * @ingroup Database
14 interface LoadMonitor {
15 /**
16 * Construct a new LoadMonitor with a given LoadBalancer parent
18 * @param LoadBalancer $parent
20 function __construct( $parent );
22 /**
23 * Perform pre-connection load ratio adjustment.
24 * @param $loads array
25 * @param $group String: the selected query group
26 * @param $wiki String
28 function scaleLoads( &$loads, $group = false, $wiki = false );
30 /**
31 * Perform post-connection backoff.
33 * If the connection is in overload, this should return a backoff factor
34 * which will be used to control polling time. The number of threads
35 * connected is a good measure.
37 * If there is no overload, zero can be returned.
39 * A threshold thread count is given, the concrete class may compare this
40 * to the running thread count. The threshold may be false, which indicates
41 * that the sysadmin has not configured this feature.
43 * @param $conn DatabaseBase
44 * @param $threshold Float
46 function postConnectionBackoff( $conn, $threshold );
48 /**
49 * Return an estimate of replication lag for each server
51 * @param $serverIndexes
52 * @param $wiki
54 * @return array
56 function getLagTimes( $serverIndexes, $wiki );
59 class LoadMonitor_Null implements LoadMonitor {
60 function __construct( $parent ) {
63 function scaleLoads( &$loads, $group = false, $wiki = false ) {
66 function postConnectionBackoff( $conn, $threshold ) {
69 function getLagTimes( $serverIndexes, $wiki ) {
70 return array_fill_keys( $serverIndexes, 0 );
75 /**
76 * Basic MySQL load monitor with no external dependencies
77 * Uses memcached to cache the replication lag for a short time
79 * @ingroup Database
81 class LoadMonitor_MySQL implements LoadMonitor {
83 /**
84 * @var LoadBalancer
86 var $parent;
88 /**
89 * @param LoadBalancer $parent
91 function __construct( $parent ) {
92 $this->parent = $parent;
95 /**
96 * @param $loads
97 * @param $group bool
98 * @param $wiki bool
100 function scaleLoads( &$loads, $group = false, $wiki = false ) {
104 * @param $serverIndexes
105 * @param $wiki
106 * @return array
108 function getLagTimes( $serverIndexes, $wiki ) {
109 if ( count( $serverIndexes ) == 1 && reset( $serverIndexes ) == 0 ) {
110 // Single server only, just return zero without caching
111 return array( 0 => 0 );
114 wfProfileIn( __METHOD__ );
115 $expiry = 5;
116 $requestRate = 10;
118 global $wgMemc;
119 if ( empty( $wgMemc ) )
120 $wgMemc = wfGetMainCache();
122 $masterName = $this->parent->getServerName( 0 );
123 $memcKey = wfMemcKey( 'lag_times', $masterName );
124 $times = $wgMemc->get( $memcKey );
125 if ( $times ) {
126 # Randomly recache with probability rising over $expiry
127 $elapsed = time() - $times['timestamp'];
128 $chance = max( 0, ( $expiry - $elapsed ) * $requestRate );
129 if ( mt_rand( 0, $chance ) != 0 ) {
130 unset( $times['timestamp'] );
131 wfProfileOut( __METHOD__ );
132 return $times;
134 wfIncrStats( 'lag_cache_miss_expired' );
135 } else {
136 wfIncrStats( 'lag_cache_miss_absent' );
139 # Cache key missing or expired
141 $times = array();
142 foreach ( $serverIndexes as $i ) {
143 if ($i == 0) { # Master
144 $times[$i] = 0;
145 } elseif ( false !== ( $conn = $this->parent->getAnyOpenConnection( $i ) ) ) {
146 $times[$i] = $conn->getLag();
147 } elseif ( false !== ( $conn = $this->parent->openConnection( $i, $wiki ) ) ) {
148 $times[$i] = $conn->getLag();
152 # Add a timestamp key so we know when it was cached
153 $times['timestamp'] = time();
154 $wgMemc->set( $memcKey, $times, $expiry );
156 # But don't give the timestamp to the caller
157 unset($times['timestamp']);
158 $lagTimes = $times;
160 wfProfileOut( __METHOD__ );
161 return $lagTimes;
165 * @param $conn DatabaseBase
166 * @param $threshold
167 * @return int
169 function postConnectionBackoff( $conn, $threshold ) {
170 if ( !$threshold ) {
171 return 0;
173 $status = $conn->getMysqlStatus("Thread%");
174 if ( $status['Threads_running'] > $threshold ) {
175 $server = $conn->getProperty( 'mServer' );
176 wfLogDBError( "LB backoff from $server - Threads_running = {$status['Threads_running']}\n" );
177 return $status['Threads_connected'];
178 } else {
179 return 0;