MediaWiki  master
LoadBalancer.php
Go to the documentation of this file.
1 <?php
30 class LoadBalancer {
32  private $mServers;
34  private $mConns;
36  private $mLoads;
38  private $mGroupLoads;
40  private $mAllowLagged;
42  private $mWaitTimeout;
44  private $mParentInfo;
45 
49  private $mLoadMonitor;
51  private $srvCache;
53  private $wanCache;
54 
58  private $mReadIndex;
60  private $mWaitForPos;
62  private $laggedSlaveMode = false;
64  private $slavesDownMode = false;
66  private $mLastError = 'Unknown error';
68  private $readOnlyReason = false;
70  private $connsOpened = 0;
71 
73  protected $trxProfiler;
74 
76  const CONN_HELD_WARN_THRESHOLD = 10;
78  const MAX_LAG = 10;
80  const POS_WAIT_TIMEOUT = 10;
82  const TTL_CACHE_READONLY = 5;
83 
87  private $disabled = false;
88 
96  public function __construct( array $params ) {
97  if ( !isset( $params['servers'] ) ) {
98  throw new MWException( __CLASS__ . ': missing servers parameter' );
99  }
100  $this->mServers = $params['servers'];
101  $this->mWaitTimeout = self::POS_WAIT_TIMEOUT;
102 
103  $this->mReadIndex = -1;
104  $this->mWriteIndex = -1;
105  $this->mConns = [
106  'local' => [],
107  'foreignUsed' => [],
108  'foreignFree' => [] ];
109  $this->mLoads = [];
110  $this->mWaitForPos = false;
111  $this->mErrorConnection = false;
112  $this->mAllowLagged = false;
113 
114  if ( isset( $params['readOnlyReason'] ) && is_string( $params['readOnlyReason'] ) ) {
115  $this->readOnlyReason = $params['readOnlyReason'];
116  }
117 
118  if ( isset( $params['loadMonitor'] ) ) {
119  $this->mLoadMonitorClass = $params['loadMonitor'];
120  } else {
121  $master = reset( $params['servers'] );
122  if ( isset( $master['type'] ) && $master['type'] === 'mysql' ) {
123  $this->mLoadMonitorClass = 'LoadMonitorMySQL';
124  } else {
125  $this->mLoadMonitorClass = 'LoadMonitorNull';
126  }
127  }
128 
129  foreach ( $params['servers'] as $i => $server ) {
130  $this->mLoads[$i] = $server['load'];
131  if ( isset( $server['groupLoads'] ) ) {
132  foreach ( $server['groupLoads'] as $group => $ratio ) {
133  if ( !isset( $this->mGroupLoads[$group] ) ) {
134  $this->mGroupLoads[$group] = [];
135  }
136  $this->mGroupLoads[$group][$i] = $ratio;
137  }
138  }
139  }
140 
141  $this->srvCache = ObjectCache::getLocalServerInstance();
142  $this->wanCache = ObjectCache::getMainWANInstance();
143 
144  if ( isset( $params['trxProfiler'] ) ) {
145  $this->trxProfiler = $params['trxProfiler'];
146  } else {
147  $this->trxProfiler = new TransactionProfiler();
148  }
149  }
150 
156  private function getLoadMonitor() {
157  if ( !isset( $this->mLoadMonitor ) ) {
158  $class = $this->mLoadMonitorClass;
159  $this->mLoadMonitor = new $class( $this );
160  }
161 
162  return $this->mLoadMonitor;
163  }
164 
170  public function parentInfo( $x = null ) {
171  return wfSetVar( $this->mParentInfo, $x );
172  }
173 
180  private function getRandomNonLagged( array $loads, $wiki = false, $maxLag = self::MAX_LAG ) {
181  $lags = $this->getLagTimes( $wiki );
182 
183  # Unset excessively lagged servers
184  foreach ( $lags as $i => $lag ) {
185  if ( $i != 0 ) {
186  $maxServerLag = $maxLag;
187  if ( isset( $this->mServers[$i]['max lag'] ) ) {
188  $maxServerLag = min( $maxServerLag, $this->mServers[$i]['max lag'] );
189  }
190 
191  $host = $this->getServerName( $i );
192  if ( $lag === false ) {
193  wfDebugLog( 'replication', "Server $host (#$i) is not replicating?" );
194  unset( $loads[$i] );
195  } elseif ( $lag > $maxServerLag ) {
196  wfDebugLog( 'replication', "Server $host (#$i) has >= $lag seconds of lag" );
197  unset( $loads[$i] );
198  }
199  }
200  }
201 
202  # Find out if all the slaves with non-zero load are lagged
203  $sum = 0;
204  foreach ( $loads as $load ) {
205  $sum += $load;
206  }
207  if ( $sum == 0 ) {
208  # No appropriate DB servers except maybe the master and some slaves with zero load
209  # Do NOT use the master
210  # Instead, this function will return false, triggering read-only mode,
211  # and a lagged slave will be used instead.
212  return false;
213  }
214 
215  if ( count( $loads ) == 0 ) {
216  return false;
217  }
218 
219  # Return a random representative of the remainder
220  return ArrayUtils::pickRandom( $loads );
221  }
222 
234  public function getReaderIndex( $group = false, $wiki = false ) {
236 
237  # @todo FIXME: For now, only go through all this for mysql databases
238  if ( $wgDBtype != 'mysql' ) {
239  return $this->getWriterIndex();
240  }
241 
242  if ( count( $this->mServers ) == 1 ) {
243  # Skip the load balancing if there's only one server
244  return 0;
245  } elseif ( $group === false && $this->mReadIndex >= 0 ) {
246  # Shortcut if generic reader exists already
247  return $this->mReadIndex;
248  }
249 
250  # Find the relevant load array
251  if ( $group !== false ) {
252  if ( isset( $this->mGroupLoads[$group] ) ) {
253  $nonErrorLoads = $this->mGroupLoads[$group];
254  } else {
255  # No loads for this group, return false and the caller can use some other group
256  wfDebugLog( 'connect', __METHOD__ . ": no loads for group $group\n" );
257 
258  return false;
259  }
260  } else {
261  $nonErrorLoads = $this->mLoads;
262  }
263 
264  if ( !count( $nonErrorLoads ) ) {
265  throw new MWException( "Empty server array given to LoadBalancer" );
266  }
267 
268  # Scale the configured load ratios according to the dynamic load (if the load monitor supports it)
269  $this->getLoadMonitor()->scaleLoads( $nonErrorLoads, $group, $wiki );
270 
271  $laggedSlaveMode = false;
272 
273  # No server found yet
274  $i = false;
275  $conn = false;
276  # First try quickly looking through the available servers for a server that
277  # meets our criteria
278  $currentLoads = $nonErrorLoads;
279  while ( count( $currentLoads ) ) {
280  if ( $this->mAllowLagged || $laggedSlaveMode ) {
281  $i = ArrayUtils::pickRandom( $currentLoads );
282  } else {
283  $i = false;
284  if ( $this->mWaitForPos && $this->mWaitForPos->asOfTime() ) {
285  # ChronologyProtecter causes mWaitForPos to be set via sessions.
286  # This triggers doWait() after connect, so it's especially good to
287  # avoid lagged servers so as to avoid just blocking in that method.
288  $ago = microtime( true ) - $this->mWaitForPos->asOfTime();
289  # Aim for <= 1 second of waiting (being too picky can backfire)
290  $i = $this->getRandomNonLagged( $currentLoads, $wiki, $ago + 1 );
291  }
292  if ( $i === false ) {
293  # Any server with less lag than it's 'max lag' param is preferable
294  $i = $this->getRandomNonLagged( $currentLoads, $wiki );
295  }
296  if ( $i === false && count( $currentLoads ) != 0 ) {
297  # All slaves lagged. Switch to read-only mode
298  wfDebugLog( 'replication', "All slaves lagged. Switch to read-only mode" );
299  $i = ArrayUtils::pickRandom( $currentLoads );
300  $laggedSlaveMode = true;
301  }
302  }
303 
304  if ( $i === false ) {
305  # pickRandom() returned false
306  # This is permanent and means the configuration or the load monitor
307  # wants us to return false.
308  wfDebugLog( 'connect', __METHOD__ . ": pickRandom() returned false" );
309 
310  return false;
311  }
312 
313  $serverName = $this->getServerName( $i );
314  wfDebugLog( 'connect', __METHOD__ . ": Using reader #$i: $serverName..." );
315 
316  $conn = $this->openConnection( $i, $wiki );
317  if ( !$conn ) {
318  wfDebugLog( 'connect', __METHOD__ . ": Failed connecting to $i/$wiki" );
319  unset( $nonErrorLoads[$i] );
320  unset( $currentLoads[$i] );
321  $i = false;
322  continue;
323  }
324 
325  // Decrement reference counter, we are finished with this connection.
326  // It will be incremented for the caller later.
327  if ( $wiki !== false ) {
328  $this->reuseConnection( $conn );
329  }
330 
331  # Return this server
332  break;
333  }
334 
335  # If all servers were down, quit now
336  if ( !count( $nonErrorLoads ) ) {
337  wfDebugLog( 'connect', "All servers down" );
338  }
339 
340  if ( $i !== false ) {
341  # Slave connection successful
342  # Wait for the session master pos for a short time
343  if ( $this->mWaitForPos && $i > 0 ) {
344  if ( !$this->doWait( $i ) ) {
345  $this->mServers[$i]['slave pos'] = $conn->getSlavePos();
346  }
347  }
348  if ( $this->mReadIndex <= 0 && $this->mLoads[$i] > 0 && $group === false ) {
349  $this->mReadIndex = $i;
350  # Record if the generic reader index is in "lagged slave" mode
351  if ( $laggedSlaveMode ) {
352  $this->laggedSlaveMode = true;
353  }
354  }
355  $serverName = $this->getServerName( $i );
356  wfDebugLog( 'connect', __METHOD__ .
357  ": using server $serverName for group '$group'\n" );
358  }
359 
360  return $i;
361  }
362 
369  public function waitFor( $pos ) {
370  $this->mWaitForPos = $pos;
371  $i = $this->mReadIndex;
372 
373  if ( $i > 0 ) {
374  if ( !$this->doWait( $i ) ) {
375  $this->mServers[$i]['slave pos'] = $this->getAnyOpenConnection( $i )->getSlavePos();
376  $this->laggedSlaveMode = true;
377  }
378  }
379  }
380 
391  public function waitForOne( $pos, $timeout = null ) {
392  $this->mWaitForPos = $pos;
393 
394  $i = $this->mReadIndex;
395  if ( $i <= 0 ) {
396  // Pick a generic slave if there isn't one yet
397  $readLoads = $this->mLoads;
398  unset( $readLoads[$this->getWriterIndex()] ); // slaves only
399  $readLoads = array_filter( $readLoads ); // with non-zero load
400  $i = ArrayUtils::pickRandom( $readLoads );
401  }
402 
403  if ( $i > 0 ) {
404  $ok = $this->doWait( $i, true, $timeout );
405  } else {
406  $ok = true; // no applicable loads
407  }
408 
409  return $ok;
410  }
411 
418  public function waitForAll( $pos, $timeout = null ) {
419  $this->mWaitForPos = $pos;
420  $serverCount = count( $this->mServers );
421 
422  $ok = true;
423  for ( $i = 1; $i < $serverCount; $i++ ) {
424  if ( $this->mLoads[$i] > 0 ) {
425  $ok = $this->doWait( $i, true, $timeout ) && $ok;
426  }
427  }
428 
429  return $ok;
430  }
431 
439  public function getAnyOpenConnection( $i ) {
440  foreach ( $this->mConns as $conns ) {
441  if ( !empty( $conns[$i] ) ) {
442  return reset( $conns[$i] );
443  }
444  }
445 
446  return false;
447  }
448 
456  protected function doWait( $index, $open = false, $timeout = null ) {
457  $close = false; // close the connection afterwards
458 
459  // Check if we already know that the DB has reached this point
460  $server = $this->getServerName( $index );
461  $key = $this->srvCache->makeGlobalKey( __CLASS__, 'last-known-pos', $server );
463  $knownReachedPos = $this->srvCache->get( $key );
464  if ( $knownReachedPos && $knownReachedPos->hasReached( $this->mWaitForPos ) ) {
465  wfDebugLog( 'replication', __METHOD__ .
466  ": slave $server known to be caught up (pos >= $knownReachedPos).\n" );
467  return true;
468  }
469 
470  // Find a connection to wait on, creating one if needed and allowed
471  $conn = $this->getAnyOpenConnection( $index );
472  if ( !$conn ) {
473  if ( !$open ) {
474  wfDebugLog( 'replication', __METHOD__ . ": no connection open for $server\n" );
475 
476  return false;
477  } else {
478  $conn = $this->openConnection( $index, '' );
479  if ( !$conn ) {
480  wfDebugLog( 'replication', __METHOD__ . ": failed to connect to $server\n" );
481 
482  return false;
483  }
484  // Avoid connection spam in waitForAll() when connections
485  // are made just for the sake of doing this lag check.
486  $close = true;
487  }
488  }
489 
490  wfDebugLog( 'replication', __METHOD__ . ": Waiting for slave $server to catch up...\n" );
491  $timeout = $timeout ?: $this->mWaitTimeout;
492  $result = $conn->masterPosWait( $this->mWaitForPos, $timeout );
493 
494  if ( $result == -1 || is_null( $result ) ) {
495  // Timed out waiting for slave, use master instead
496  $msg = __METHOD__ . ": Timed out waiting on $server pos {$this->mWaitForPos}";
497  wfDebugLog( 'replication', "$msg\n" );
498  wfDebugLog( 'DBPerformance', "$msg:\n" . wfBacktrace( true ) );
499  $ok = false;
500  } else {
501  wfDebugLog( 'replication', __METHOD__ . ": Done\n" );
502  $ok = true;
503  // Remember that the DB reached this point
504  $this->srvCache->set( $key, $this->mWaitForPos, BagOStuff::TTL_DAY );
505  }
506 
507  if ( $close ) {
508  $this->closeConnection( $conn );
509  }
510 
511  return $ok;
512  }
513 
525  public function getConnection( $i, $groups = [], $wiki = false ) {
526  if ( $i === null || $i === false ) {
527  throw new MWException( 'Attempt to call ' . __METHOD__ .
528  ' with invalid server index' );
529  }
530 
531  if ( $wiki === wfWikiID() ) {
532  $wiki = false;
533  }
534 
535  $groups = ( $groups === false || $groups === [] )
536  ? [ false ] // check one "group": the generic pool
537  : (array)$groups;
538 
539  $masterOnly = ( $i == DB_MASTER || $i == $this->getWriterIndex() );
540  $oldConnsOpened = $this->connsOpened; // connections open now
541 
542  if ( $i == DB_MASTER ) {
543  $i = $this->getWriterIndex();
544  } else {
545  # Try to find an available server in any the query groups (in order)
546  foreach ( $groups as $group ) {
547  $groupIndex = $this->getReaderIndex( $group, $wiki );
548  if ( $groupIndex !== false ) {
549  $i = $groupIndex;
550  break;
551  }
552  }
553  }
554 
555  # Operation-based index
556  if ( $i == DB_SLAVE ) {
557  $this->mLastError = 'Unknown error'; // reset error string
558  # Try the general server pool if $groups are unavailable.
559  $i = in_array( false, $groups, true )
560  ? false // don't bother with this if that is what was tried above
561  : $this->getReaderIndex( false, $wiki );
562  # Couldn't find a working server in getReaderIndex()?
563  if ( $i === false ) {
564  $this->mLastError = 'No working slave server: ' . $this->mLastError;
565 
566  return $this->reportConnectionError();
567  }
568  }
569 
570  # Now we have an explicit index into the servers array
571  $conn = $this->openConnection( $i, $wiki );
572  if ( !$conn ) {
573  return $this->reportConnectionError();
574  }
575 
576  # Profile any new connections that happen
577  if ( $this->connsOpened > $oldConnsOpened ) {
578  $host = $conn->getServer();
579  $dbname = $conn->getDBname();
580  $trxProf = Profiler::instance()->getTransactionProfiler();
581  $trxProf->recordConnection( $host, $dbname, $masterOnly );
582  }
583 
584  if ( $masterOnly ) {
585  # Make master-requested DB handles inherit any read-only mode setting
586  $conn->setLBInfo( 'readOnlyReason', $this->getReadOnlyReason( $wiki, $conn ) );
587  }
588 
589  return $conn;
590  }
591 
600  public function reuseConnection( $conn ) {
601  $serverIndex = $conn->getLBInfo( 'serverIndex' );
602  $refCount = $conn->getLBInfo( 'foreignPoolRefCount' );
603  if ( $serverIndex === null || $refCount === null ) {
604  wfDebug( __METHOD__ . ": this connection was not opened as a foreign connection\n" );
615  return;
616  }
617 
618  $dbName = $conn->getDBname();
619  $prefix = $conn->tablePrefix();
620  if ( strval( $prefix ) !== '' ) {
621  $wiki = "$dbName-$prefix";
622  } else {
623  $wiki = $dbName;
624  }
625  if ( $this->mConns['foreignUsed'][$serverIndex][$wiki] !== $conn ) {
626  throw new MWException( __METHOD__ . ": connection not found, has " .
627  "the connection been freed already?" );
628  }
629  $conn->setLBInfo( 'foreignPoolRefCount', --$refCount );
630  if ( $refCount <= 0 ) {
631  $this->mConns['foreignFree'][$serverIndex][$wiki] = $conn;
632  unset( $this->mConns['foreignUsed'][$serverIndex][$wiki] );
633  wfDebug( __METHOD__ . ": freed connection $serverIndex/$wiki\n" );
634  } else {
635  wfDebug( __METHOD__ . ": reference count for $serverIndex/$wiki reduced to $refCount\n" );
636  }
637  }
638 
651  public function getConnectionRef( $db, $groups = [], $wiki = false ) {
652  return new DBConnRef( $this, $this->getConnection( $db, $groups, $wiki ) );
653  }
654 
667  public function getLazyConnectionRef( $db, $groups = [], $wiki = false ) {
668  return new DBConnRef( $this, [ $db, $groups, $wiki ] );
669  }
670 
685  public function openConnection( $i, $wiki = false ) {
686  if ( $wiki !== false ) {
687  $conn = $this->openForeignConnection( $i, $wiki );
688  } elseif ( isset( $this->mConns['local'][$i][0] ) ) {
689  $conn = $this->mConns['local'][$i][0];
690  } else {
691  $server = $this->mServers[$i];
692  $server['serverIndex'] = $i;
693  $conn = $this->reallyOpenConnection( $server, false );
694  $serverName = $this->getServerName( $i );
695  if ( $conn->isOpen() ) {
696  wfDebugLog( 'connect', "Connected to database $i at $serverName\n" );
697  $this->mConns['local'][$i][0] = $conn;
698  } else {
699  wfDebugLog( 'connect', "Failed to connect to database $i at $serverName\n" );
700  $this->mErrorConnection = $conn;
701  $conn = false;
702  }
703  }
704 
705  if ( $conn && !$conn->isOpen() ) {
706  // Connection was made but later unrecoverably lost for some reason.
707  // Do not return a handle that will just throw exceptions on use,
708  // but let the calling code (e.g. getReaderIndex) try another server.
709  // See DatabaseMyslBase::ping() for how this can happen.
710  $this->mErrorConnection = $conn;
711  $conn = false;
712  }
713 
714  return $conn;
715  }
716 
737  private function openForeignConnection( $i, $wiki ) {
738  list( $dbName, $prefix ) = wfSplitWikiID( $wiki );
739  if ( isset( $this->mConns['foreignUsed'][$i][$wiki] ) ) {
740  // Reuse an already-used connection
741  $conn = $this->mConns['foreignUsed'][$i][$wiki];
742  wfDebug( __METHOD__ . ": reusing connection $i/$wiki\n" );
743  } elseif ( isset( $this->mConns['foreignFree'][$i][$wiki] ) ) {
744  // Reuse a free connection for the same wiki
745  $conn = $this->mConns['foreignFree'][$i][$wiki];
746  unset( $this->mConns['foreignFree'][$i][$wiki] );
747  $this->mConns['foreignUsed'][$i][$wiki] = $conn;
748  wfDebug( __METHOD__ . ": reusing free connection $i/$wiki\n" );
749  } elseif ( !empty( $this->mConns['foreignFree'][$i] ) ) {
750  // Reuse a connection from another wiki
751  $conn = reset( $this->mConns['foreignFree'][$i] );
752  $oldWiki = key( $this->mConns['foreignFree'][$i] );
753 
754  // The empty string as a DB name means "don't care".
755  // DatabaseMysqlBase::open() already handle this on connection.
756  if ( $dbName !== '' && !$conn->selectDB( $dbName ) ) {
757  $this->mLastError = "Error selecting database $dbName on server " .
758  $conn->getServer() . " from client host " . wfHostname() . "\n";
759  $this->mErrorConnection = $conn;
760  $conn = false;
761  } else {
762  $conn->tablePrefix( $prefix );
763  unset( $this->mConns['foreignFree'][$i][$oldWiki] );
764  $this->mConns['foreignUsed'][$i][$wiki] = $conn;
765  wfDebug( __METHOD__ . ": reusing free connection from $oldWiki for $wiki\n" );
766  }
767  } else {
768  // Open a new connection
769  $server = $this->mServers[$i];
770  $server['serverIndex'] = $i;
771  $server['foreignPoolRefCount'] = 0;
772  $server['foreign'] = true;
773  $conn = $this->reallyOpenConnection( $server, $dbName );
774  if ( !$conn->isOpen() ) {
775  wfDebug( __METHOD__ . ": error opening connection for $i/$wiki\n" );
776  $this->mErrorConnection = $conn;
777  $conn = false;
778  } else {
779  $conn->tablePrefix( $prefix );
780  $this->mConns['foreignUsed'][$i][$wiki] = $conn;
781  wfDebug( __METHOD__ . ": opened new connection for $i/$wiki\n" );
782  }
783  }
784 
785  // Increment reference count
786  if ( $conn ) {
787  $refCount = $conn->getLBInfo( 'foreignPoolRefCount' );
788  $conn->setLBInfo( 'foreignPoolRefCount', $refCount + 1 );
789  }
790 
791  return $conn;
792  }
793 
801  private function isOpen( $index ) {
802  if ( !is_integer( $index ) ) {
803  return false;
804  }
805 
806  return (bool)$this->getAnyOpenConnection( $index );
807  }
808 
819  protected function reallyOpenConnection( $server, $dbNameOverride = false ) {
820  if ( $this->disabled ) {
821  throw new DBAccessError();
822  }
823 
824  if ( !is_array( $server ) ) {
825  throw new MWException( 'You must update your load-balancing configuration. ' .
826  'See DefaultSettings.php entry for $wgDBservers.' );
827  }
828 
829  if ( $dbNameOverride !== false ) {
830  $server['dbname'] = $dbNameOverride;
831  }
832 
833  // Let the handle know what the cluster master is (e.g. "db1052")
834  $masterName = $this->getServerName( 0 );
835  $server['clusterMasterHost'] = $masterName;
836 
837  // Log when many connection are made on requests
838  if ( ++$this->connsOpened >= self::CONN_HELD_WARN_THRESHOLD ) {
839  wfDebugLog( 'DBPerformance', __METHOD__ . ": " .
840  "{$this->connsOpened}+ connections made (master=$masterName)\n" .
841  wfBacktrace( true ) );
842  }
843 
844  # Create object
845  try {
846  $db = DatabaseBase::factory( $server['type'], $server );
847  } catch ( DBConnectionError $e ) {
848  // FIXME: This is probably the ugliest thing I have ever done to
849  // PHP. I'm half-expecting it to segfault, just out of disgust. -- TS
850  $db = $e->db;
851  }
852 
853  $db->setLBInfo( $server );
854  $db->setLazyMasterHandle(
855  $this->getLazyConnectionRef( DB_MASTER, [], $db->getWikiID() )
856  );
857  $db->setTransactionProfiler( $this->trxProfiler );
858 
859  return $db;
860  }
861 
866  private function reportConnectionError() {
867  $conn = $this->mErrorConnection; // The connection which caused the error
868  $context = [
869  'method' => __METHOD__,
870  'last_error' => $this->mLastError,
871  ];
872 
873  if ( !is_object( $conn ) ) {
874  // No last connection, probably due to all servers being too busy
875  wfLogDBError(
876  "LB failure with no last connection. Connection error: {last_error}",
877  $context
878  );
879 
880  // If all servers were busy, mLastError will contain something sensible
881  throw new DBConnectionError( null, $this->mLastError );
882  } else {
883  $context['db_server'] = $conn->getProperty( 'mServer' );
884  wfLogDBError(
885  "Connection error: {last_error} ({db_server})",
886  $context
887  );
888 
889  // throws DBConnectionError
890  $conn->reportConnectionError( "{$this->mLastError} ({$context['db_server']})" );
891  }
892 
893  return false; /* not reached */
894  }
895 
900  public function getWriterIndex() {
901  return 0;
902  }
903 
910  public function haveIndex( $i ) {
911  return array_key_exists( $i, $this->mServers );
912  }
913 
920  public function isNonZeroLoad( $i ) {
921  return array_key_exists( $i, $this->mServers ) && $this->mLoads[$i] != 0;
922  }
923 
929  public function getServerCount() {
930  return count( $this->mServers );
931  }
932 
939  public function getServerName( $i ) {
940  if ( isset( $this->mServers[$i]['hostName'] ) ) {
941  $name = $this->mServers[$i]['hostName'];
942  } elseif ( isset( $this->mServers[$i]['host'] ) ) {
943  $name = $this->mServers[$i]['host'];
944  } else {
945  $name = '';
946  }
947 
948  return ( $name != '' ) ? $name : 'localhost';
949  }
950 
956  public function getServerInfo( $i ) {
957  if ( isset( $this->mServers[$i] ) ) {
958  return $this->mServers[$i];
959  } else {
960  return false;
961  }
962  }
963 
970  public function setServerInfo( $i, array $serverInfo ) {
971  $this->mServers[$i] = $serverInfo;
972  }
973 
978  public function getMasterPos() {
979  # If this entire request was served from a slave without opening a connection to the
980  # master (however unlikely that may be), then we can fetch the position from the slave.
981  $masterConn = $this->getAnyOpenConnection( 0 );
982  if ( !$masterConn ) {
983  $serverCount = count( $this->mServers );
984  for ( $i = 1; $i < $serverCount; $i++ ) {
985  $conn = $this->getAnyOpenConnection( $i );
986  if ( $conn ) {
987  return $conn->getSlavePos();
988  }
989  }
990  } else {
991  return $masterConn->getMasterPos();
992  }
993 
994  return false;
995  }
996 
1003  public function disable() {
1004  $this->closeAll();
1005  $this->disabled = true;
1006  }
1007 
1011  public function closeAll() {
1012  $this->forEachOpenConnection( function ( DatabaseBase $conn ) {
1013  $conn->close();
1014  } );
1015 
1016  $this->mConns = [
1017  'local' => [],
1018  'foreignFree' => [],
1019  'foreignUsed' => [],
1020  ];
1021  $this->connsOpened = 0;
1022  }
1023 
1030  public function closeConnection( $conn ) {
1031  $done = false;
1032  foreach ( $this->mConns as $i1 => $conns2 ) {
1033  foreach ( $conns2 as $i2 => $conns3 ) {
1034  foreach ( $conns3 as $i3 => $candidateConn ) {
1035  if ( $conn === $candidateConn ) {
1036  $conn->close();
1037  unset( $this->mConns[$i1][$i2][$i3] );
1039  $done = true;
1040  break;
1041  }
1042  }
1043  }
1044  }
1045  if ( !$done ) {
1046  $conn->close();
1047  }
1048  }
1049 
1054  public function commitAll( $fname = __METHOD__ ) {
1055  $this->forEachOpenConnection( function ( DatabaseBase $conn ) use ( $fname ) {
1056  $conn->commit( $fname, 'flush' );
1057  } );
1058  }
1059 
1065  public function runMasterPreCommitCallbacks() {
1066  $this->forEachOpenMasterConnection( function ( DatabaseBase $conn ) {
1067  // Any error will cause all DB transactions to be rolled back together.
1069  // Defer post-commit callbacks until COMMIT finishes for all DBs.
1070  $conn->setPostCommitCallbackSupression( true );
1071  } );
1072  }
1073 
1081  public function approveMasterChanges( array $options ) {
1082  $limit = isset( $options['maxWriteDuration'] ) ? $options['maxWriteDuration'] : 0;
1083  $this->forEachOpenMasterConnection( function ( DatabaseBase $conn ) use ( $limit ) {
1084  // Assert that the time to replicate the transaction will be sane.
1085  // If this fails, then all DB transactions will be rollback back together.
1086  $time = $conn->pendingWriteQueryDuration();
1087  if ( $limit > 0 && $time > $limit ) {
1088  throw new DBTransactionError(
1089  $conn,
1090  wfMessage( 'transaction-duration-limit-exceeded', $time, $limit )->text()
1091  );
1092  }
1093  } );
1094  }
1095 
1100  public function commitMasterChanges( $fname = __METHOD__ ) {
1101  $this->forEachOpenMasterConnection( function ( DatabaseBase $conn ) use ( $fname ) {
1102  if ( $conn->writesOrCallbacksPending() ) {
1103  $conn->commit( $fname, 'flush' );
1104  }
1105  } );
1106  }
1107 
1112  public function runMasterPostCommitCallbacks() {
1113  $this->forEachOpenMasterConnection( function ( DatabaseBase $db ) {
1114  $db->setPostCommitCallbackSupression( false );
1116  } );
1117  }
1118 
1125  public function rollbackMasterChanges( $fname = __METHOD__ ) {
1126  $failedServers = [];
1127 
1128  $masterIndex = $this->getWriterIndex();
1129  foreach ( $this->mConns as $conns2 ) {
1130  if ( empty( $conns2[$masterIndex] ) ) {
1131  continue;
1132  }
1134  foreach ( $conns2[$masterIndex] as $conn ) {
1135  if ( $conn->trxLevel() && $conn->writesOrCallbacksPending() ) {
1136  try {
1137  $conn->rollback( $fname, 'flush' );
1138  } catch ( DBError $e ) {
1140  $failedServers[] = $conn->getServer();
1141  }
1142  }
1143  }
1144  }
1145 
1146  if ( $failedServers ) {
1147  throw new DBExpectedError( null, "Rollback failed on server(s) " .
1148  implode( ', ', array_unique( $failedServers ) ) );
1149  }
1150  }
1151 
1156  public function hasMasterConnection() {
1157  return $this->isOpen( $this->getWriterIndex() );
1158  }
1159 
1165  public function hasMasterChanges() {
1166  $masterIndex = $this->getWriterIndex();
1167  foreach ( $this->mConns as $conns2 ) {
1168  if ( empty( $conns2[$masterIndex] ) ) {
1169  continue;
1170  }
1172  foreach ( $conns2[$masterIndex] as $conn ) {
1173  if ( $conn->trxLevel() && $conn->writesOrCallbacksPending() ) {
1174  return true;
1175  }
1176  }
1177  }
1178  return false;
1179  }
1180 
1186  public function lastMasterChangeTimestamp() {
1187  $lastTime = false;
1188  $masterIndex = $this->getWriterIndex();
1189  foreach ( $this->mConns as $conns2 ) {
1190  if ( empty( $conns2[$masterIndex] ) ) {
1191  continue;
1192  }
1194  foreach ( $conns2[$masterIndex] as $conn ) {
1195  $lastTime = max( $lastTime, $conn->lastDoneWrites() );
1196  }
1197  }
1198  return $lastTime;
1199  }
1200 
1209  public function hasOrMadeRecentMasterChanges( $age = null ) {
1210  $age = ( $age === null ) ? $this->mWaitTimeout : $age;
1211 
1212  return ( $this->hasMasterChanges()
1213  || $this->lastMasterChangeTimestamp() > microtime( true ) - $age );
1214  }
1215 
1222  public function pendingMasterChangeCallers() {
1223  $fnames = [];
1224 
1225  $masterIndex = $this->getWriterIndex();
1226  foreach ( $this->mConns as $conns2 ) {
1227  if ( empty( $conns2[$masterIndex] ) ) {
1228  continue;
1229  }
1231  foreach ( $conns2[$masterIndex] as $conn ) {
1232  $fnames = array_merge( $fnames, $conn->pendingWriteCallers() );
1233  }
1234  }
1235 
1236  return $fnames;
1237  }
1238 
1243  public function waitTimeout( $value = null ) {
1244  return wfSetVar( $this->mWaitTimeout, $value );
1245  }
1246 
1253  public function getLaggedSlaveMode( $wiki = false ) {
1254  // No-op if there is only one DB (also avoids recursion)
1255  if ( !$this->laggedSlaveMode && $this->getServerCount() > 1 ) {
1256  try {
1257  // See if laggedSlaveMode gets set
1258  $conn = $this->getConnection( DB_SLAVE, false, $wiki );
1259  $this->reuseConnection( $conn );
1260  } catch ( DBConnectionError $e ) {
1261  // Avoid expensive re-connect attempts and failures
1262  $this->slavesDownMode = true;
1263  $this->laggedSlaveMode = true;
1264  }
1265  }
1266 
1267  return $this->laggedSlaveMode;
1268  }
1269 
1275  public function laggedSlaveUsed() {
1276  return $this->laggedSlaveMode;
1277  }
1278 
1286  public function getReadOnlyReason( $wiki = false, DatabaseBase $conn = null ) {
1287  if ( $this->readOnlyReason !== false ) {
1288  return $this->readOnlyReason;
1289  } elseif ( $this->getLaggedSlaveMode( $wiki ) ) {
1290  if ( $this->slavesDownMode ) {
1291  return 'The database has been automatically locked ' .
1292  'until the slave database servers become available';
1293  } else {
1294  return 'The database has been automatically locked ' .
1295  'while the slave database servers catch up to the master.';
1296  }
1297  } elseif ( $this->masterRunningReadOnly( $wiki, $conn ) ) {
1298  return 'The database master is running in read-only mode.';
1299  }
1300 
1301  return false;
1302  }
1303 
1309  private function masterRunningReadOnly( $wiki, DatabaseBase $conn = null ) {
1311  $masterServer = $this->getServerName( $this->getWriterIndex() );
1312 
1313  return (bool)$cache->getWithSetCallback(
1314  $cache->makeGlobalKey( __CLASS__, 'server-read-only', $masterServer ),
1315  self::TTL_CACHE_READONLY,
1316  function () use ( $wiki, $conn ) {
1317  try {
1318  $dbw = $conn ?: $this->getConnection( DB_MASTER, [], $wiki );
1319  return (int)$dbw->serverIsReadOnly();
1320  } catch ( DBError $e ) {
1321  return 0;
1322  }
1323  },
1324  [ 'pcTTL' => $cache::TTL_PROC_LONG, 'busyValue' => 0 ]
1325  );
1326  }
1327 
1333  public function allowLagged( $mode = null ) {
1334  if ( $mode === null ) {
1335  return $this->mAllowLagged;
1336  }
1337  $this->mAllowLagged = $mode;
1338 
1339  return $this->mAllowLagged;
1340  }
1341 
1345  public function pingAll() {
1346  $success = true;
1347  $this->forEachOpenConnection( function ( DatabaseBase $conn ) use ( &$success ) {
1348  if ( !$conn->ping() ) {
1349  $success = false;
1350  }
1351  } );
1352 
1353  return $success;
1354  }
1355 
1361  public function forEachOpenConnection( $callback, array $params = [] ) {
1362  foreach ( $this->mConns as $connsByServer ) {
1363  foreach ( $connsByServer as $serverConns ) {
1364  foreach ( $serverConns as $conn ) {
1365  $mergedParams = array_merge( [ $conn ], $params );
1366  call_user_func_array( $callback, $mergedParams );
1367  }
1368  }
1369  }
1370  }
1371 
1378  public function forEachOpenMasterConnection( $callback, array $params = [] ) {
1379  $masterIndex = $this->getWriterIndex();
1380  foreach ( $this->mConns as $connsByServer ) {
1381  if ( isset( $connsByServer[$masterIndex] ) ) {
1383  foreach ( $connsByServer[$masterIndex] as $conn ) {
1384  $mergedParams = array_merge( [ $conn ], $params );
1385  call_user_func_array( $callback, $mergedParams );
1386  }
1387  }
1388  }
1389  }
1390 
1401  public function getMaxLag( $wiki = false ) {
1402  $maxLag = -1;
1403  $host = '';
1404  $maxIndex = 0;
1405 
1406  if ( $this->getServerCount() <= 1 ) {
1407  return [ $host, $maxLag, $maxIndex ]; // no replication = no lag
1408  }
1409 
1410  $lagTimes = $this->getLagTimes( $wiki );
1411  foreach ( $lagTimes as $i => $lag ) {
1412  if ( $this->mLoads[$i] > 0 && $lag > $maxLag ) {
1413  $maxLag = $lag;
1414  $host = $this->mServers[$i]['host'];
1415  $maxIndex = $i;
1416  }
1417  }
1418 
1419  return [ $host, $maxLag, $maxIndex ];
1420  }
1421 
1432  public function getLagTimes( $wiki = false ) {
1433  if ( $this->getServerCount() <= 1 ) {
1434  return [ 0 => 0 ]; // no replication = no lag
1435  }
1436 
1437  # Send the request to the load monitor
1438  return $this->getLoadMonitor()->getLagTimes( array_keys( $this->mServers ), $wiki );
1439  }
1440 
1455  public function safeGetLag( IDatabase $conn ) {
1456  if ( $this->getServerCount() == 1 ) {
1457  return 0;
1458  } else {
1459  return $conn->getLag();
1460  }
1461  }
1462 
1474  public function safeWaitForMasterPos( IDatabase $conn, $pos = false, $timeout = 10 ) {
1475  if ( $this->getServerCount() == 1 || !$conn->getLBInfo( 'slave' ) ) {
1476  return true; // server is not a slave DB
1477  }
1478 
1479  $pos = $pos ?: $this->getConnection( DB_MASTER )->getMasterPos();
1480  if ( !( $pos instanceof DBMasterPos ) ) {
1481  return false; // something is misconfigured
1482  }
1483 
1484  $result = $conn->masterPosWait( $pos, $timeout );
1485  if ( $result == -1 || is_null( $result ) ) {
1486  $msg = __METHOD__ . ": Timed out waiting on {$conn->getServer()} pos {$pos}";
1487  wfDebugLog( 'replication', "$msg\n" );
1488  wfDebugLog( 'DBPerformance', "$msg:\n" . wfBacktrace( true ) );
1489  $ok = false;
1490  } else {
1491  wfDebugLog( 'replication', __METHOD__ . ": Done\n" );
1492  $ok = true;
1493  }
1494 
1495  return $ok;
1496  }
1497 
1503  public function clearLagTimeCache() {
1504  $this->getLoadMonitor()->clearCaches();
1505  }
1506 }
ping()
Ping the server and try to reconnect if it there is no connection.
Definition: Database.php:2893
getLaggedSlaveMode($wiki=false)
static getMainWANInstance()
Get the main WAN cache object.
commitAll($fname=__METHOD__)
Commit transactions on all open connections.
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
Database error base class.
const TRIGGER_COMMIT
Definition: IDatabase.php:38
the array() calling protocol came about after MediaWiki 1.4rc1.
safeGetLag(IDatabase $conn)
Get the lag in seconds for a given connection, or zero if this load balancer does not have replicatio...
masterRunningReadOnly($wiki, DatabaseBase $conn=null)
integer $mWaitTimeout
Seconds to spend waiting on slave lag to resolve.
getAnyOpenConnection($i)
Get any open connection to a given server index, local or foreign Returns false if there is no connec...
$context
Definition: load.php:43
$success
reuseConnection($conn)
Mark a foreign connection as being available for reuse under a different DB name or prefix...
getServerCount()
Get the number of defined servers (not the number of open connections)
array[] $mServers
Map of (server index => server config array)
bool $slavesDownMode
Whether the generic reader fell back to a lagged slave.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
array $mParentInfo
LBFactory information.
getLoadMonitor()
Get a LoadMonitor instance.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
Definition: hooks.txt:1980
static instance()
Singleton.
Definition: Profiler.php:60
rollbackMasterChanges($fname=__METHOD__)
Issue ROLLBACK only on master, only if queries were done on connection.
array $mLoads
Map of (server index => weight)
wfHostname()
Fetch server name for use in error reporting etc.
getLazyConnectionRef($db, $groups=[], $wiki=false)
Get a database connection handle reference without connecting yet.
$wgDBtype
Database type.
wfBacktrace($raw=null)
Get a debug backtrace as a string.
runOnTransactionIdleCallbacks($trigger)
Actually run and consume any "on transaction idle/resolution" callbacks.
Definition: Database.php:2513
wfLogDBError($text, array $context=[])
Log for database errors.
$value
An object representing a master or slave position in a replicated setup.
getMaxLag($wiki=false)
Get the hostname and lag time of the most-lagged slave.
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
array[] $mGroupLoads
Map of (group => server index => weight)
forEachOpenConnection($callback, array $params=[])
Call a function with each open connection object.
masterPosWait(DBMasterPos $pos, $timeout)
Wait for the slave to catch up to a given master position.
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition: hooks.txt:1629
close()
Closes a database connection.
Definition: Database.php:698
boolean $disabled
__construct(array $params)
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
array[] $mConns
Map of (local/foreignUsed/foreignFree => server index => DatabaseBase array)
runOnTransactionPreCommitCallbacks()
Actually run and consume any "on transaction pre-commit" callbacks.
Definition: Database.php:2564
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:1814
getConnection($i, $groups=[], $wiki=false)
Get a connection by index This is the main entry point for this class.
doWait($index, $open=false, $timeout=null)
Wait for a given slave to catch up to the master pos stored in $this.
BagOStuff $srvCache
LoadMonitor $mLoadMonitor
getRandomNonLagged(array $loads, $wiki=false, $maxLag=self::MAX_LAG)
WANObjectCache $wanCache
Database load balancing object.
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
getServerInfo($i)
Return the server info structure for a given index, or false if the index is invalid.
string $mLastError
The last DB selection or connection error.
setServerInfo($i, array $serverInfo)
Sets the server info structure for the given index.
Base class for the more common types of database errors.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
Definition: design.txt:25
bool DatabaseBase $mErrorConnection
Database connection that caused a problem.
getLag()
Get slave lag.
Helper class that detects high-contention DB queries via profiling calls.
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 as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1020
waitForOne($pos, $timeout=null)
Set the master wait position and wait for a "generic" slave to catch up to it.
allowLagged($mode=null)
Disables/enables lag checks.
openForeignConnection($i, $wiki)
Open a connection to a foreign DB, or return one if it is already open.
getReadOnlyReason($wiki=false, DatabaseBase $conn=null)
MediaWiki exception.
Definition: MWException.php:26
hasMasterChanges()
Determine if there are pending changes in a transaction by this thread.
Exception class for attempted DB access.
Definition: LBFactory.php:462
integer $connsOpened
Total connections opened.
$cache
Definition: mcc.php:33
$params
openConnection($i, $wiki=false)
Open a connection to the server given by the specified index Index must be an actual index into the a...
parentInfo($x=null)
Get or set arbitrary data used by the parent object, usually an LBFactory.
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handl...
Definition: DBConnRef.php:10
static factory($dbType, $p=[])
Given a DB type, construct the name of the appropriate child class of DatabaseBase.
Definition: Database.php:584
const DB_SLAVE
Definition: Defines.php:46
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned after processing after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"&lt
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
clearLagTimeCache()
Clear the cache for slag lag delay times.
disable()
Disable this load balancer.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
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
approveMasterChanges(array $options)
Perform all pre-commit checks for things like replication safety.
hasOrMadeRecentMasterChanges($age=null)
Check if this load balancer object had any recent or still pending writes issued against it by this P...
forEachOpenMasterConnection($callback, array $params=[])
Call a function with each open connection object to a master.
pendingWriteQueryDuration()
Get the time spend running write queries for this transaction.
Definition: Database.php:400
getLagTimes($wiki=false)
Get an estimate of replication lag (in seconds) for each server.
Database abstraction object.
Definition: Database.php:32
getConnectionRef($db, $groups=[], $wiki=false)
Get a database connection handle reference.
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
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined...
Definition: Setup.php:36
runMasterPreCommitCallbacks()
Perform all pre-commit callbacks that remain part of the atomic transactions and disable any post-com...
closeAll()
Close all open connections.
static getLocalServerInstance($fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
setPostCommitCallbackSupression($suppress)
Whether to disable running of post-commit callbacks.
Definition: Database.php:2501
waitTimeout($value=null)
closeConnection($conn)
Close a connection Using this function makes sure the LoadBalancer knows the connection is closed...
haveIndex($i)
Returns true if the specified index is a valid server index.
getLBInfo($name=null)
Get properties passed down from the server info array of the load balancer.
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 as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1020
commit($fname=__METHOD__, $flush= '')
Commits a transaction previously started using begin().
Definition: Database.php:2697
isOpen($index)
Test if the specified index represents an open connection.
static pickRandom($weights)
Given an array of non-normalised probabilities, this function will select an element and return the a...
Definition: ArrayUtils.php:66
pendingMasterChangeCallers()
Get the list of callers that have pending master changes.
const DB_MASTER
Definition: Defines.php:47
getReaderIndex($group=false, $wiki=false)
Get the index of the reader connection, which may be a slave This takes into account load ratios and ...
isNonZeroLoad($i)
Returns true if the specified index is valid and has non-zero load.
waitFor($pos)
Set the master wait position If a DB_SLAVE connection has been opened already, waits Otherwise sets a...
integer $mReadIndex
The generic (not query grouped) slave index (of $mServers)
getMasterPos()
Get the current master position for chronology control purposes.
string bool $readOnlyReason
Reason the LB is read-only or false if not.
wfSplitWikiID($wiki)
Split a wiki ID into DB name and table prefix.
bool $mAllowLagged
Whether to disregard slave lag as a factor in slave selection.
commitMasterChanges($fname=__METHOD__)
Issue COMMIT on all master connections where writes where done.
writesOrCallbacksPending()
Returns true if there is a transaction open with possible write queries or transaction pre-commit/idl...
Definition: Database.php:394
bool DBMasterPos $mWaitForPos
False if not set.
getServerName($i)
Get the host name or IP address of the server with the specified index Prefer a readable name if avai...
static logException($e)
Log an exception to the exception log (if enabled).
reallyOpenConnection($server, $dbNameOverride=false)
Really opens a connection.
string $mLoadMonitorClass
The LoadMonitor subclass name.
waitForAll($pos, $timeout=null)
Set the master wait position and wait for ALL slaves to catch up to it.
bool $laggedSlaveMode
Whether the generic reader fell back to a lagged slave.
TransactionProfiler $trxProfiler
Basic database interface for live and lazy-loaded DB handles.
Definition: IDatabase.php:35
runMasterPostCommitCallbacks()
Issue all pending post-commit callbacks.
safeWaitForMasterPos(IDatabase $conn, $pos=false, $timeout=10)
Wait for a slave DB to reach a specified master position.
lastMasterChangeTimestamp()
Get the timestamp of the latest write query done by this thread.
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:310