MediaWiki REL1_34
LoadMonitorMySQL.php
Go to the documentation of this file.
1<?php
22namespace Wikimedia\Rdbms;
23
24use BagOStuff;
26
36
37 public function __construct(
38 ILoadBalancer $lb, BagOStuff $srvCache, WANObjectCache $wCache, array $options = []
39 ) {
40 parent::__construct( $lb, $srvCache, $wCache, $options );
41
42 $this->warmCacheRatio = $options['warmCacheRatio'] ?? 0.0;
43 }
44
45 protected function getWeightScale( $index, IDatabase $conn = null ) {
46 if ( !$conn ) {
47 // @phan-suppress-next-line PhanTypeMismatchArgumentReal
48 return parent::getWeightScale( $index, $conn );
49 }
50
51 $weight = 1.0;
52 if ( $this->warmCacheRatio > 0 ) {
53 $res = $conn->query( 'SHOW STATUS', __METHOD__ );
54 $s = $res ? $conn->fetchObject( $res ) : false;
55 if ( $s === false ) {
56 $host = $this->lb->getServerName( $index );
57 $this->replLogger->error( __METHOD__ . ": could not get status for $host" );
58 } else {
59 // https://dev.mysql.com/doc/refman/5.7/en/server-status-variables.html
60 if ( $s->Innodb_buffer_pool_pages_total > 0 ) {
61 $ratio = $s->Innodb_buffer_pool_pages_data / $s->Innodb_buffer_pool_pages_total;
62 } else {
63 $ratio = 1.0;
64 }
65 // Stop caring once $ratio >= $this->warmCacheRatio
66 $weight *= min( $ratio / $this->warmCacheRatio, 1.0 );
67 }
68 }
69
70 return $weight;
71 }
72}
Class representing a cache/ephemeral data store.
Definition BagOStuff.php:63
Multi-datacenter aware caching interface.
Basic MySQL load monitor with no external dependencies Uses memcached to cache the replication lag fo...
__construct(ILoadBalancer $lb, BagOStuff $srvCache, WANObjectCache $wCache, array $options=[])
float $warmCacheRatio
What buffer pool use ratio counts as "warm" (e.g.
getWeightScale( $index, IDatabase $conn=null)
Basic DB load monitor with no external dependencies Uses memcached to cache the replication lag for a...
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
Database cluster connection, tracking, load balancing, and transaction manager interface.