5c172d653d65eb0cedf5d4e403c614cf566fad75
[lhc/web/wiklou.git] / includes / libs / rdbms / loadbalancer / LoadBalancer.php
1 <?php
2 /**
3 * Database load balancing manager
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22 namespace Wikimedia\Rdbms;
23
24 use Psr\Log\LoggerInterface;
25 use Psr\Log\NullLogger;
26 use Wikimedia\ScopedCallback;
27 use BagOStuff;
28 use EmptyBagOStuff;
29 use WANObjectCache;
30 use ArrayUtils;
31 use LogicException;
32 use UnexpectedValueException;
33 use InvalidArgumentException;
34 use RuntimeException;
35 use Exception;
36
37 /**
38 * Database connection, tracking, load balancing, and transaction manager for a cluster
39 *
40 * @ingroup Database
41 */
42 class LoadBalancer implements ILoadBalancer {
43 /** @var ILoadMonitor */
44 private $loadMonitor;
45 /** @var callable|null Callback to run before the first connection attempt */
46 private $chronologyCallback;
47 /** @var BagOStuff */
48 private $srvCache;
49 /** @var WANObjectCache */
50 private $wanCache;
51 /** @var mixed Class name or object With profileIn/profileOut methods */
52 private $profiler;
53 /** @var TransactionProfiler */
54 private $trxProfiler;
55 /** @var LoggerInterface */
56 private $replLogger;
57 /** @var LoggerInterface */
58 private $connLogger;
59 /** @var LoggerInterface */
60 private $queryLogger;
61 /** @var LoggerInterface */
62 private $perfLogger;
63 /** @var callable Exception logger */
64 private $errorLogger;
65 /** @var callable Deprecation logger */
66 private $deprecationLogger;
67
68 /** @var DatabaseDomain Local DB domain ID and default for selectDB() calls */
69 private $localDomain;
70
71 /** @var Database[][][] Map of (connection category => server index => IDatabase[]) */
72 private $conns;
73
74 /** @var array[] Map of (server index => server config array) */
75 private $servers;
76 /** @var array[] Map of (group => server index => weight) */
77 private $groupLoads;
78 /** @var bool Whether to disregard replica DB lag as a factor in replica DB selection */
79 private $allowLagged;
80 /** @var int Seconds to spend waiting on replica DB lag to resolve */
81 private $waitTimeout;
82 /** @var array The LoadMonitor configuration */
83 private $loadMonitorConfig;
84 /** @var string Alternate local DB domain instead of DatabaseDomain::getId() */
85 private $localDomainIdAlias;
86 /** @var int Amount of replication lag, in seconds, that is considered "high" */
87 private $maxLag;
88 /** @var string|null Default query group to use with getConnection() */
89 private $defaultGroup;
90
91 /** @var string Current server name */
92 private $hostname;
93 /** @var bool Whether this PHP instance is for a CLI script */
94 private $cliMode;
95 /** @var string Agent name for query profiling */
96 private $agent;
97
98 /** @var array[] $aliases Map of (table => (dbname, schema, prefix) map) */
99 private $tableAliases = [];
100 /** @var string[] Map of (index alias => index) */
101 private $indexAliases = [];
102 /** @var array[] Map of (name => callable) */
103 private $trxRecurringCallbacks = [];
104 /** @var bool[] Map of (domain => whether to use "temp tables only" mode) */
105 private $tempTablesOnlyMode = [];
106
107 /** @var Database Connection handle that caused a problem */
108 private $errorConnection;
109 /** @var int[] The group replica server indexes keyed by group */
110 private $readIndexByGroup = [];
111 /** @var bool|DBMasterPos Replication sync position or false if not set */
112 private $waitForPos;
113 /** @var bool Whether the generic reader fell back to a lagged replica DB */
114 private $laggedReplicaMode = false;
115 /** @var string The last DB selection or connection error */
116 private $lastError = 'Unknown error';
117 /** @var string|bool Reason this instance is read-only or false if not */
118 private $readOnlyReason = false;
119 /** @var int Total number of new connections ever made with this instance */
120 private $connectionCounter = 0;
121 /** @var bool */
122 private $disabled = false;
123 /** @var bool Whether any connection has been attempted yet */
124 private $connectionAttempted = false;
125
126 /** @var int|null Integer ID of the managing LBFactory instance or null if none */
127 private $ownerId;
128 /** @var string|bool Explicit DBO_TRX transaction round active or false if none */
129 private $trxRoundId = false;
130 /** @var string Stage of the current transaction round in the transaction round life-cycle */
131 private $trxRoundStage = self::ROUND_CURSORY;
132
133 /** @var int Warn when this many connection are held */
134 const CONN_HELD_WARN_THRESHOLD = 10;
135
136 /** @var int Default 'maxLag' when unspecified */
137 const MAX_LAG_DEFAULT = 6;
138 /** @var int Default 'waitTimeout' when unspecified */
139 const MAX_WAIT_DEFAULT = 10;
140 /** @var int Seconds to cache master DB server read-only status */
141 const TTL_CACHE_READONLY = 5;
142
143 const KEY_LOCAL = 'local';
144 const KEY_FOREIGN_FREE = 'foreignFree';
145 const KEY_FOREIGN_INUSE = 'foreignInUse';
146
147 const KEY_LOCAL_NOROUND = 'localAutoCommit';
148 const KEY_FOREIGN_FREE_NOROUND = 'foreignFreeAutoCommit';
149 const KEY_FOREIGN_INUSE_NOROUND = 'foreignInUseAutoCommit';
150
151 /** @var string Transaction round, explicit or implicit, has not finished writing */
152 const ROUND_CURSORY = 'cursory';
153 /** @var string Transaction round writes are complete and ready for pre-commit checks */
154 const ROUND_FINALIZED = 'finalized';
155 /** @var string Transaction round passed final pre-commit checks */
156 const ROUND_APPROVED = 'approved';
157 /** @var string Transaction round was committed and post-commit callbacks must be run */
158 const ROUND_COMMIT_CALLBACKS = 'commit-callbacks';
159 /** @var string Transaction round was rolled back and post-rollback callbacks must be run */
160 const ROUND_ROLLBACK_CALLBACKS = 'rollback-callbacks';
161 /** @var string Transaction round encountered an error */
162 const ROUND_ERROR = 'error';
163
164 public function __construct( array $params ) {
165 if ( !isset( $params['servers'] ) || !count( $params['servers'] ) ) {
166 throw new InvalidArgumentException( 'Missing or empty "servers" parameter' );
167 }
168
169 $listKey = -1;
170 $this->servers = [];
171 $this->groupLoads = [ self::GROUP_GENERIC => [] ];
172 foreach ( $params['servers'] as $i => $server ) {
173 if ( ++$listKey !== $i ) {
174 throw new UnexpectedValueException( 'List expected for "servers" parameter' );
175 }
176 if ( $i == 0 ) {
177 $server['master'] = true;
178 } else {
179 $server['replica'] = true;
180 }
181 $this->servers[$i] = $server;
182 foreach ( ( $server['groupLoads'] ?? [] ) as $group => $ratio ) {
183 $this->groupLoads[$group][$i] = $ratio;
184 }
185 $this->groupLoads[self::GROUP_GENERIC][$i] = $server['load'];
186 }
187
188 $localDomain = isset( $params['localDomain'] )
189 ? DatabaseDomain::newFromId( $params['localDomain'] )
190 : DatabaseDomain::newUnspecified();
191 $this->setLocalDomain( $localDomain );
192
193 $this->waitTimeout = $params['waitTimeout'] ?? self::MAX_WAIT_DEFAULT;
194
195 $this->conns = self::newTrackedConnectionsArray();
196 $this->waitForPos = false;
197 $this->allowLagged = false;
198
199 if ( isset( $params['readOnlyReason'] ) && is_string( $params['readOnlyReason'] ) ) {
200 $this->readOnlyReason = $params['readOnlyReason'];
201 }
202
203 $this->maxLag = $params['maxLag'] ?? self::MAX_LAG_DEFAULT;
204
205 $this->loadMonitorConfig = $params['loadMonitor'] ?? [ 'class' => 'LoadMonitorNull' ];
206 $this->loadMonitorConfig += [ 'lagWarnThreshold' => $this->maxLag ];
207
208 $this->srvCache = $params['srvCache'] ?? new EmptyBagOStuff();
209 $this->wanCache = $params['wanCache'] ?? WANObjectCache::newEmpty();
210 $this->profiler = $params['profiler'] ?? null;
211 $this->trxProfiler = $params['trxProfiler'] ?? new TransactionProfiler();
212
213 $this->errorLogger = $params['errorLogger'] ?? function ( Exception $e ) {
214 trigger_error( get_class( $e ) . ': ' . $e->getMessage(), E_USER_WARNING );
215 };
216 $this->deprecationLogger = $params['deprecationLogger'] ?? function ( $msg ) {
217 trigger_error( $msg, E_USER_DEPRECATED );
218 };
219
220 foreach ( [ 'replLogger', 'connLogger', 'queryLogger', 'perfLogger' ] as $key ) {
221 $this->$key = $params[$key] ?? new NullLogger();
222 }
223
224 $this->hostname = $params['hostname'] ?? ( gethostname() ?: 'unknown' );
225 $this->cliMode = $params['cliMode'] ?? ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' );
226 $this->agent = $params['agent'] ?? '';
227
228 if ( isset( $params['chronologyCallback'] ) ) {
229 $this->chronologyCallback = $params['chronologyCallback'];
230 }
231
232 if ( isset( $params['roundStage'] ) ) {
233 if ( $params['roundStage'] === self::STAGE_POSTCOMMIT_CALLBACKS ) {
234 $this->trxRoundStage = self::ROUND_COMMIT_CALLBACKS;
235 } elseif ( $params['roundStage'] === self::STAGE_POSTROLLBACK_CALLBACKS ) {
236 $this->trxRoundStage = self::ROUND_ROLLBACK_CALLBACKS;
237 }
238 }
239
240 $group = $params['defaultGroup'] ?? self::GROUP_GENERIC;
241 $this->defaultGroup = isset( $this->groupLoads[$group] ) ? $group : self::GROUP_GENERIC;
242
243 $this->ownerId = $params['ownerId'] ?? null;
244 }
245
246 private static function newTrackedConnectionsArray() {
247 return [
248 // Connection were transaction rounds may be applied
249 self::KEY_LOCAL => [],
250 self::KEY_FOREIGN_INUSE => [],
251 self::KEY_FOREIGN_FREE => [],
252 // Auto-committing counterpart connections that ignore transaction rounds
253 self::KEY_LOCAL_NOROUND => [],
254 self::KEY_FOREIGN_INUSE_NOROUND => [],
255 self::KEY_FOREIGN_FREE_NOROUND => []
256 ];
257 }
258
259 public function getLocalDomainID() {
260 return $this->localDomain->getId();
261 }
262
263 public function resolveDomainID( $domain ) {
264 if ( $domain === $this->localDomainIdAlias || $domain === false ) {
265 // Local connection requested via some backwards-compatibility domain alias
266 return $this->getLocalDomainID();
267 }
268
269 return (string)$domain;
270 }
271
272 /**
273 * Resolve $groups into a list of query groups defining as having database servers
274 *
275 * @param string[]|string|bool $groups Query group(s) in preference order, [], or false
276 * @param int $i Specific server index or DB_MASTER/DB_REPLICA
277 * @return string[] Non-empty group list in preference order with the default group appended
278 */
279 private function resolveGroups( $groups, $i ) {
280 // If a specific replica server was specified, then $groups makes no sense
281 if ( $i > 0 && $groups !== [] && $groups !== false ) {
282 $list = implode( ', ', (array)$groups );
283 throw new LogicException( "Query group(s) ($list) given with server index (#$i)" );
284 }
285
286 if ( $groups === [] || $groups === false || $groups === $this->defaultGroup ) {
287 $resolvedGroups = [ $this->defaultGroup ]; // common case
288 } elseif ( is_string( $groups ) && isset( $this->groupLoads[$groups] ) ) {
289 $resolvedGroups = [ $groups, $this->defaultGroup ];
290 } elseif ( is_array( $groups ) ) {
291 $resolvedGroups = array_keys( array_flip( $groups ) + [ self::GROUP_GENERIC => 1 ] );
292 } else {
293 $resolvedGroups = [ $this->defaultGroup ];
294 }
295
296 return $resolvedGroups;
297 }
298
299 /**
300 * @param int $flags Bitfield of class CONN_* constants
301 * @param int $i Specific server index or DB_MASTER/DB_REPLICA
302 * @param string $domain Database domain
303 * @return int Sanitized bitfield
304 */
305 private function sanitizeConnectionFlags( $flags, $i, $domain ) {
306 // Whether an outside caller is explicitly requesting the master database server
307 if ( $i === self::DB_MASTER || $i === $this->getWriterIndex() ) {
308 $flags |= self::CONN_INTENT_WRITABLE;
309 }
310
311 if ( ( $flags & self::CONN_TRX_AUTOCOMMIT ) == self::CONN_TRX_AUTOCOMMIT ) {
312 // Callers use CONN_TRX_AUTOCOMMIT to bypass REPEATABLE-READ staleness without
313 // resorting to row locks (e.g. FOR UPDATE) or to make small out-of-band commits
314 // during larger transactions. This is useful for avoiding lock contention.
315
316 // Master DB server attributes (should match those of the replica DB servers)
317 $attributes = $this->getServerAttributes( $this->getWriterIndex() );
318 if ( $attributes[Database::ATTR_DB_LEVEL_LOCKING] ) {
319 // The RDBMS does not support concurrent writes (e.g. SQLite), so attempts
320 // to use separate connections would just cause self-deadlocks. Note that
321 // REPEATABLE-READ staleness is not an issue since DB-level locking means
322 // that transactions are Strict Serializable anyway.
323 $flags &= ~self::CONN_TRX_AUTOCOMMIT;
324 $type = $this->getServerType( $this->getWriterIndex() );
325 $this->connLogger->info( __METHOD__ . ": CONN_TRX_AUTOCOMMIT disallowed ($type)" );
326 } elseif ( isset( $this->tempTablesOnlyMode[$domain] ) ) {
327 // T202116: integration tests are active and queries should be all be using
328 // temporary clone tables (via prefix). Such tables are not visible accross
329 // different connections nor can there be REPEATABLE-READ snapshot staleness,
330 // so use the same connection for everything.
331 $flags &= ~self::CONN_TRX_AUTOCOMMIT;
332 }
333 }
334
335 return $flags;
336 }
337
338 /**
339 * @param IDatabase $conn
340 * @param int $flags
341 * @throws DBUnexpectedError
342 */
343 private function enforceConnectionFlags( IDatabase $conn, $flags ) {
344 if ( ( $flags & self::CONN_TRX_AUTOCOMMIT ) == self::CONN_TRX_AUTOCOMMIT ) {
345 if ( $conn->trxLevel() ) { // sanity
346 throw new DBUnexpectedError(
347 $conn,
348 'Handle requested with CONN_TRX_AUTOCOMMIT yet it has a transaction'
349 );
350 }
351
352 $conn->clearFlag( $conn::DBO_TRX ); // auto-commit mode
353 }
354 }
355
356 /**
357 * Get a LoadMonitor instance
358 *
359 * @return ILoadMonitor
360 */
361 private function getLoadMonitor() {
362 if ( !isset( $this->loadMonitor ) ) {
363 $compat = [
364 'LoadMonitor' => LoadMonitor::class,
365 'LoadMonitorNull' => LoadMonitorNull::class,
366 'LoadMonitorMySQL' => LoadMonitorMySQL::class,
367 ];
368
369 $class = $this->loadMonitorConfig['class'];
370 if ( isset( $compat[$class] ) ) {
371 $class = $compat[$class];
372 }
373
374 $this->loadMonitor = new $class(
375 $this, $this->srvCache, $this->wanCache, $this->loadMonitorConfig );
376 $this->loadMonitor->setLogger( $this->replLogger );
377 }
378
379 return $this->loadMonitor;
380 }
381
382 /**
383 * @param array $loads
384 * @param bool|string $domain Domain to get non-lagged for
385 * @param int $maxLag Restrict the maximum allowed lag to this many seconds
386 * @return bool|int|string
387 */
388 private function getRandomNonLagged( array $loads, $domain = false, $maxLag = INF ) {
389 $lags = $this->getLagTimes( $domain );
390
391 # Unset excessively lagged servers
392 foreach ( $lags as $i => $lag ) {
393 if ( $i !== $this->getWriterIndex() ) {
394 # How much lag this server nominally is allowed to have
395 $maxServerLag = $this->servers[$i]['max lag'] ?? $this->maxLag; // default
396 # Constrain that futher by $maxLag argument
397 $maxServerLag = min( $maxServerLag, $maxLag );
398
399 $host = $this->getServerName( $i );
400 if ( $lag === false && !is_infinite( $maxServerLag ) ) {
401 $this->replLogger->debug(
402 __METHOD__ .
403 ": server {host} is not replicating?", [ 'host' => $host ] );
404 unset( $loads[$i] );
405 } elseif ( $lag > $maxServerLag ) {
406 $this->replLogger->debug(
407 __METHOD__ .
408 ": server {host} has {lag} seconds of lag (>= {maxlag})",
409 [ 'host' => $host, 'lag' => $lag, 'maxlag' => $maxServerLag ]
410 );
411 unset( $loads[$i] );
412 }
413 }
414 }
415
416 # Find out if all the replica DBs with non-zero load are lagged
417 $sum = 0;
418 foreach ( $loads as $load ) {
419 $sum += $load;
420 }
421 if ( $sum == 0 ) {
422 # No appropriate DB servers except maybe the master and some replica DBs with zero load
423 # Do NOT use the master
424 # Instead, this function will return false, triggering read-only mode,
425 # and a lagged replica DB will be used instead.
426 return false;
427 }
428
429 if ( count( $loads ) == 0 ) {
430 return false;
431 }
432
433 # Return a random representative of the remainder
434 return ArrayUtils::pickRandom( $loads );
435 }
436
437 /**
438 * Get the server index to use for a specified server index and query group list
439 *
440 * @param int $i Specific server index or DB_MASTER/DB_REPLICA
441 * @param string[] $groups Non-empty query group list in preference order
442 * @param string|bool $domain
443 * @return int A specific server index (replica DBs are checked for connectivity)
444 */
445 private function getConnectionIndex( $i, array $groups, $domain ) {
446 if ( $i === self::DB_MASTER ) {
447 $i = $this->getWriterIndex();
448 } elseif ( $i === self::DB_REPLICA ) {
449 foreach ( $groups as $group ) {
450 $groupIndex = $this->getReaderIndex( $group, $domain );
451 if ( $groupIndex !== false ) {
452 $i = $groupIndex; // group connection succeeded
453 break;
454 }
455 }
456 } elseif ( !isset( $this->servers[$i] ) ) {
457 throw new UnexpectedValueException( "Invalid server index index #$i" );
458 }
459
460 if ( $i === self::DB_REPLICA ) {
461 $this->lastError = 'Unknown error'; // set here in case of worse failure
462 $this->lastError = 'No working replica DB server: ' . $this->lastError;
463 $this->reportConnectionError();
464 return null; // unreachable due to exception
465 }
466
467 return $i;
468 }
469
470 public function getReaderIndex( $group = false, $domain = false ) {
471 if ( $this->getServerCount() == 1 ) {
472 // Skip the load balancing if there's only one server
473 return $this->getWriterIndex();
474 }
475
476 $group = is_string( $group ) ? $group : self::GROUP_GENERIC;
477
478 $index = $this->getExistingReaderIndex( $group );
479 if ( $index >= 0 ) {
480 // A reader index was already selected and "waitForPos" was handled
481 return $index;
482 }
483
484 // Use the server weight array for this load group
485 if ( isset( $this->groupLoads[$group] ) ) {
486 $loads = $this->groupLoads[$group];
487 } else {
488 $this->connLogger->info( __METHOD__ . ": no loads for group $group" );
489
490 return false;
491 }
492
493 // Scale the configured load ratios according to each server's load and state
494 $this->getLoadMonitor()->scaleLoads( $loads, $domain );
495
496 // Pick a server to use, accounting for weights, load, lag, and "waitForPos"
497 $this->lazyLoadReplicationPositions(); // optimizes server candidate selection
498 list( $i, $laggedReplicaMode ) = $this->pickReaderIndex( $loads, $domain );
499 if ( $i === false ) {
500 // DB connection unsuccessful
501 return false;
502 }
503
504 // If data seen by queries is expected to reflect the transactions committed as of
505 // or after a given replication position then wait for the DB to apply those changes
506 if ( $this->waitForPos && $i !== $this->getWriterIndex() && !$this->doWait( $i ) ) {
507 // Data will be outdated compared to what was expected
508 $laggedReplicaMode = true;
509 }
510
511 // Cache the reader index for future DB_REPLICA handles
512 $this->setExistingReaderIndex( $group, $i );
513 // Record whether the generic reader index is in "lagged replica DB" mode
514 if ( $group === self::GROUP_GENERIC && $laggedReplicaMode ) {
515 $this->laggedReplicaMode = true;
516 }
517
518 $serverName = $this->getServerName( $i );
519 $this->connLogger->debug( __METHOD__ . ": using server $serverName for group '$group'" );
520
521 return $i;
522 }
523
524 /**
525 * Get the server index chosen by the load balancer for use with the given query group
526 *
527 * @param string $group Query group; use false for the generic group
528 * @return int Server index or -1 if none was chosen
529 */
530 protected function getExistingReaderIndex( $group ) {
531 return $this->readIndexByGroup[$group] ?? -1;
532 }
533
534 /**
535 * Set the server index chosen by the load balancer for use with the given query group
536 *
537 * @param string $group Query group; use false for the generic group
538 * @param int $index The index of a specific server
539 */
540 private function setExistingReaderIndex( $group, $index ) {
541 if ( $index < 0 ) {
542 throw new UnexpectedValueException( "Cannot set a negative read server index" );
543 }
544 $this->readIndexByGroup[$group] = $index;
545 }
546
547 /**
548 * @param array $loads List of server weights
549 * @param string|bool $domain
550 * @return array (reader index, lagged replica mode) or (false, false) on failure
551 */
552 private function pickReaderIndex( array $loads, $domain = false ) {
553 if ( $loads === [] ) {
554 throw new InvalidArgumentException( "Server configuration array is empty" );
555 }
556
557 /** @var int|bool $i Index of selected server */
558 $i = false;
559 /** @var bool $laggedReplicaMode Whether server is considered lagged */
560 $laggedReplicaMode = false;
561
562 // Quickly look through the available servers for a server that meets criteria...
563 $currentLoads = $loads;
564 while ( count( $currentLoads ) ) {
565 if ( $this->allowLagged || $laggedReplicaMode ) {
566 $i = ArrayUtils::pickRandom( $currentLoads );
567 } else {
568 $i = false;
569 if ( $this->waitForPos && $this->waitForPos->asOfTime() ) {
570 $this->replLogger->debug( __METHOD__ . ": replication positions detected" );
571 // "chronologyCallback" sets "waitForPos" for session consistency.
572 // This triggers doWait() after connect, so it's especially good to
573 // avoid lagged servers so as to avoid excessive delay in that method.
574 $ago = microtime( true ) - $this->waitForPos->asOfTime();
575 // Aim for <= 1 second of waiting (being too picky can backfire)
576 $i = $this->getRandomNonLagged( $currentLoads, $domain, $ago + 1 );
577 }
578 if ( $i === false ) {
579 // Any server with less lag than it's 'max lag' param is preferable
580 $i = $this->getRandomNonLagged( $currentLoads, $domain );
581 }
582 if ( $i === false && count( $currentLoads ) ) {
583 // All replica DBs lagged. Switch to read-only mode
584 $this->replLogger->error(
585 __METHOD__ . ": all replica DBs lagged. Switch to read-only mode" );
586 $i = ArrayUtils::pickRandom( $currentLoads );
587 $laggedReplicaMode = true;
588 }
589 }
590
591 if ( $i === false ) {
592 // pickRandom() returned false.
593 // This is permanent and means the configuration or the load monitor
594 // wants us to return false.
595 $this->connLogger->debug( __METHOD__ . ": pickRandom() returned false" );
596
597 return [ false, false ];
598 }
599
600 $serverName = $this->getServerName( $i );
601 $this->connLogger->debug( __METHOD__ . ": Using reader #$i: $serverName..." );
602
603 // Get a connection to this server without triggering other server connections
604 $conn = $this->getServerConnection( $i, $domain, self::CONN_SILENCE_ERRORS );
605 if ( !$conn ) {
606 $this->connLogger->warning( __METHOD__ . ": Failed connecting to $i/$domain" );
607 unset( $currentLoads[$i] ); // avoid this server next iteration
608 $i = false;
609 continue;
610 }
611
612 // Decrement reference counter, we are finished with this connection.
613 // It will be incremented for the caller later.
614 if ( $domain !== false ) {
615 $this->reuseConnection( $conn );
616 }
617
618 // Return this server
619 break;
620 }
621
622 // If all servers were down, quit now
623 if ( $currentLoads === [] ) {
624 $this->connLogger->error( __METHOD__ . ": all servers down" );
625 }
626
627 return [ $i, $laggedReplicaMode ];
628 }
629
630 public function waitFor( $pos ) {
631 $oldPos = $this->waitForPos;
632 try {
633 $this->waitForPos = $pos;
634 // If a generic reader connection was already established, then wait now
635 $i = $this->getExistingReaderIndex( self::GROUP_GENERIC );
636 if ( $i > 0 && !$this->doWait( $i ) ) {
637 $this->laggedReplicaMode = true;
638 }
639 // Otherwise, wait until a connection is established in getReaderIndex()
640 } finally {
641 // Restore the older position if it was higher since this is used for lag-protection
642 $this->setWaitForPositionIfHigher( $oldPos );
643 }
644 }
645
646 public function waitForOne( $pos, $timeout = null ) {
647 $oldPos = $this->waitForPos;
648 try {
649 $this->waitForPos = $pos;
650
651 $i = $this->getExistingReaderIndex( self::GROUP_GENERIC );
652 if ( $i <= 0 ) {
653 // Pick a generic replica DB if there isn't one yet
654 $readLoads = $this->groupLoads[self::GROUP_GENERIC];
655 unset( $readLoads[$this->getWriterIndex()] ); // replica DBs only
656 $readLoads = array_filter( $readLoads ); // with non-zero load
657 $i = ArrayUtils::pickRandom( $readLoads );
658 }
659
660 if ( $i > 0 ) {
661 $ok = $this->doWait( $i, true, $timeout );
662 } else {
663 $ok = true; // no applicable loads
664 }
665 } finally {
666 // Restore the old position; this is used for throttling, not lag-protection
667 $this->waitForPos = $oldPos;
668 }
669
670 return $ok;
671 }
672
673 public function waitForAll( $pos, $timeout = null ) {
674 $timeout = $timeout ?: $this->waitTimeout;
675
676 $oldPos = $this->waitForPos;
677 try {
678 $this->waitForPos = $pos;
679 $serverCount = $this->getServerCount();
680
681 $ok = true;
682 for ( $i = 1; $i < $serverCount; $i++ ) {
683 if ( $this->serverHasLoadInAnyGroup( $i ) ) {
684 $start = microtime( true );
685 $ok = $this->doWait( $i, true, $timeout ) && $ok;
686 $timeout -= intval( microtime( true ) - $start );
687 if ( $timeout <= 0 ) {
688 break; // timeout reached
689 }
690 }
691 }
692 } finally {
693 // Restore the old position; this is used for throttling, not lag-protection
694 $this->waitForPos = $oldPos;
695 }
696
697 return $ok;
698 }
699
700 /**
701 * @param int $i Specific server index
702 * @return bool
703 */
704 private function serverHasLoadInAnyGroup( $i ) {
705 foreach ( $this->groupLoads as $loadsByIndex ) {
706 if ( ( $loadsByIndex[$i] ?? 0 ) > 0 ) {
707 return true;
708 }
709 }
710
711 return false;
712 }
713
714 /**
715 * @param DBMasterPos|bool $pos
716 */
717 private function setWaitForPositionIfHigher( $pos ) {
718 if ( !$pos ) {
719 return;
720 }
721
722 if ( !$this->waitForPos || $pos->hasReached( $this->waitForPos ) ) {
723 $this->waitForPos = $pos;
724 }
725 }
726
727 public function getAnyOpenConnection( $i, $flags = 0 ) {
728 $i = ( $i === self::DB_MASTER ) ? $this->getWriterIndex() : $i;
729 // Connection handles required to be in auto-commit mode use a separate connection
730 // pool since the main pool is effected by implicit and explicit transaction rounds
731 $autocommit = ( ( $flags & self::CONN_TRX_AUTOCOMMIT ) == self::CONN_TRX_AUTOCOMMIT );
732
733 $conn = false;
734 foreach ( $this->conns as $connsByServer ) {
735 // Get the connection array server indexes to inspect
736 if ( $i === self::DB_REPLICA ) {
737 $indexes = array_keys( $connsByServer );
738 } else {
739 $indexes = isset( $connsByServer[$i] ) ? [ $i ] : [];
740 }
741
742 foreach ( $indexes as $index ) {
743 $conn = $this->pickAnyOpenConnection( $connsByServer[$index], $autocommit );
744 if ( $conn ) {
745 break;
746 }
747 }
748 }
749
750 if ( $conn ) {
751 $this->enforceConnectionFlags( $conn, $flags );
752 }
753
754 return $conn;
755 }
756
757 /**
758 * @param IDatabase[] $candidateConns
759 * @param bool $autocommit Whether to only look for auto-commit connections
760 * @return IDatabase|false An appropriate open connection or false if none found
761 */
762 private function pickAnyOpenConnection( $candidateConns, $autocommit ) {
763 $conn = false;
764
765 foreach ( $candidateConns as $candidateConn ) {
766 if ( !$candidateConn->isOpen() ) {
767 continue; // some sort of error occured?
768 } elseif (
769 $autocommit &&
770 (
771 // Connection is transaction round aware
772 !$candidateConn->getLBInfo( 'autoCommitOnly' ) ||
773 // Some sort of error left a transaction open?
774 $candidateConn->trxLevel()
775 )
776 ) {
777 continue; // some sort of error left a transaction open?
778 }
779
780 $conn = $candidateConn;
781 }
782
783 return $conn;
784 }
785
786 /**
787 * Wait for a given replica DB to catch up to the master pos stored in "waitForPos"
788 * @param int $index Specific server index
789 * @param bool $open Check the server even if a new connection has to be made
790 * @param int|null $timeout Max seconds to wait; default is "waitTimeout"
791 * @return bool
792 */
793 protected function doWait( $index, $open = false, $timeout = null ) {
794 $timeout = max( 1, intval( $timeout ?: $this->waitTimeout ) );
795
796 // Check if we already know that the DB has reached this point
797 $server = $this->getServerName( $index );
798 $key = $this->srvCache->makeGlobalKey( __CLASS__, 'last-known-pos', $server, 'v1' );
799 /** @var DBMasterPos $knownReachedPos */
800 $knownReachedPos = $this->srvCache->get( $key );
801 if (
802 $knownReachedPos instanceof DBMasterPos &&
803 $knownReachedPos->hasReached( $this->waitForPos )
804 ) {
805 $this->replLogger->debug(
806 __METHOD__ .
807 ': replica DB {dbserver} known to be caught up (pos >= $knownReachedPos).',
808 [ 'dbserver' => $server ]
809 );
810 return true;
811 }
812
813 // Find a connection to wait on, creating one if needed and allowed
814 $close = false; // close the connection afterwards
815 $flags = self::CONN_SILENCE_ERRORS;
816 $conn = $this->getAnyOpenConnection( $index, $flags );
817 if ( !$conn ) {
818 if ( !$open ) {
819 $this->replLogger->debug(
820 __METHOD__ . ': no connection open for {dbserver}',
821 [ 'dbserver' => $server ]
822 );
823
824 return false;
825 }
826 // Get a connection to this server without triggering other server connections
827 $conn = $this->getServerConnection( $index, self::DOMAIN_ANY, $flags );
828 if ( !$conn ) {
829 $this->replLogger->warning(
830 __METHOD__ . ': failed to connect to {dbserver}',
831 [ 'dbserver' => $server ]
832 );
833
834 return false;
835 }
836 // Avoid connection spam in waitForAll() when connections
837 // are made just for the sake of doing this lag check.
838 $close = true;
839 }
840
841 $this->replLogger->info(
842 __METHOD__ .
843 ': waiting for replica DB {dbserver} to catch up...',
844 [ 'dbserver' => $server ]
845 );
846
847 $result = $conn->masterPosWait( $this->waitForPos, $timeout );
848
849 if ( $result === null ) {
850 $this->replLogger->warning(
851 __METHOD__ . ': Errored out waiting on {host} pos {pos}',
852 [
853 'host' => $server,
854 'pos' => $this->waitForPos,
855 'trace' => ( new RuntimeException() )->getTraceAsString()
856 ]
857 );
858 $ok = false;
859 } elseif ( $result == -1 ) {
860 $this->replLogger->warning(
861 __METHOD__ . ': Timed out waiting on {host} pos {pos}',
862 [
863 'host' => $server,
864 'pos' => $this->waitForPos,
865 'trace' => ( new RuntimeException() )->getTraceAsString()
866 ]
867 );
868 $ok = false;
869 } else {
870 $this->replLogger->debug( __METHOD__ . ": done waiting" );
871 $ok = true;
872 // Remember that the DB reached this point
873 $this->srvCache->set( $key, $this->waitForPos, BagOStuff::TTL_DAY );
874 }
875
876 if ( $close ) {
877 $this->closeConnection( $conn );
878 }
879
880 return $ok;
881 }
882
883 public function getConnection( $i, $groups = [], $domain = false, $flags = 0 ) {
884 $domain = $this->resolveDomainID( $domain );
885 $groups = $this->resolveGroups( $groups, $i );
886 $flags = $this->sanitizeConnectionFlags( $flags, $i, $domain );
887 // If given DB_MASTER/DB_REPLICA, resolve it to a specific server index. Resolving
888 // DB_REPLICA might trigger getServerConnection() calls due to the getReaderIndex()
889 // connectivity checks or LoadMonitor::scaleLoads() server state cache regeneration.
890 // The use of getServerConnection() instead of getConnection() avoids infinite loops.
891 $serverIndex = $this->getConnectionIndex( $i, $groups, $domain );
892 // Get an open connection to that server (might trigger a new connection)
893 $conn = $this->getServerConnection( $serverIndex, $domain, $flags );
894 // Set master DB handles as read-only if there is high replication lag
895 if (
896 $serverIndex === $this->getWriterIndex() &&
897 $this->getLaggedReplicaMode( $domain ) &&
898 !is_string( $conn->getLBInfo( 'readOnlyReason' ) )
899 ) {
900 $reason = ( $this->getExistingReaderIndex( self::GROUP_GENERIC ) >= 0 )
901 ? 'The database is read-only until replication lag decreases.'
902 : 'The database is read-only until replica database servers becomes reachable.';
903 $conn->setLBInfo( 'readOnlyReason', $reason );
904 }
905
906 return $conn;
907 }
908
909 /**
910 * @param int $i Specific server index
911 * @param string $domain Resolved DB domain
912 * @param int $flags Bitfield of class CONN_* constants
913 * @return IDatabase|bool
914 * @throws InvalidArgumentException When the server index is invalid
915 */
916 public function getServerConnection( $i, $domain, $flags = 0 ) {
917 // Number of connections made before getting the server index and handle
918 $priorConnectionsMade = $this->connectionCounter;
919 // Get an open connection to this server (might trigger a new connection)
920 $conn = $this->localDomain->equals( $domain )
921 ? $this->getLocalConnection( $i, $flags )
922 : $this->getForeignConnection( $i, $domain, $flags );
923 // Throw an error or otherwise bail out if the connection attempt failed
924 if ( !( $conn instanceof IDatabase ) ) {
925 if ( ( $flags & self::CONN_SILENCE_ERRORS ) != self::CONN_SILENCE_ERRORS ) {
926 $this->reportConnectionError();
927 }
928
929 return false;
930 }
931
932 // Profile any new connections caused by this method
933 if ( $this->connectionCounter > $priorConnectionsMade ) {
934 $this->trxProfiler->recordConnection(
935 $conn->getServer(),
936 $conn->getDBname(),
937 ( ( $flags & self::CONN_INTENT_WRITABLE ) == self::CONN_INTENT_WRITABLE )
938 );
939 }
940
941 if ( !$conn->isOpen() ) {
942 $this->errorConnection = $conn;
943 // Connection was made but later unrecoverably lost for some reason.
944 // Do not return a handle that will just throw exceptions on use, but
945 // let the calling code, e.g. getReaderIndex(), try another server.
946 return false;
947 }
948
949 // Make sure that flags like CONN_TRX_AUTOCOMMIT are respected by this handle
950 $this->enforceConnectionFlags( $conn, $flags );
951 // Set master DB handles as read-only if the load balancer is configured as read-only
952 // or the master database server is running in server-side read-only mode. Note that
953 // replica DB handles are always read-only via Database::assertIsWritableMaster().
954 // Read-only mode due to replication lag is *avoided* here to avoid recursion.
955 if ( $i === $this->getWriterIndex() ) {
956 if ( $this->readOnlyReason !== false ) {
957 $readOnlyReason = $this->readOnlyReason;
958 } elseif ( $this->isMasterConnectionReadOnly( $conn, $flags ) ) {
959 $readOnlyReason = 'The master database server is running in read-only mode.';
960 } else {
961 $readOnlyReason = false;
962 }
963 $conn->setLBInfo( 'readOnlyReason', $readOnlyReason );
964 }
965
966 return $conn;
967 }
968
969 public function reuseConnection( IDatabase $conn ) {
970 $serverIndex = $conn->getLBInfo( 'serverIndex' );
971 $refCount = $conn->getLBInfo( 'foreignPoolRefCount' );
972 if ( $serverIndex === null || $refCount === null ) {
973 /**
974 * This can happen in code like:
975 * foreach ( $dbs as $db ) {
976 * $conn = $lb->getConnection( $lb::DB_REPLICA, [], $db );
977 * ...
978 * $lb->reuseConnection( $conn );
979 * }
980 * When a connection to the local DB is opened in this way, reuseConnection()
981 * should be ignored
982 */
983 return;
984 } elseif ( $conn instanceof DBConnRef ) {
985 // DBConnRef already handles calling reuseConnection() and only passes the live
986 // Database instance to this method. Any caller passing in a DBConnRef is broken.
987 $this->connLogger->error(
988 __METHOD__ . ": got DBConnRef instance.\n" .
989 ( new LogicException() )->getTraceAsString() );
990
991 return;
992 }
993
994 if ( $this->disabled ) {
995 return; // DBConnRef handle probably survived longer than the LoadBalancer
996 }
997
998 if ( $conn->getLBInfo( 'autoCommitOnly' ) ) {
999 $connFreeKey = self::KEY_FOREIGN_FREE_NOROUND;
1000 $connInUseKey = self::KEY_FOREIGN_INUSE_NOROUND;
1001 } else {
1002 $connFreeKey = self::KEY_FOREIGN_FREE;
1003 $connInUseKey = self::KEY_FOREIGN_INUSE;
1004 }
1005
1006 $domain = $conn->getDomainID();
1007 if ( !isset( $this->conns[$connInUseKey][$serverIndex][$domain] ) ) {
1008 throw new InvalidArgumentException(
1009 "Connection $serverIndex/$domain not found; it may have already been freed" );
1010 } elseif ( $this->conns[$connInUseKey][$serverIndex][$domain] !== $conn ) {
1011 throw new InvalidArgumentException(
1012 "Connection $serverIndex/$domain mismatched; it may have already been freed" );
1013 }
1014
1015 $conn->setLBInfo( 'foreignPoolRefCount', --$refCount );
1016 if ( $refCount <= 0 ) {
1017 $this->conns[$connFreeKey][$serverIndex][$domain] = $conn;
1018 unset( $this->conns[$connInUseKey][$serverIndex][$domain] );
1019 if ( !$this->conns[$connInUseKey][$serverIndex] ) {
1020 unset( $this->conns[$connInUseKey][$serverIndex] ); // clean up
1021 }
1022 $this->connLogger->debug( __METHOD__ . ": freed connection $serverIndex/$domain" );
1023 } else {
1024 $this->connLogger->debug( __METHOD__ .
1025 ": reference count for $serverIndex/$domain reduced to $refCount" );
1026 }
1027 }
1028
1029 public function getConnectionRef( $i, $groups = [], $domain = false, $flags = 0 ) {
1030 $domain = $this->resolveDomainID( $domain );
1031 $role = $this->getRoleFromIndex( $i );
1032
1033 return new DBConnRef( $this, $this->getConnection( $i, $groups, $domain, $flags ), $role );
1034 }
1035
1036 public function getLazyConnectionRef( $i, $groups = [], $domain = false, $flags = 0 ) {
1037 $domain = $this->resolveDomainID( $domain );
1038 $role = $this->getRoleFromIndex( $i );
1039
1040 return new DBConnRef( $this, [ $i, $groups, $domain, $flags ], $role );
1041 }
1042
1043 public function getMaintenanceConnectionRef( $i, $groups = [], $domain = false, $flags = 0 ) {
1044 $domain = $this->resolveDomainID( $domain );
1045 $role = $this->getRoleFromIndex( $i );
1046
1047 return new MaintainableDBConnRef(
1048 $this, $this->getConnection( $i, $groups, $domain, $flags ), $role );
1049 }
1050
1051 /**
1052 * @param int $i Server index or DB_MASTER/DB_REPLICA
1053 * @return int One of DB_MASTER/DB_REPLICA
1054 */
1055 private function getRoleFromIndex( $i ) {
1056 return ( $i === self::DB_MASTER || $i === $this->getWriterIndex() )
1057 ? self::DB_MASTER
1058 : self::DB_REPLICA;
1059 }
1060
1061 /**
1062 * @param int $i
1063 * @param string|bool $domain
1064 * @param int $flags
1065 * @return Database|bool Live database handle or false on failure
1066 * @deprecated Since 1.34 Use getConnection() instead
1067 */
1068 public function openConnection( $i, $domain = false, $flags = 0 ) {
1069 return $this->getConnection( $i, [], $domain, $flags | self::CONN_SILENCE_ERRORS );
1070 }
1071
1072 /**
1073 * Open a connection to a local DB, or return one if it is already open.
1074 *
1075 * On error, returns false, and the connection which caused the
1076 * error will be available via $this->errorConnection.
1077 *
1078 * @note If disable() was called on this LoadBalancer, this method will throw a DBAccessError.
1079 *
1080 * @param int $i Server index
1081 * @param int $flags Class CONN_* constant bitfield
1082 * @return Database
1083 * @throws InvalidArgumentException When the server index is invalid
1084 * @throws UnexpectedValueException When the DB domain of the connection is corrupted
1085 */
1086 private function getLocalConnection( $i, $flags = 0 ) {
1087 // Connection handles required to be in auto-commit mode use a separate connection
1088 // pool since the main pool is effected by implicit and explicit transaction rounds
1089 $autoCommit = ( ( $flags & self::CONN_TRX_AUTOCOMMIT ) == self::CONN_TRX_AUTOCOMMIT );
1090
1091 $connKey = $autoCommit ? self::KEY_LOCAL_NOROUND : self::KEY_LOCAL;
1092 if ( isset( $this->conns[$connKey][$i][0] ) ) {
1093 $conn = $this->conns[$connKey][$i][0];
1094 } else {
1095 // Open a new connection
1096 $server = $this->getServerInfoStrict( $i );
1097 $server['serverIndex'] = $i;
1098 $server['autoCommitOnly'] = $autoCommit;
1099 $conn = $this->reallyOpenConnection( $server, $this->localDomain );
1100 $host = $this->getServerName( $i );
1101 if ( $conn->isOpen() ) {
1102 $this->connLogger->debug(
1103 __METHOD__ . ": connected to database $i at '$host'." );
1104 $this->conns[$connKey][$i][0] = $conn;
1105 } else {
1106 $this->connLogger->warning(
1107 __METHOD__ . ": failed to connect to database $i at '$host'." );
1108 $this->errorConnection = $conn;
1109 $conn = false;
1110 }
1111 }
1112
1113 // Final sanity check to make sure the right domain is selected
1114 if (
1115 $conn instanceof IDatabase &&
1116 !$this->localDomain->isCompatible( $conn->getDomainID() )
1117 ) {
1118 throw new UnexpectedValueException(
1119 "Got connection to '{$conn->getDomainID()}', " .
1120 "but expected local domain ('{$this->localDomain}')" );
1121 }
1122
1123 return $conn;
1124 }
1125
1126 /**
1127 * Open a connection to a foreign DB, or return one if it is already open.
1128 *
1129 * Increments a reference count on the returned connection which locks the
1130 * connection to the requested domain. This reference count can be
1131 * decremented by calling reuseConnection().
1132 *
1133 * If a connection is open to the appropriate server already, but with the wrong
1134 * database, it will be switched to the right database and returned, as long as
1135 * it has been freed first with reuseConnection().
1136 *
1137 * On error, returns false, and the connection which caused the
1138 * error will be available via $this->errorConnection.
1139 *
1140 * @note If disable() was called on this LoadBalancer, this method will throw a DBAccessError.
1141 *
1142 * @param int $i Server index
1143 * @param string $domain Domain ID to open
1144 * @param int $flags Class CONN_* constant bitfield
1145 * @return Database|bool Returns false on connection error
1146 * @throws DBError When database selection fails
1147 * @throws InvalidArgumentException When the server index is invalid
1148 * @throws UnexpectedValueException When the DB domain of the connection is corrupted
1149 */
1150 private function getForeignConnection( $i, $domain, $flags = 0 ) {
1151 $domainInstance = DatabaseDomain::newFromId( $domain );
1152 // Connection handles required to be in auto-commit mode use a separate connection
1153 // pool since the main pool is effected by implicit and explicit transaction rounds
1154 $autoCommit = ( ( $flags & self::CONN_TRX_AUTOCOMMIT ) == self::CONN_TRX_AUTOCOMMIT );
1155
1156 if ( $autoCommit ) {
1157 $connFreeKey = self::KEY_FOREIGN_FREE_NOROUND;
1158 $connInUseKey = self::KEY_FOREIGN_INUSE_NOROUND;
1159 } else {
1160 $connFreeKey = self::KEY_FOREIGN_FREE;
1161 $connInUseKey = self::KEY_FOREIGN_INUSE;
1162 }
1163
1164 /** @var Database $conn */
1165 $conn = null;
1166
1167 if ( isset( $this->conns[$connInUseKey][$i][$domain] ) ) {
1168 // Reuse an in-use connection for the same domain
1169 $conn = $this->conns[$connInUseKey][$i][$domain];
1170 $this->connLogger->debug( __METHOD__ . ": reusing connection $i/$domain" );
1171 } elseif ( isset( $this->conns[$connFreeKey][$i][$domain] ) ) {
1172 // Reuse a free connection for the same domain
1173 $conn = $this->conns[$connFreeKey][$i][$domain];
1174 unset( $this->conns[$connFreeKey][$i][$domain] );
1175 $this->conns[$connInUseKey][$i][$domain] = $conn;
1176 $this->connLogger->debug( __METHOD__ . ": reusing free connection $i/$domain" );
1177 } elseif ( !empty( $this->conns[$connFreeKey][$i] ) ) {
1178 // Reuse a free connection from another domain if possible
1179 foreach ( $this->conns[$connFreeKey][$i] as $oldDomain => $conn ) {
1180 if ( $domainInstance->getDatabase() !== null ) {
1181 // Check if changing the database will require a new connection.
1182 // In that case, leave the connection handle alone and keep looking.
1183 // This prevents connections from being closed mid-transaction and can
1184 // also avoid overhead if the same database will later be requested.
1185 if (
1186 $conn->databasesAreIndependent() &&
1187 $conn->getDBname() !== $domainInstance->getDatabase()
1188 ) {
1189 continue;
1190 }
1191 // Select the new database, schema, and prefix
1192 $conn->selectDomain( $domainInstance );
1193 } else {
1194 // Stay on the current database, but update the schema/prefix
1195 $conn->dbSchema( $domainInstance->getSchema() );
1196 $conn->tablePrefix( $domainInstance->getTablePrefix() );
1197 }
1198 unset( $this->conns[$connFreeKey][$i][$oldDomain] );
1199 // Note that if $domain is an empty string, getDomainID() might not match it
1200 $this->conns[$connInUseKey][$i][$conn->getDomainID()] = $conn;
1201 $this->connLogger->debug( __METHOD__ .
1202 ": reusing free connection from $oldDomain for $domain" );
1203 break;
1204 }
1205 }
1206
1207 if ( !$conn ) {
1208 // Open a new connection
1209 $server = $this->getServerInfoStrict( $i );
1210 $server['serverIndex'] = $i;
1211 $server['foreignPoolRefCount'] = 0;
1212 $server['foreign'] = true;
1213 $server['autoCommitOnly'] = $autoCommit;
1214 $conn = $this->reallyOpenConnection( $server, $domainInstance );
1215 if ( !$conn->isOpen() ) {
1216 $this->connLogger->warning( __METHOD__ . ": connection error for $i/$domain" );
1217 $this->errorConnection = $conn;
1218 $conn = false;
1219 } else {
1220 // Note that if $domain is an empty string, getDomainID() might not match it
1221 $this->conns[$connInUseKey][$i][$conn->getDomainID()] = $conn;
1222 $this->connLogger->debug( __METHOD__ . ": opened new connection for $i/$domain" );
1223 }
1224 }
1225
1226 if ( $conn instanceof IDatabase ) {
1227 // Final sanity check to make sure the right domain is selected
1228 if ( !$domainInstance->isCompatible( $conn->getDomainID() ) ) {
1229 throw new UnexpectedValueException(
1230 "Got connection to '{$conn->getDomainID()}', but expected '$domain'" );
1231 }
1232 // Increment reference count
1233 $refCount = $conn->getLBInfo( 'foreignPoolRefCount' );
1234 $conn->setLBInfo( 'foreignPoolRefCount', $refCount + 1 );
1235 }
1236
1237 return $conn;
1238 }
1239
1240 public function getServerAttributes( $i ) {
1241 return Database::attributesFromType(
1242 $this->getServerType( $i ),
1243 $this->servers[$i]['driver'] ?? null
1244 );
1245 }
1246
1247 /**
1248 * Test if the specified index represents an open connection
1249 *
1250 * @param int $index Server index
1251 * @return bool
1252 */
1253 private function isOpen( $index ) {
1254 return (bool)$this->getAnyOpenConnection( $index );
1255 }
1256
1257 /**
1258 * Open a new network connection to a server (uncached)
1259 *
1260 * Returns a Database object whether or not the connection was successful.
1261 *
1262 * @param array $server
1263 * @param DatabaseDomain $domain Domain the connection is for, possibly unspecified
1264 * @return Database
1265 * @throws DBAccessError
1266 * @throws InvalidArgumentException
1267 */
1268 protected function reallyOpenConnection( array $server, DatabaseDomain $domain ) {
1269 if ( $this->disabled ) {
1270 throw new DBAccessError();
1271 }
1272
1273 if ( $domain->getDatabase() === null ) {
1274 // The database domain does not specify a DB name and some database systems require a
1275 // valid DB specified on connection. The $server configuration array contains a default
1276 // DB name to use for connections in such cases.
1277 if ( $server['type'] === 'mysql' ) {
1278 // For MySQL, DATABASE and SCHEMA are synonyms, connections need not specify a DB,
1279 // and the DB name in $server might not exist due to legacy reasons (the default
1280 // domain used to ignore the local LB domain, even when mismatched).
1281 $server['dbname'] = null;
1282 }
1283 } else {
1284 $server['dbname'] = $domain->getDatabase();
1285 }
1286
1287 if ( $domain->getSchema() !== null ) {
1288 $server['schema'] = $domain->getSchema();
1289 }
1290
1291 // It is always possible to connect with any prefix, even the empty string
1292 $server['tablePrefix'] = $domain->getTablePrefix();
1293
1294 // Let the handle know what the cluster master is (e.g. "db1052")
1295 $masterName = $this->getServerName( $this->getWriterIndex() );
1296 $server['clusterMasterHost'] = $masterName;
1297
1298 $server['srvCache'] = $this->srvCache;
1299 // Set loggers and profilers
1300 $server['connLogger'] = $this->connLogger;
1301 $server['queryLogger'] = $this->queryLogger;
1302 $server['errorLogger'] = $this->errorLogger;
1303 $server['deprecationLogger'] = $this->deprecationLogger;
1304 $server['profiler'] = $this->profiler;
1305 $server['trxProfiler'] = $this->trxProfiler;
1306 // Use the same agent and PHP mode for all DB handles
1307 $server['cliMode'] = $this->cliMode;
1308 $server['agent'] = $this->agent;
1309 // Use DBO_DEFAULT flags by default for LoadBalancer managed databases. Assume that the
1310 // application calls LoadBalancer::commitMasterChanges() before the PHP script completes.
1311 $server['flags'] = $server['flags'] ?? IDatabase::DBO_DEFAULT;
1312
1313 // Create a live connection object
1314 try {
1315 $db = Database::factory( $server['type'], $server );
1316 // Log when many connection are made on requests
1317 ++$this->connectionCounter;
1318 $currentConnCount = $this->getCurrentConnectionCount();
1319 if ( $currentConnCount >= self::CONN_HELD_WARN_THRESHOLD ) {
1320 $this->perfLogger->warning(
1321 __METHOD__ . ": {connections}+ connections made (master={masterdb})",
1322 [ 'connections' => $currentConnCount, 'masterdb' => $masterName ]
1323 );
1324 }
1325 } catch ( DBConnectionError $e ) {
1326 // FIXME: This is probably the ugliest thing I have ever done to
1327 // PHP. I'm half-expecting it to segfault, just out of disgust. -- TS
1328 $db = $e->db;
1329 }
1330
1331 $db->setLBInfo( $server );
1332 $db->setLazyMasterHandle(
1333 $this->getLazyConnectionRef( self::DB_MASTER, [], $db->getDomainID() )
1334 );
1335 $db->setTableAliases( $this->tableAliases );
1336 $db->setIndexAliases( $this->indexAliases );
1337
1338 if ( $server['serverIndex'] === $this->getWriterIndex() ) {
1339 if ( $this->trxRoundId !== false ) {
1340 $this->applyTransactionRoundFlags( $db );
1341 }
1342 foreach ( $this->trxRecurringCallbacks as $name => $callback ) {
1343 $db->setTransactionListener( $name, $callback );
1344 }
1345 }
1346
1347 $this->lazyLoadReplicationPositions(); // session consistency
1348
1349 return $db;
1350 }
1351
1352 /**
1353 * Make sure that any "waitForPos" positions are loaded and available to doWait()
1354 */
1355 private function lazyLoadReplicationPositions() {
1356 if ( !$this->connectionAttempted && $this->chronologyCallback ) {
1357 $this->connectionAttempted = true;
1358 ( $this->chronologyCallback )( $this ); // generally calls waitFor()
1359 $this->connLogger->debug( __METHOD__ . ': executed chronology callback.' );
1360 }
1361 }
1362
1363 /**
1364 * @throws DBConnectionError
1365 */
1366 private function reportConnectionError() {
1367 $conn = $this->errorConnection; // the connection which caused the error
1368 $context = [
1369 'method' => __METHOD__,
1370 'last_error' => $this->lastError,
1371 ];
1372
1373 if ( $conn instanceof IDatabase ) {
1374 $context['db_server'] = $conn->getServer();
1375 $this->connLogger->warning(
1376 __METHOD__ . ": connection error: {last_error} ({db_server})",
1377 $context
1378 );
1379
1380 throw new DBConnectionError( $conn, "{$this->lastError} ({$context['db_server']})" );
1381 } else {
1382 // No last connection, probably due to all servers being too busy
1383 $this->connLogger->error(
1384 __METHOD__ .
1385 ": LB failure with no last connection. Connection error: {last_error}",
1386 $context
1387 );
1388
1389 // If all servers were busy, "lastError" will contain something sensible
1390 throw new DBConnectionError( null, $this->lastError );
1391 }
1392 }
1393
1394 public function getWriterIndex() {
1395 return 0;
1396 }
1397
1398 /**
1399 * Returns true if the specified index is a valid server index
1400 *
1401 * @param int $i
1402 * @return bool
1403 * @deprecated Since 1.34
1404 */
1405 public function haveIndex( $i ) {
1406 return array_key_exists( $i, $this->servers );
1407 }
1408
1409 /**
1410 * Returns true if the specified index is valid and has non-zero load
1411 *
1412 * @param int $i
1413 * @return bool
1414 * @deprecated Since 1.34
1415 */
1416 public function isNonZeroLoad( $i ) {
1417 return ( isset( $this->servers[$i] ) && $this->groupLoads[self::GROUP_GENERIC][$i] > 0 );
1418 }
1419
1420 public function getServerCount() {
1421 return count( $this->servers );
1422 }
1423
1424 public function hasReplicaServers() {
1425 return ( $this->getServerCount() > 1 );
1426 }
1427
1428 public function hasStreamingReplicaServers() {
1429 foreach ( $this->servers as $i => $server ) {
1430 if ( $i !== $this->getWriterIndex() && empty( $server['is static'] ) ) {
1431 return true;
1432 }
1433 }
1434
1435 return false;
1436 }
1437
1438 public function getServerName( $i ) {
1439 $name = $this->servers[$i]['hostName'] ?? ( $this->servers[$i]['host'] ?? '' );
1440
1441 return ( $name != '' ) ? $name : 'localhost';
1442 }
1443
1444 public function getServerInfo( $i ) {
1445 return $this->servers[$i] ?? false;
1446 }
1447
1448 public function getServerType( $i ) {
1449 return $this->servers[$i]['type'] ?? 'unknown';
1450 }
1451
1452 public function getMasterPos() {
1453 $index = $this->getWriterIndex();
1454
1455 $conn = $this->getAnyOpenConnection( $index );
1456 if ( $conn ) {
1457 return $conn->getMasterPos();
1458 }
1459
1460 $conn = $this->getConnection( $index, self::CONN_SILENCE_ERRORS );
1461 if ( !$conn ) {
1462 $this->reportConnectionError();
1463 return null; // unreachable due to exception
1464 }
1465
1466 try {
1467 $pos = $conn->getMasterPos();
1468 } finally {
1469 $this->closeConnection( $conn );
1470 }
1471
1472 return $pos;
1473 }
1474
1475 public function getReplicaResumePos() {
1476 // Get the position of any existing master server connection
1477 $masterConn = $this->getAnyOpenConnection( $this->getWriterIndex() );
1478 if ( $masterConn ) {
1479 return $masterConn->getMasterPos();
1480 }
1481
1482 // Get the highest position of any existing replica server connection
1483 $highestPos = false;
1484 $serverCount = $this->getServerCount();
1485 for ( $i = 1; $i < $serverCount; $i++ ) {
1486 if ( !empty( $this->servers[$i]['is static'] ) ) {
1487 continue; // server does not use replication
1488 }
1489
1490 $conn = $this->getAnyOpenConnection( $i );
1491 $pos = $conn ? $conn->getReplicaPos() : false;
1492 if ( !$pos ) {
1493 continue; // no open connection or could not get position
1494 }
1495
1496 $highestPos = $highestPos ?: $pos;
1497 if ( $pos->hasReached( $highestPos ) ) {
1498 $highestPos = $pos;
1499 }
1500 }
1501
1502 return $highestPos;
1503 }
1504
1505 public function disable() {
1506 $this->closeAll();
1507 $this->disabled = true;
1508 }
1509
1510 public function closeAll() {
1511 $fname = __METHOD__;
1512 $this->forEachOpenConnection( function ( IDatabase $conn ) use ( $fname ) {
1513 $host = $conn->getServer();
1514 $this->connLogger->debug(
1515 $fname . ": closing connection to database '$host'." );
1516 $conn->close();
1517 } );
1518
1519 $this->conns = self::newTrackedConnectionsArray();
1520 }
1521
1522 public function closeConnection( IDatabase $conn ) {
1523 if ( $conn instanceof DBConnRef ) {
1524 // Avoid calling close() but still leaving the handle in the pool
1525 throw new RuntimeException( 'Cannot close DBConnRef instance; it must be shareable' );
1526 }
1527
1528 $serverIndex = $conn->getLBInfo( 'serverIndex' );
1529 foreach ( $this->conns as $type => $connsByServer ) {
1530 if ( !isset( $connsByServer[$serverIndex] ) ) {
1531 continue;
1532 }
1533
1534 foreach ( $connsByServer[$serverIndex] as $i => $trackedConn ) {
1535 if ( $conn === $trackedConn ) {
1536 $host = $this->getServerName( $i );
1537 $this->connLogger->debug(
1538 __METHOD__ . ": closing connection to database $i at '$host'." );
1539 unset( $this->conns[$type][$serverIndex][$i] );
1540 break 2;
1541 }
1542 }
1543 }
1544
1545 $conn->close();
1546 }
1547
1548 public function commitAll( $fname = __METHOD__, $owner = null ) {
1549 $this->commitMasterChanges( $fname, $owner );
1550 $this->flushMasterSnapshots( $fname );
1551 $this->flushReplicaSnapshots( $fname );
1552 }
1553
1554 public function finalizeMasterChanges( $fname = __METHOD__, $owner = null ) {
1555 $this->assertOwnership( $fname, $owner );
1556 $this->assertTransactionRoundStage( [ self::ROUND_CURSORY, self::ROUND_FINALIZED ] );
1557
1558 $this->trxRoundStage = self::ROUND_ERROR; // "failed" until proven otherwise
1559 // Loop until callbacks stop adding callbacks on other connections
1560 $total = 0;
1561 do {
1562 $count = 0; // callbacks execution attempts
1563 $this->forEachOpenMasterConnection( function ( Database $conn ) use ( &$count ) {
1564 // Run any pre-commit callbacks while leaving the post-commit ones suppressed.
1565 // Any error should cause all (peer) transactions to be rolled back together.
1566 $count += $conn->runOnTransactionPreCommitCallbacks();
1567 } );
1568 $total += $count;
1569 } while ( $count > 0 );
1570 // Defer post-commit callbacks until after COMMIT/ROLLBACK happens on all handles
1571 $this->forEachOpenMasterConnection( function ( Database $conn ) {
1572 $conn->setTrxEndCallbackSuppression( true );
1573 } );
1574 $this->trxRoundStage = self::ROUND_FINALIZED;
1575
1576 return $total;
1577 }
1578
1579 public function approveMasterChanges( array $options, $fname = __METHOD__, $owner = null ) {
1580 $this->assertOwnership( $fname, $owner );
1581 $this->assertTransactionRoundStage( self::ROUND_FINALIZED );
1582
1583 $limit = $options['maxWriteDuration'] ?? 0;
1584
1585 $this->trxRoundStage = self::ROUND_ERROR; // "failed" until proven otherwise
1586 $this->forEachOpenMasterConnection( function ( IDatabase $conn ) use ( $limit ) {
1587 // If atomic sections or explicit transactions are still open, some caller must have
1588 // caught an exception but failed to properly rollback any changes. Detect that and
1589 // throw and error (causing rollback).
1590 $conn->assertNoOpenTransactions();
1591 // Assert that the time to replicate the transaction will be sane.
1592 // If this fails, then all DB transactions will be rollback back together.
1593 $time = $conn->pendingWriteQueryDuration( $conn::ESTIMATE_DB_APPLY );
1594 if ( $limit > 0 && $time > $limit ) {
1595 throw new DBTransactionSizeError(
1596 $conn,
1597 "Transaction spent $time second(s) in writes, exceeding the limit of $limit",
1598 [ $time, $limit ]
1599 );
1600 }
1601 // If a connection sits idle while slow queries execute on another, that connection
1602 // may end up dropped before the commit round is reached. Ping servers to detect this.
1603 if ( $conn->writesOrCallbacksPending() && !$conn->ping() ) {
1604 throw new DBTransactionError(
1605 $conn,
1606 "A connection to the {$conn->getDBname()} database was lost before commit"
1607 );
1608 }
1609 } );
1610 $this->trxRoundStage = self::ROUND_APPROVED;
1611 }
1612
1613 public function beginMasterChanges( $fname = __METHOD__, $owner = null ) {
1614 $this->assertOwnership( $fname, $owner );
1615 if ( $this->trxRoundId !== false ) {
1616 throw new DBTransactionError(
1617 null,
1618 "$fname: Transaction round '{$this->trxRoundId}' already started"
1619 );
1620 }
1621 $this->assertTransactionRoundStage( self::ROUND_CURSORY );
1622
1623 // Clear any empty transactions (no writes/callbacks) from the implicit round
1624 $this->flushMasterSnapshots( $fname );
1625
1626 $this->trxRoundId = $fname;
1627 $this->trxRoundStage = self::ROUND_ERROR; // "failed" until proven otherwise
1628 // Mark applicable handles as participating in this explicit transaction round.
1629 // For each of these handles, any writes and callbacks will be tied to a single
1630 // transaction. The (peer) handles will reject begin()/commit() calls unless they
1631 // are part of an en masse commit or an en masse rollback.
1632 $this->forEachOpenMasterConnection( function ( Database $conn ) {
1633 $this->applyTransactionRoundFlags( $conn );
1634 } );
1635 $this->trxRoundStage = self::ROUND_CURSORY;
1636 }
1637
1638 public function commitMasterChanges( $fname = __METHOD__, $owner = null ) {
1639 $this->assertOwnership( $fname, $owner );
1640 $this->assertTransactionRoundStage( self::ROUND_APPROVED );
1641
1642 $failures = [];
1643
1644 /** @noinspection PhpUnusedLocalVariableInspection */
1645 $scope = ScopedCallback::newScopedIgnoreUserAbort(); // try to ignore client aborts
1646
1647 $restore = ( $this->trxRoundId !== false );
1648 $this->trxRoundId = false;
1649 $this->trxRoundStage = self::ROUND_ERROR; // "failed" until proven otherwise
1650 // Commit any writes and clear any snapshots as well (callbacks require AUTOCOMMIT).
1651 // Note that callbacks should already be suppressed due to finalizeMasterChanges().
1652 $this->forEachOpenMasterConnection(
1653 function ( IDatabase $conn ) use ( $fname, &$failures ) {
1654 try {
1655 $conn->commit( $fname, $conn::FLUSHING_ALL_PEERS );
1656 } catch ( DBError $e ) {
1657 ( $this->errorLogger )( $e );
1658 $failures[] = "{$conn->getServer()}: {$e->getMessage()}";
1659 }
1660 }
1661 );
1662 if ( $failures ) {
1663 throw new DBTransactionError(
1664 null,
1665 "$fname: Commit failed on server(s) " . implode( "\n", array_unique( $failures ) )
1666 );
1667 }
1668 if ( $restore ) {
1669 // Unmark handles as participating in this explicit transaction round
1670 $this->forEachOpenMasterConnection( function ( Database $conn ) {
1671 $this->undoTransactionRoundFlags( $conn );
1672 } );
1673 }
1674 $this->trxRoundStage = self::ROUND_COMMIT_CALLBACKS;
1675 }
1676
1677 public function runMasterTransactionIdleCallbacks( $fname = __METHOD__, $owner = null ) {
1678 $this->assertOwnership( $fname, $owner );
1679 if ( $this->trxRoundStage === self::ROUND_COMMIT_CALLBACKS ) {
1680 $type = IDatabase::TRIGGER_COMMIT;
1681 } elseif ( $this->trxRoundStage === self::ROUND_ROLLBACK_CALLBACKS ) {
1682 $type = IDatabase::TRIGGER_ROLLBACK;
1683 } else {
1684 throw new DBTransactionError(
1685 null,
1686 "Transaction should be in the callback stage (not '{$this->trxRoundStage}')"
1687 );
1688 }
1689
1690 $oldStage = $this->trxRoundStage;
1691 $this->trxRoundStage = self::ROUND_ERROR; // "failed" until proven otherwise
1692
1693 // Now that the COMMIT/ROLLBACK step is over, enable post-commit callback runs
1694 $this->forEachOpenMasterConnection( function ( Database $conn ) {
1695 $conn->setTrxEndCallbackSuppression( false );
1696 } );
1697
1698 $e = null; // first exception
1699 $fname = __METHOD__;
1700 // Loop until callbacks stop adding callbacks on other connections
1701 do {
1702 // Run any pending callbacks for each connection...
1703 $count = 0; // callback execution attempts
1704 $this->forEachOpenMasterConnection(
1705 function ( Database $conn ) use ( $type, &$e, &$count ) {
1706 if ( $conn->trxLevel() ) {
1707 return; // retry in the next iteration, after commit() is called
1708 }
1709 try {
1710 $count += $conn->runOnTransactionIdleCallbacks( $type );
1711 } catch ( Exception $ex ) {
1712 $e = $e ?: $ex;
1713 }
1714 }
1715 );
1716 // Clear out any active transactions left over from callbacks...
1717 $this->forEachOpenMasterConnection( function ( Database $conn ) use ( &$e, $fname ) {
1718 if ( $conn->writesPending() ) {
1719 // A callback from another handle wrote to this one and DBO_TRX is set
1720 $this->queryLogger->warning( $fname . ": found writes pending." );
1721 $fnames = implode( ', ', $conn->pendingWriteAndCallbackCallers() );
1722 $this->queryLogger->warning(
1723 $fname . ": found writes pending ($fnames).",
1724 [
1725 'db_server' => $conn->getServer(),
1726 'db_name' => $conn->getDBname()
1727 ]
1728 );
1729 } elseif ( $conn->trxLevel() ) {
1730 // A callback from another handle read from this one and DBO_TRX is set,
1731 // which can easily happen if there is only one DB (no replicas)
1732 $this->queryLogger->debug( $fname . ": found empty transaction." );
1733 }
1734 try {
1735 $conn->commit( $fname, $conn::FLUSHING_ALL_PEERS );
1736 } catch ( Exception $ex ) {
1737 $e = $e ?: $ex;
1738 }
1739 } );
1740 } while ( $count > 0 );
1741
1742 $this->trxRoundStage = $oldStage;
1743
1744 return $e;
1745 }
1746
1747 public function runMasterTransactionListenerCallbacks( $fname = __METHOD__, $owner = null ) {
1748 $this->assertOwnership( $fname, $owner );
1749 if ( $this->trxRoundStage === self::ROUND_COMMIT_CALLBACKS ) {
1750 $type = IDatabase::TRIGGER_COMMIT;
1751 } elseif ( $this->trxRoundStage === self::ROUND_ROLLBACK_CALLBACKS ) {
1752 $type = IDatabase::TRIGGER_ROLLBACK;
1753 } else {
1754 throw new DBTransactionError(
1755 null,
1756 "Transaction should be in the callback stage (not '{$this->trxRoundStage}')"
1757 );
1758 }
1759
1760 $e = null;
1761
1762 $this->trxRoundStage = self::ROUND_ERROR; // "failed" until proven otherwise
1763 $this->forEachOpenMasterConnection( function ( Database $conn ) use ( $type, &$e ) {
1764 try {
1765 $conn->runTransactionListenerCallbacks( $type );
1766 } catch ( Exception $ex ) {
1767 $e = $e ?: $ex;
1768 }
1769 } );
1770 $this->trxRoundStage = self::ROUND_CURSORY;
1771
1772 return $e;
1773 }
1774
1775 public function rollbackMasterChanges( $fname = __METHOD__, $owner = null ) {
1776 $this->assertOwnership( $fname, $owner );
1777
1778 $restore = ( $this->trxRoundId !== false );
1779 $this->trxRoundId = false;
1780 $this->trxRoundStage = self::ROUND_ERROR; // "failed" until proven otherwise
1781 $this->forEachOpenMasterConnection( function ( IDatabase $conn ) use ( $fname ) {
1782 $conn->rollback( $fname, $conn::FLUSHING_ALL_PEERS );
1783 } );
1784 if ( $restore ) {
1785 // Unmark handles as participating in this explicit transaction round
1786 $this->forEachOpenMasterConnection( function ( Database $conn ) {
1787 $this->undoTransactionRoundFlags( $conn );
1788 } );
1789 }
1790 $this->trxRoundStage = self::ROUND_ROLLBACK_CALLBACKS;
1791 }
1792
1793 /**
1794 * @param string|string[] $stage
1795 * @throws DBTransactionError
1796 */
1797 private function assertTransactionRoundStage( $stage ) {
1798 $stages = (array)$stage;
1799
1800 if ( !in_array( $this->trxRoundStage, $stages, true ) ) {
1801 $stageList = implode(
1802 '/',
1803 array_map( function ( $v ) {
1804 return "'$v'";
1805 }, $stages )
1806 );
1807 throw new DBTransactionError(
1808 null,
1809 "Transaction round stage must be $stageList (not '{$this->trxRoundStage}')"
1810 );
1811 }
1812 }
1813
1814 /**
1815 * @param string $fname
1816 * @param int|null $owner Owner ID of the caller
1817 * @throws DBTransactionError
1818 */
1819 private function assertOwnership( $fname, $owner ) {
1820 if ( $this->ownerId !== null && $owner !== $this->ownerId ) {
1821 throw new DBTransactionError(
1822 null,
1823 "$fname: LoadBalancer is owned by LBFactory #{$this->ownerId} (got '$owner')."
1824 );
1825 }
1826 }
1827
1828 /**
1829 * Make all DB servers with DBO_DEFAULT/DBO_TRX set join the transaction round
1830 *
1831 * Some servers may have neither flag enabled, meaning that they opt out of such
1832 * transaction rounds and remain in auto-commit mode. Such behavior might be desired
1833 * when a DB server is used for something like simple key/value storage.
1834 *
1835 * @param Database $conn
1836 */
1837 private function applyTransactionRoundFlags( Database $conn ) {
1838 if ( $conn->getLBInfo( 'autoCommitOnly' ) ) {
1839 return; // transaction rounds do not apply to these connections
1840 }
1841
1842 if ( $conn->getFlag( $conn::DBO_DEFAULT ) ) {
1843 // DBO_TRX is controlled entirely by CLI mode presence with DBO_DEFAULT.
1844 // Force DBO_TRX even in CLI mode since a commit round is expected soon.
1845 $conn->setFlag( $conn::DBO_TRX, $conn::REMEMBER_PRIOR );
1846 }
1847
1848 if ( $conn->getFlag( $conn::DBO_TRX ) ) {
1849 $conn->setLBInfo( 'trxRoundId', $this->trxRoundId );
1850 }
1851 }
1852
1853 /**
1854 * @param Database $conn
1855 */
1856 private function undoTransactionRoundFlags( Database $conn ) {
1857 if ( $conn->getLBInfo( 'autoCommitOnly' ) ) {
1858 return; // transaction rounds do not apply to these connections
1859 }
1860
1861 if ( $conn->getFlag( $conn::DBO_TRX ) ) {
1862 $conn->setLBInfo( 'trxRoundId', null ); // remove the round ID
1863 }
1864
1865 if ( $conn->getFlag( $conn::DBO_DEFAULT ) ) {
1866 $conn->restoreFlags( $conn::RESTORE_PRIOR );
1867 }
1868 }
1869
1870 public function flushReplicaSnapshots( $fname = __METHOD__ ) {
1871 $this->forEachOpenReplicaConnection( function ( IDatabase $conn ) use ( $fname ) {
1872 $conn->flushSnapshot( $fname );
1873 } );
1874 }
1875
1876 public function flushMasterSnapshots( $fname = __METHOD__ ) {
1877 $this->forEachOpenMasterConnection( function ( IDatabase $conn ) use ( $fname ) {
1878 $conn->flushSnapshot( $fname );
1879 } );
1880 }
1881
1882 /**
1883 * @return string
1884 * @since 1.32
1885 */
1886 public function getTransactionRoundStage() {
1887 return $this->trxRoundStage;
1888 }
1889
1890 public function hasMasterConnection() {
1891 return $this->isOpen( $this->getWriterIndex() );
1892 }
1893
1894 public function hasMasterChanges() {
1895 $pending = 0;
1896 $this->forEachOpenMasterConnection( function ( IDatabase $conn ) use ( &$pending ) {
1897 $pending |= $conn->writesOrCallbacksPending();
1898 } );
1899
1900 return (bool)$pending;
1901 }
1902
1903 public function lastMasterChangeTimestamp() {
1904 $lastTime = false;
1905 $this->forEachOpenMasterConnection( function ( IDatabase $conn ) use ( &$lastTime ) {
1906 $lastTime = max( $lastTime, $conn->lastDoneWrites() );
1907 } );
1908
1909 return $lastTime;
1910 }
1911
1912 public function hasOrMadeRecentMasterChanges( $age = null ) {
1913 $age = ( $age === null ) ? $this->waitTimeout : $age;
1914
1915 return ( $this->hasMasterChanges()
1916 || $this->lastMasterChangeTimestamp() > microtime( true ) - $age );
1917 }
1918
1919 public function pendingMasterChangeCallers() {
1920 $fnames = [];
1921 $this->forEachOpenMasterConnection( function ( IDatabase $conn ) use ( &$fnames ) {
1922 $fnames = array_merge( $fnames, $conn->pendingWriteCallers() );
1923 } );
1924
1925 return $fnames;
1926 }
1927
1928 public function getLaggedReplicaMode( $domain = false ) {
1929 if ( $this->laggedReplicaMode ) {
1930 return true; // stay in lagged replica mode
1931 }
1932
1933 if ( $this->hasStreamingReplicaServers() ) {
1934 // This will set "laggedReplicaMode" as needed
1935 $this->getReaderIndex( self::GROUP_GENERIC, $domain );
1936 }
1937
1938 return $this->laggedReplicaMode;
1939 }
1940
1941 public function laggedReplicaUsed() {
1942 return $this->laggedReplicaMode;
1943 }
1944
1945 public function getReadOnlyReason( $domain = false ) {
1946 $domainInstance = DatabaseDomain::newFromId( $this->resolveDomainID( $domain ) );
1947
1948 if ( $this->readOnlyReason !== false ) {
1949 return $this->readOnlyReason;
1950 } elseif ( $this->isMasterRunningReadOnly( $domainInstance ) ) {
1951 return 'The master database server is running in read-only mode.';
1952 } elseif ( $this->getLaggedReplicaMode( $domain ) ) {
1953 return ( $this->getExistingReaderIndex( self::GROUP_GENERIC ) >= 0 )
1954 ? 'The database is read-only until replication lag decreases.'
1955 : 'The database is read-only until a replica database server becomes reachable.';
1956 }
1957
1958 return false;
1959 }
1960
1961 /**
1962 * @param IDatabase $conn Master connection
1963 * @param int $flags Bitfield of class CONN_* constants
1964 * @return bool Whether the entire server or currently selected DB/schema is read-only
1965 */
1966 private function isMasterConnectionReadOnly( IDatabase $conn, $flags = 0 ) {
1967 // Note that table prefixes are not related to server-side read-only mode
1968 $key = $this->srvCache->makeGlobalKey(
1969 'rdbms-server-readonly',
1970 $conn->getServer(),
1971 $conn->getDBname(),
1972 $conn->dbSchema()
1973 );
1974
1975 if ( ( $flags & self::CONN_REFRESH_READ_ONLY ) == self::CONN_REFRESH_READ_ONLY ) {
1976 try {
1977 $readOnly = (int)$conn->serverIsReadOnly();
1978 } catch ( DBError $e ) {
1979 $readOnly = 0;
1980 }
1981 $this->srvCache->set( $key, $readOnly, BagOStuff::TTL_PROC_SHORT );
1982 } else {
1983 $readOnly = $this->srvCache->getWithSetCallback(
1984 $key,
1985 BagOStuff::TTL_PROC_SHORT,
1986 function () use ( $conn ) {
1987 try {
1988 return (int)$conn->serverIsReadOnly();
1989 } catch ( DBError $e ) {
1990 return 0;
1991 }
1992 }
1993 );
1994 }
1995
1996 return (bool)$readOnly;
1997 }
1998
1999 /**
2000 * @param DatabaseDomain $domain
2001 * @return bool Whether the entire master server or the local domain DB is read-only
2002 */
2003 private function isMasterRunningReadOnly( DatabaseDomain $domain ) {
2004 // Context will often be HTTP GET/HEAD; heavily cache the results
2005 return (bool)$this->wanCache->getWithSetCallback(
2006 // Note that table prefixes are not related to server-side read-only mode
2007 $this->wanCache->makeGlobalKey(
2008 'rdbms-server-readonly',
2009 $this->getMasterServerName(),
2010 $domain->getDatabase(),
2011 $domain->getSchema()
2012 ),
2013 self::TTL_CACHE_READONLY,
2014 function () use ( $domain ) {
2015 $old = $this->trxProfiler->setSilenced( true );
2016 try {
2017 $index = $this->getWriterIndex();
2018 // Reset the cache for isMasterConnectionReadOnly()
2019 $flags = self::CONN_REFRESH_READ_ONLY;
2020 $conn = $this->getServerConnection( $index, $domain->getId(), $flags );
2021 // Reuse the process cache set above
2022 $readOnly = (int)$this->isMasterConnectionReadOnly( $conn );
2023 $this->reuseConnection( $conn );
2024 } catch ( DBError $e ) {
2025 $readOnly = 0;
2026 }
2027 $this->trxProfiler->setSilenced( $old );
2028
2029 return $readOnly;
2030 },
2031 [ 'pcTTL' => WANObjectCache::TTL_PROC_LONG, 'lockTSE' => 10, 'busyValue' => 0 ]
2032 );
2033 }
2034
2035 public function allowLagged( $mode = null ) {
2036 if ( $mode === null ) {
2037 return $this->allowLagged;
2038 }
2039 $this->allowLagged = $mode;
2040
2041 return $this->allowLagged;
2042 }
2043
2044 public function pingAll() {
2045 $success = true;
2046 $this->forEachOpenConnection( function ( IDatabase $conn ) use ( &$success ) {
2047 if ( !$conn->ping() ) {
2048 $success = false;
2049 }
2050 } );
2051
2052 return $success;
2053 }
2054
2055 public function forEachOpenConnection( $callback, array $params = [] ) {
2056 foreach ( $this->conns as $connsByServer ) {
2057 foreach ( $connsByServer as $serverConns ) {
2058 foreach ( $serverConns as $conn ) {
2059 $callback( $conn, ...$params );
2060 }
2061 }
2062 }
2063 }
2064
2065 public function forEachOpenMasterConnection( $callback, array $params = [] ) {
2066 $masterIndex = $this->getWriterIndex();
2067 foreach ( $this->conns as $connsByServer ) {
2068 if ( isset( $connsByServer[$masterIndex] ) ) {
2069 /** @var IDatabase $conn */
2070 foreach ( $connsByServer[$masterIndex] as $conn ) {
2071 $callback( $conn, ...$params );
2072 }
2073 }
2074 }
2075 }
2076
2077 public function forEachOpenReplicaConnection( $callback, array $params = [] ) {
2078 foreach ( $this->conns as $connsByServer ) {
2079 foreach ( $connsByServer as $i => $serverConns ) {
2080 if ( $i === $this->getWriterIndex() ) {
2081 continue; // skip master
2082 }
2083 foreach ( $serverConns as $conn ) {
2084 $callback( $conn, ...$params );
2085 }
2086 }
2087 }
2088 }
2089
2090 /**
2091 * @return int
2092 */
2093 private function getCurrentConnectionCount() {
2094 $count = 0;
2095 foreach ( $this->conns as $connsByServer ) {
2096 foreach ( $connsByServer as $serverConns ) {
2097 $count += count( $serverConns );
2098 }
2099 }
2100
2101 return $count;
2102 }
2103
2104 public function getMaxLag( $domain = false ) {
2105 $host = '';
2106 $maxLag = -1;
2107 $maxIndex = 0;
2108
2109 if ( $this->hasReplicaServers() ) {
2110 $lagTimes = $this->getLagTimes( $domain );
2111 foreach ( $lagTimes as $i => $lag ) {
2112 if ( $this->groupLoads[self::GROUP_GENERIC][$i] > 0 && $lag > $maxLag ) {
2113 $maxLag = $lag;
2114 $host = $this->getServerInfoStrict( $i, 'host' );
2115 $maxIndex = $i;
2116 }
2117 }
2118 }
2119
2120 return [ $host, $maxLag, $maxIndex ];
2121 }
2122
2123 public function getLagTimes( $domain = false ) {
2124 if ( !$this->hasReplicaServers() ) {
2125 return [ $this->getWriterIndex() => 0 ]; // no replication = no lag
2126 }
2127
2128 $knownLagTimes = []; // map of (server index => 0 seconds)
2129 $indexesWithLag = [];
2130 foreach ( $this->servers as $i => $server ) {
2131 if ( empty( $server['is static'] ) ) {
2132 $indexesWithLag[] = $i; // DB server might have replication lag
2133 } else {
2134 $knownLagTimes[$i] = 0; // DB server is a non-replicating and read-only archive
2135 }
2136 }
2137
2138 return $this->getLoadMonitor()->getLagTimes( $indexesWithLag, $domain ) + $knownLagTimes;
2139 }
2140
2141 /**
2142 * Get the lag in seconds for a given connection, or zero if this load
2143 * balancer does not have replication enabled.
2144 *
2145 * This should be used in preference to Database::getLag() in cases where
2146 * replication may not be in use, since there is no way to determine if
2147 * replication is in use at the connection level without running
2148 * potentially restricted queries such as SHOW SLAVE STATUS. Using this
2149 * function instead of Database::getLag() avoids a fatal error in this
2150 * case on many installations.
2151 *
2152 * @param IDatabase $conn
2153 * @return int|bool Returns false on error
2154 * @deprecated Since 1.34 Use IDatabase::getLag() instead
2155 */
2156 public function safeGetLag( IDatabase $conn ) {
2157 if ( $conn->getLBInfo( 'is static' ) ) {
2158 return 0; // static dataset
2159 } elseif ( $conn->getLBInfo( 'serverIndex' ) == $this->getWriterIndex() ) {
2160 return 0; // this is the master
2161 }
2162
2163 return $conn->getLag();
2164 }
2165
2166 public function waitForMasterPos( IDatabase $conn, $pos = false, $timeout = null ) {
2167 $timeout = max( 1, $timeout ?: $this->waitTimeout );
2168
2169 if ( $this->getServerCount() <= 1 || !$conn->getLBInfo( 'replica' ) ) {
2170 return true; // server is not a replica DB
2171 }
2172
2173 if ( !$pos ) {
2174 // Get the current master position, opening a connection if needed
2175 $index = $this->getWriterIndex();
2176 $flags = self::CONN_SILENCE_ERRORS;
2177 $masterConn = $this->getAnyOpenConnection( $index, $flags );
2178 if ( $masterConn ) {
2179 $pos = $masterConn->getMasterPos();
2180 } else {
2181 $masterConn = $this->getServerConnection( $index, self::DOMAIN_ANY, $flags );
2182 if ( !$masterConn ) {
2183 throw new DBReplicationWaitError(
2184 null,
2185 "Could not obtain a master database connection to get the position"
2186 );
2187 }
2188 $pos = $masterConn->getMasterPos();
2189 $this->closeConnection( $masterConn );
2190 }
2191 }
2192
2193 if ( $pos instanceof DBMasterPos ) {
2194 $start = microtime( true );
2195 $result = $conn->masterPosWait( $pos, $timeout );
2196 $seconds = max( microtime( true ) - $start, 0 );
2197 if ( $result == -1 || is_null( $result ) ) {
2198 $msg = __METHOD__ . ': timed out waiting on {host} pos {pos} [{seconds}s]';
2199 $this->replLogger->warning( $msg, [
2200 'host' => $conn->getServer(),
2201 'pos' => $pos,
2202 'seconds' => round( $seconds, 6 ),
2203 'trace' => ( new RuntimeException() )->getTraceAsString()
2204 ] );
2205 $ok = false;
2206 } else {
2207 $this->replLogger->debug( __METHOD__ . ': done waiting' );
2208 $ok = true;
2209 }
2210 } else {
2211 $ok = false; // something is misconfigured
2212 $this->replLogger->error(
2213 __METHOD__ . ': could not get master pos for {host}',
2214 [
2215 'host' => $conn->getServer(),
2216 'trace' => ( new RuntimeException() )->getTraceAsString()
2217 ]
2218 );
2219 }
2220
2221 return $ok;
2222 }
2223
2224 /**
2225 * Wait for a replica DB to reach a specified master position
2226 *
2227 * This will connect to the master to get an accurate position if $pos is not given
2228 *
2229 * @param IDatabase $conn Replica DB
2230 * @param DBMasterPos|bool $pos Master position; default: current position
2231 * @param int $timeout Timeout in seconds [optional]
2232 * @return bool Success
2233 * @since 1.28
2234 * @deprecated Since 1.34 Use waitForMasterPos() instead
2235 */
2236 public function safeWaitForMasterPos( IDatabase $conn, $pos = false, $timeout = null ) {
2237 return $this->waitForMasterPos( $conn, $pos, $timeout );
2238 }
2239
2240 public function setTransactionListener( $name, callable $callback = null ) {
2241 if ( $callback ) {
2242 $this->trxRecurringCallbacks[$name] = $callback;
2243 } else {
2244 unset( $this->trxRecurringCallbacks[$name] );
2245 }
2246 $this->forEachOpenMasterConnection(
2247 function ( IDatabase $conn ) use ( $name, $callback ) {
2248 $conn->setTransactionListener( $name, $callback );
2249 }
2250 );
2251 }
2252
2253 public function setTableAliases( array $aliases ) {
2254 $this->tableAliases = $aliases;
2255 }
2256
2257 public function setIndexAliases( array $aliases ) {
2258 $this->indexAliases = $aliases;
2259 }
2260
2261 public function setLocalDomainPrefix( $prefix ) {
2262 // Find connections to explicit foreign domains still marked as in-use...
2263 $domainsInUse = [];
2264 $this->forEachOpenConnection( function ( IDatabase $conn ) use ( &$domainsInUse ) {
2265 // Once reuseConnection() is called on a handle, its reference count goes from 1 to 0.
2266 // Until then, it is still in use by the caller (explicitly or via DBConnRef scope).
2267 if ( $conn->getLBInfo( 'foreignPoolRefCount' ) > 0 ) {
2268 $domainsInUse[] = $conn->getDomainID();
2269 }
2270 } );
2271
2272 // Do not switch connections to explicit foreign domains unless marked as safe
2273 if ( $domainsInUse ) {
2274 $domains = implode( ', ', $domainsInUse );
2275 throw new DBUnexpectedError( null,
2276 "Foreign domain connections are still in use ($domains)" );
2277 }
2278
2279 $this->setLocalDomain( new DatabaseDomain(
2280 $this->localDomain->getDatabase(),
2281 $this->localDomain->getSchema(),
2282 $prefix
2283 ) );
2284
2285 // Update the prefix for all local connections...
2286 $this->forEachOpenConnection( function ( IDatabase $db ) use ( $prefix ) {
2287 if ( !$db->getLBInfo( 'foreign' ) ) {
2288 $db->tablePrefix( $prefix );
2289 }
2290 } );
2291 }
2292
2293 public function redefineLocalDomain( $domain ) {
2294 $this->closeAll();
2295
2296 $this->setLocalDomain( DatabaseDomain::newFromId( $domain ) );
2297 }
2298
2299 public function setTempTablesOnlyMode( $value, $domain ) {
2300 $old = $this->tempTablesOnlyMode[$domain] ?? false;
2301 if ( $value ) {
2302 $this->tempTablesOnlyMode[$domain] = true;
2303 } else {
2304 unset( $this->tempTablesOnlyMode[$domain] );
2305 }
2306
2307 return $old;
2308 }
2309
2310 /**
2311 * @param DatabaseDomain $domain
2312 */
2313 private function setLocalDomain( DatabaseDomain $domain ) {
2314 $this->localDomain = $domain;
2315 // In case a caller assumes that the domain ID is simply <db>-<prefix>, which is almost
2316 // always true, gracefully handle the case when they fail to account for escaping.
2317 if ( $this->localDomain->getTablePrefix() != '' ) {
2318 $this->localDomainIdAlias =
2319 $this->localDomain->getDatabase() . '-' . $this->localDomain->getTablePrefix();
2320 } else {
2321 $this->localDomainIdAlias = $this->localDomain->getDatabase();
2322 }
2323 }
2324
2325 /**
2326 * @param int $i Server index
2327 * @param string|null $field Server index field [optional]
2328 * @return array|mixed
2329 * @throws InvalidArgumentException
2330 */
2331 private function getServerInfoStrict( $i, $field = null ) {
2332 if ( !isset( $this->servers[$i] ) || !is_array( $this->servers[$i] ) ) {
2333 throw new InvalidArgumentException( "No server with index '$i'" );
2334 }
2335
2336 if ( $field !== null ) {
2337 if ( !array_key_exists( $field, $this->servers[$i] ) ) {
2338 throw new InvalidArgumentException( "No field '$field' in server index '$i'" );
2339 }
2340
2341 return $this->servers[$i][$field];
2342 }
2343
2344 return $this->servers[$i];
2345 }
2346
2347 /**
2348 * @return string
2349 */
2350 private function getMasterServerName() {
2351 return $this->getServerName( $this->getWriterIndex() );
2352 }
2353
2354 function __destruct() {
2355 // Avoid connection leaks for sanity
2356 $this->disable();
2357 }
2358 }
2359
2360 /**
2361 * @deprecated since 1.29
2362 */
2363 class_alias( LoadBalancer::class, 'LoadBalancer' );