52 $this->replLogger = new \Psr\Log\NullLogger();
54 $this->movingAveRatio = isset(
$options[
'movingAveRatio'] )
59 public function setLogger( LoggerInterface $logger ) {
60 $this->replLogger = $logger;
64 $serverIndexes = array_keys( $weightByServer );
66 $coefficientsByServer = $states[
'weightScales'];
67 foreach ( $weightByServer
as $i => $weight ) {
68 if ( isset( $coefficientsByServer[$i] ) ) {
69 $weightByServer[$i] = $weight * $coefficientsByServer[$i];
71 $host = $this->parent->getServerName( $i );
72 $this->replLogger->error( __METHOD__ .
": host $host not in cache" );
80 return $states[
'lagTimes'];
84 $writerIndex = $this->parent->getWriterIndex();
85 if ( count( $serverIndexes ) == 1 && reset( $serverIndexes ) == $writerIndex ) {
86 # Single server only, just return zero without caching
88 'lagTimes' => [ $writerIndex => 0 ],
89 'weightScales' => [ $writerIndex => 1.0 ]
94 # Randomize TTLs to reduce stampedes (4.0 - 5.0 sec)
95 $ttl = mt_rand( 4e6, 5e6 ) / 1e6;
96 # Keep keys around longer as fallbacks
99 # (a) Check the local APC cache
100 $value = $this->srvCache->get( $key );
101 if (
$value &&
$value[
'timestamp'] > ( microtime(
true ) - $ttl ) ) {
102 $this->replLogger->debug( __METHOD__ .
": got lag times ($key) from local cache" );
105 $staleValue =
$value ?:
false;
107 # (b) Check the shared cache and backfill APC
108 $value = $this->mainCache->get( $key );
109 if (
$value &&
$value[
'timestamp'] > ( microtime(
true ) - $ttl ) ) {
110 $this->srvCache->set( $key,
$value, $staleTTL );
111 $this->replLogger->debug( __METHOD__ .
": got lag times ($key) from main cache" );
115 $staleValue =
$value ?: $staleValue;
117 # (c) Cache key missing or expired; regenerate and backfill
118 if ( $this->mainCache->lock( $key, 0, 10 ) ) {
119 # Let this process alone update the cache value
122 $unlocker =
new ScopedCallback(
function ()
use (
$cache, $key ) {
125 } elseif ( $staleValue ) {
126 # Could not acquire lock but an old cache exists, so use it
133 foreach ( $serverIndexes
as $i ) {
134 if ( $i == $this->parent->getWriterIndex() ) {
136 $weightScales[$i] = 1.0;
140 $conn = $this->parent->getAnyOpenConnection( $i );
144 $conn = $this->parent->openConnection( $i, $domain );
148 $lastWeight = isset( $staleValue[
'weightScales'][$i] )
149 ? $staleValue[
'weightScales'][$i]
152 $newWeight = $movAveRatio * $coefficient + ( 1 - $movAveRatio ) * $lastWeight;
155 $weightScales[$i] = max( $newWeight, .10 );
158 $lagTimes[$i] =
false;
159 $host = $this->parent->getServerName( $i );
160 $this->replLogger->error( __METHOD__ .
": host $host is unreachable" );
164 if ( $conn->getLBInfo(
'is static' ) ) {
167 $lagTimes[$i] = $conn->getLag();
168 if ( $lagTimes[$i] ===
false ) {
169 $host = $this->parent->getServerName( $i );
170 $this->replLogger->error( __METHOD__ .
": host $host is not replicating?" );
175 # Close the connection to avoid sleeper connections piling up.
176 # Note that the caller will pick one of these DBs and reconnect,
177 # which is slightly inefficient, but this only matters for the lag
178 # time cache miss cache, which is far less common that cache hits.
179 $this->parent->closeConnection( $conn );
183 # Add a timestamp key so we know when it was cached
185 'lagTimes' => $lagTimes,
186 'weightScales' => $weightScales,
187 'timestamp' => microtime(
true )
189 $this->mainCache->set( $key,
$value, $staleTTL );
190 $this->srvCache->set( $key,
$value, $staleTTL );
191 $this->replLogger->info( __METHOD__ .
": re-calculated lag times ($key)" );
202 return $conn ? 1.0 : 0.0;
206 sort( $serverIndexes );
208 return $this->srvCache->makeGlobalKey(
211 $this->parent->getServerName( $this->parent->getWriterIndex() ),
212 implode(
'-', $serverIndexes )
An interface for database load monitoring.
scaleLoads(array &$weightByServer, $domain)
Perform load ratio adjustment before deciding which server to use.
Basic DB load monitor with no external dependencies Uses memcached to cache the replication lag for a...
the array() calling protocol came about after MediaWiki 1.4rc1.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Database cluster connection, tracking, load balancing, and transaction manager interface.
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
getLagTimes(array $serverIndexes, $domain)
Get an estimate of replication lag (in seconds) for each server.
LoggerInterface $replLogger
getServerStates(array $serverIndexes, $domain)
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
getCacheKey(array $serverIndexes)
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
float $movingAveRatio
Moving average ratio (e.g.
__construct(ILoadBalancer $lb, BagOStuff $srvCache, BagOStuff $cache, array $options=[])
Construct a new LoadMonitor with a given LoadBalancer parent.
setLogger(LoggerInterface $logger)
getWeightScale($index, IDatabase $conn=null)
Basic database interface for live and lazy-loaded relation database handles.