Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / includes / libs / rdbms / lbfactory / LBFactory.php
1 <?php
2 /**
3 * Generator and manager of database load balancing objects
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 * @ingroup Database
22 */
23
24 use Psr\Log\LoggerInterface;
25
26 /**
27 * An interface for generating database load balancers
28 * @ingroup Database
29 */
30 abstract class LBFactory implements ILBFactory {
31 /** @var ChronologyProtector */
32 protected $chronProt;
33 /** @var object|string Class name or object With profileIn/profileOut methods */
34 protected $profiler;
35 /** @var TransactionProfiler */
36 protected $trxProfiler;
37 /** @var LoggerInterface */
38 protected $replLogger;
39 /** @var LoggerInterface */
40 protected $connLogger;
41 /** @var LoggerInterface */
42 protected $queryLogger;
43 /** @var LoggerInterface */
44 protected $perfLogger;
45 /** @var callable Error logger */
46 protected $errorLogger;
47 /** @var BagOStuff */
48 protected $srvCache;
49 /** @var BagOStuff */
50 protected $memCache;
51 /** @var WANObjectCache */
52 protected $wanCache;
53
54 /** @var DatabaseDomain Local domain */
55 protected $localDomain;
56 /** @var string Local hostname of the app server */
57 protected $hostname;
58 /** @var array Web request information about the client */
59 protected $requestInfo;
60
61 /** @var mixed */
62 protected $ticket;
63 /** @var string|bool String if a requested DBO_TRX transaction round is active */
64 protected $trxRoundId = false;
65 /** @var string|bool Reason all LBs are read-only or false if not */
66 protected $readOnlyReason = false;
67 /** @var callable[] */
68 protected $replicationWaitCallbacks = [];
69
70 /** @var bool Whether this PHP instance is for a CLI script */
71 protected $cliMode;
72 /** @var string Agent name for query profiling */
73 protected $agent;
74
75 private static $loggerFields =
76 [ 'replLogger', 'connLogger', 'queryLogger', 'perfLogger' ];
77
78 public function __construct( array $conf ) {
79 $this->localDomain = isset( $conf['localDomain'] )
80 ? DatabaseDomain::newFromId( $conf['localDomain'] )
81 : DatabaseDomain::newUnspecified();
82
83 if ( isset( $conf['readOnlyReason'] ) && is_string( $conf['readOnlyReason'] ) ) {
84 $this->readOnlyReason = $conf['readOnlyReason'];
85 }
86
87 $this->srvCache = isset( $conf['srvCache'] ) ? $conf['srvCache'] : new EmptyBagOStuff();
88 $this->memCache = isset( $conf['memCache'] ) ? $conf['memCache'] : new EmptyBagOStuff();
89 $this->wanCache = isset( $conf['wanCache'] )
90 ? $conf['wanCache']
91 : WANObjectCache::newEmpty();
92
93 foreach ( self::$loggerFields as $key ) {
94 $this->$key = isset( $conf[$key] ) ? $conf[$key] : new \Psr\Log\NullLogger();
95 }
96 $this->errorLogger = isset( $conf['errorLogger'] )
97 ? $conf['errorLogger']
98 : function ( Exception $e ) {
99 trigger_error( E_WARNING, get_class( $e ) . ': ' . $e->getMessage() );
100 };
101
102 $this->profiler = isset( $params['profiler'] ) ? $params['profiler'] : null;
103 $this->trxProfiler = isset( $conf['trxProfiler'] )
104 ? $conf['trxProfiler']
105 : new TransactionProfiler();
106
107 $this->requestInfo = [
108 'IPAddress' => isset( $_SERVER[ 'REMOTE_ADDR' ] ) ? $_SERVER[ 'REMOTE_ADDR' ] : '',
109 'UserAgent' => isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : '',
110 'ChronologyProtection' => 'true'
111 ];
112
113 $this->cliMode = isset( $params['cliMode'] ) ? $params['cliMode'] : PHP_SAPI === 'cli';
114 $this->hostname = isset( $conf['hostname'] ) ? $conf['hostname'] : gethostname();
115 $this->agent = isset( $params['agent'] ) ? $params['agent'] : '';
116
117 $this->ticket = mt_rand();
118 }
119
120 public function destroy() {
121 $this->shutdown( self::SHUTDOWN_NO_CHRONPROT );
122 $this->forEachLBCallMethod( 'disable' );
123 }
124
125 public function shutdown(
126 $mode = self::SHUTDOWN_CHRONPROT_SYNC, callable $workCallback = null
127 ) {
128 $chronProt = $this->getChronologyProtector();
129 if ( $mode === self::SHUTDOWN_CHRONPROT_SYNC ) {
130 $this->shutdownChronologyProtector( $chronProt, $workCallback, 'sync' );
131 } elseif ( $mode === self::SHUTDOWN_CHRONPROT_ASYNC ) {
132 $this->shutdownChronologyProtector( $chronProt, null, 'async' );
133 }
134
135 $this->commitMasterChanges( __METHOD__ ); // sanity
136 }
137
138 /**
139 * @see ILBFactory::newMainLB()
140 * @param bool $domain
141 * @return LoadBalancer
142 */
143 abstract public function newMainLB( $domain = false );
144
145 /**
146 * @see ILBFactory::getMainLB()
147 * @param bool $domain
148 * @return LoadBalancer
149 */
150 abstract public function getMainLB( $domain = false );
151
152 /**
153 * @see ILBFactory::newExternalLB()
154 * @param string $cluster
155 * @param bool $domain
156 * @return LoadBalancer
157 */
158 abstract public function newExternalLB( $cluster, $domain = false );
159
160 /**
161 * @see ILBFactory::getExternalLB()
162 * @param string $cluster
163 * @param bool $domain
164 * @return LoadBalancer
165 */
166 abstract public function getExternalLB( $cluster, $domain = false );
167
168 /**
169 * Call a method of each tracked load balancer
170 *
171 * @param string $methodName
172 * @param array $args
173 */
174 protected function forEachLBCallMethod( $methodName, array $args = [] ) {
175 $this->forEachLB(
176 function ( ILoadBalancer $loadBalancer, $methodName, array $args ) {
177 call_user_func_array( [ $loadBalancer, $methodName ], $args );
178 },
179 [ $methodName, $args ]
180 );
181 }
182
183 public function flushReplicaSnapshots( $fname = __METHOD__ ) {
184 $this->forEachLBCallMethod( 'flushReplicaSnapshots', [ $fname ] );
185 }
186
187 public function commitAll( $fname = __METHOD__, array $options = [] ) {
188 $this->commitMasterChanges( $fname, $options );
189 $this->forEachLBCallMethod( 'commitAll', [ $fname ] );
190 }
191
192 public function beginMasterChanges( $fname = __METHOD__ ) {
193 if ( $this->trxRoundId !== false ) {
194 throw new DBTransactionError(
195 null,
196 "$fname: transaction round '{$this->trxRoundId}' already started."
197 );
198 }
199 $this->trxRoundId = $fname;
200 // Set DBO_TRX flags on all appropriate DBs
201 $this->forEachLBCallMethod( 'beginMasterChanges', [ $fname ] );
202 }
203
204 public function commitMasterChanges( $fname = __METHOD__, array $options = [] ) {
205 if ( $this->trxRoundId !== false && $this->trxRoundId !== $fname ) {
206 throw new DBTransactionError(
207 null,
208 "$fname: transaction round '{$this->trxRoundId}' still running."
209 );
210 }
211 /** @noinspection PhpUnusedLocalVariableInspection */
212 $scope = $this->getScopedPHPBehaviorForCommit(); // try to ignore client aborts
213 // Run pre-commit callbacks and suppress post-commit callbacks, aborting on failure
214 $this->forEachLBCallMethod( 'finalizeMasterChanges' );
215 $this->trxRoundId = false;
216 // Perform pre-commit checks, aborting on failure
217 $this->forEachLBCallMethod( 'approveMasterChanges', [ $options ] );
218 // Log the DBs and methods involved in multi-DB transactions
219 $this->logIfMultiDbTransaction();
220 // Actually perform the commit on all master DB connections and revert DBO_TRX
221 $this->forEachLBCallMethod( 'commitMasterChanges', [ $fname ] );
222 // Run all post-commit callbacks
223 /** @var Exception $e */
224 $e = null; // first callback exception
225 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$e ) {
226 $ex = $lb->runMasterPostTrxCallbacks( IDatabase::TRIGGER_COMMIT );
227 $e = $e ?: $ex;
228 } );
229 // Commit any dangling DBO_TRX transactions from callbacks on one DB to another DB
230 $this->forEachLBCallMethod( 'commitMasterChanges', [ $fname ] );
231 // Throw any last post-commit callback error
232 if ( $e instanceof Exception ) {
233 throw $e;
234 }
235 }
236
237 public function rollbackMasterChanges( $fname = __METHOD__ ) {
238 $this->trxRoundId = false;
239 $this->forEachLBCallMethod( 'suppressTransactionEndCallbacks' );
240 $this->forEachLBCallMethod( 'rollbackMasterChanges', [ $fname ] );
241 // Run all post-rollback callbacks
242 $this->forEachLB( function ( ILoadBalancer $lb ) {
243 $lb->runMasterPostTrxCallbacks( IDatabase::TRIGGER_ROLLBACK );
244 } );
245 }
246
247 /**
248 * Log query info if multi DB transactions are going to be committed now
249 */
250 private function logIfMultiDbTransaction() {
251 $callersByDB = [];
252 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$callersByDB ) {
253 $masterName = $lb->getServerName( $lb->getWriterIndex() );
254 $callers = $lb->pendingMasterChangeCallers();
255 if ( $callers ) {
256 $callersByDB[$masterName] = $callers;
257 }
258 } );
259
260 if ( count( $callersByDB ) >= 2 ) {
261 $dbs = implode( ', ', array_keys( $callersByDB ) );
262 $msg = "Multi-DB transaction [{$dbs}]:\n";
263 foreach ( $callersByDB as $db => $callers ) {
264 $msg .= "$db: " . implode( '; ', $callers ) . "\n";
265 }
266 $this->queryLogger->info( $msg );
267 }
268 }
269
270 public function hasMasterChanges() {
271 $ret = false;
272 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$ret ) {
273 $ret = $ret || $lb->hasMasterChanges();
274 } );
275
276 return $ret;
277 }
278
279 public function laggedReplicaUsed() {
280 $ret = false;
281 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$ret ) {
282 $ret = $ret || $lb->laggedReplicaUsed();
283 } );
284
285 return $ret;
286 }
287
288 public function hasOrMadeRecentMasterChanges( $age = null ) {
289 $ret = false;
290 $this->forEachLB( function ( ILoadBalancer $lb ) use ( $age, &$ret ) {
291 $ret = $ret || $lb->hasOrMadeRecentMasterChanges( $age );
292 } );
293 return $ret;
294 }
295
296 public function waitForReplication( array $opts = [] ) {
297 $opts += [
298 'domain' => false,
299 'cluster' => false,
300 'timeout' => 60,
301 'ifWritesSince' => null
302 ];
303
304 if ( $opts['domain'] === false && isset( $opts['wiki'] ) ) {
305 $opts['domain'] = $opts['wiki']; // b/c
306 }
307
308 // Figure out which clusters need to be checked
309 /** @var ILoadBalancer[] $lbs */
310 $lbs = [];
311 if ( $opts['cluster'] !== false ) {
312 $lbs[] = $this->getExternalLB( $opts['cluster'] );
313 } elseif ( $opts['domain'] !== false ) {
314 $lbs[] = $this->getMainLB( $opts['domain'] );
315 } else {
316 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$lbs ) {
317 $lbs[] = $lb;
318 } );
319 if ( !$lbs ) {
320 return; // nothing actually used
321 }
322 }
323
324 // Get all the master positions of applicable DBs right now.
325 // This can be faster since waiting on one cluster reduces the
326 // time needed to wait on the next clusters.
327 $masterPositions = array_fill( 0, count( $lbs ), false );
328 foreach ( $lbs as $i => $lb ) {
329 if ( $lb->getServerCount() <= 1 ) {
330 // Bug 27975 - Don't try to wait for replica DBs if there are none
331 // Prevents permission error when getting master position
332 continue;
333 } elseif ( $opts['ifWritesSince']
334 && $lb->lastMasterChangeTimestamp() < $opts['ifWritesSince']
335 ) {
336 continue; // no writes since the last wait
337 }
338 $masterPositions[$i] = $lb->getMasterPos();
339 }
340
341 // Run any listener callbacks *after* getting the DB positions. The more
342 // time spent in the callbacks, the less time is spent in waitForAll().
343 foreach ( $this->replicationWaitCallbacks as $callback ) {
344 $callback();
345 }
346
347 $failed = [];
348 foreach ( $lbs as $i => $lb ) {
349 if ( $masterPositions[$i] ) {
350 // The DBMS may not support getMasterPos()
351 if ( !$lb->waitForAll( $masterPositions[$i], $opts['timeout'] ) ) {
352 $failed[] = $lb->getServerName( $lb->getWriterIndex() );
353 }
354 }
355 }
356
357 if ( $failed ) {
358 throw new DBReplicationWaitError(
359 "Could not wait for replica DBs to catch up to " .
360 implode( ', ', $failed )
361 );
362 }
363 }
364
365 public function setWaitForReplicationListener( $name, callable $callback = null ) {
366 if ( $callback ) {
367 $this->replicationWaitCallbacks[$name] = $callback;
368 } else {
369 unset( $this->replicationWaitCallbacks[$name] );
370 }
371 }
372
373 public function getEmptyTransactionTicket( $fname ) {
374 if ( $this->hasMasterChanges() ) {
375 $this->queryLogger->error( __METHOD__ . ": $fname does not have outer scope.\n" .
376 ( new RuntimeException() )->getTraceAsString() );
377
378 return null;
379 }
380
381 return $this->ticket;
382 }
383
384 public function commitAndWaitForReplication( $fname, $ticket, array $opts = [] ) {
385 if ( $ticket !== $this->ticket ) {
386 $this->perfLogger->error( __METHOD__ . ": $fname does not have outer scope.\n" .
387 ( new RuntimeException() )->getTraceAsString() );
388
389 return;
390 }
391
392 // The transaction owner and any caller with the empty transaction ticket can commit
393 // so that getEmptyTransactionTicket() callers don't risk seeing DBTransactionError.
394 if ( $this->trxRoundId !== false && $fname !== $this->trxRoundId ) {
395 $this->queryLogger->info( "$fname: committing on behalf of {$this->trxRoundId}." );
396 $fnameEffective = $this->trxRoundId;
397 } else {
398 $fnameEffective = $fname;
399 }
400
401 $this->commitMasterChanges( $fnameEffective );
402 $this->waitForReplication( $opts );
403 // If a nested caller committed on behalf of $fname, start another empty $fname
404 // transaction, leaving the caller with the same empty transaction state as before.
405 if ( $fnameEffective !== $fname ) {
406 $this->beginMasterChanges( $fnameEffective );
407 }
408 }
409
410 public function getChronologyProtectorTouched( $dbName ) {
411 return $this->getChronologyProtector()->getTouched( $dbName );
412 }
413
414 public function disableChronologyProtection() {
415 $this->getChronologyProtector()->setEnabled( false );
416 }
417
418 /**
419 * @return ChronologyProtector
420 */
421 protected function getChronologyProtector() {
422 if ( $this->chronProt ) {
423 return $this->chronProt;
424 }
425
426 $this->chronProt = new ChronologyProtector(
427 $this->memCache,
428 [
429 'ip' => $this->requestInfo['IPAddress'],
430 'agent' => $this->requestInfo['UserAgent'],
431 ],
432 isset( $_GET['cpPosTime'] ) ? $_GET['cpPosTime'] : null
433 );
434 $this->chronProt->setLogger( $this->replLogger );
435
436 if ( $this->cliMode ) {
437 $this->chronProt->setEnabled( false );
438 } elseif ( $this->requestInfo['ChronologyProtection'] === 'false' ) {
439 // Request opted out of using position wait logic. This is useful for requests
440 // done by the job queue or background ETL that do not have a meaningful session.
441 $this->chronProt->setWaitEnabled( false );
442 }
443
444 $this->replLogger->debug( __METHOD__ . ': using request info ' .
445 json_encode( $this->requestInfo, JSON_PRETTY_PRINT ) );
446
447 return $this->chronProt;
448 }
449
450 /**
451 * Get and record all of the staged DB positions into persistent memory storage
452 *
453 * @param ChronologyProtector $cp
454 * @param callable|null $workCallback Work to do instead of waiting on syncing positions
455 * @param string $mode One of (sync, async); whether to wait on remote datacenters
456 */
457 protected function shutdownChronologyProtector(
458 ChronologyProtector $cp, $workCallback, $mode
459 ) {
460 // Record all the master positions needed
461 $this->forEachLB( function ( ILoadBalancer $lb ) use ( $cp ) {
462 $cp->shutdownLB( $lb );
463 } );
464 // Write them to the persistent stash. Try to do something useful by running $work
465 // while ChronologyProtector waits for the stash write to replicate to all DCs.
466 $unsavedPositions = $cp->shutdown( $workCallback, $mode );
467 if ( $unsavedPositions && $workCallback ) {
468 // Invoke callback in case it did not cache the result yet
469 $workCallback(); // work now to block for less time in waitForAll()
470 }
471 // If the positions failed to write to the stash, at least wait on local datacenter
472 // replica DBs to catch up before responding. Even if there are several DCs, this increases
473 // the chance that the user will see their own changes immediately afterwards. As long
474 // as the sticky DC cookie applies (same domain), this is not even an issue.
475 $this->forEachLB( function ( ILoadBalancer $lb ) use ( $unsavedPositions ) {
476 $masterName = $lb->getServerName( $lb->getWriterIndex() );
477 if ( isset( $unsavedPositions[$masterName] ) ) {
478 $lb->waitForAll( $unsavedPositions[$masterName] );
479 }
480 } );
481 }
482
483 /**
484 * Base parameters to LoadBalancer::__construct()
485 * @return array
486 */
487 final protected function baseLoadBalancerParams() {
488 return [
489 'localDomain' => $this->localDomain,
490 'readOnlyReason' => $this->readOnlyReason,
491 'srvCache' => $this->srvCache,
492 'wanCache' => $this->wanCache,
493 'profiler' => $this->profiler,
494 'trxProfiler' => $this->trxProfiler,
495 'queryLogger' => $this->queryLogger,
496 'connLogger' => $this->connLogger,
497 'replLogger' => $this->replLogger,
498 'errorLogger' => $this->errorLogger,
499 'hostname' => $this->hostname,
500 'cliMode' => $this->cliMode,
501 'agent' => $this->agent
502 ];
503 }
504
505 /**
506 * @param ILoadBalancer $lb
507 */
508 protected function initLoadBalancer( ILoadBalancer $lb ) {
509 if ( $this->trxRoundId !== false ) {
510 $lb->beginMasterChanges( $this->trxRoundId ); // set DBO_TRX
511 }
512 }
513
514 public function setDomainPrefix( $prefix ) {
515 $this->localDomain = new DatabaseDomain(
516 $this->localDomain->getDatabase(),
517 null,
518 $prefix
519 );
520
521 $this->forEachLB( function( ILoadBalancer $lb ) use ( $prefix ) {
522 $lb->setDomainPrefix( $prefix );
523 } );
524 }
525
526 public function closeAll() {
527 $this->forEachLBCallMethod( 'closeAll', [] );
528 }
529
530 public function setAgentName( $agent ) {
531 $this->agent = $agent;
532 }
533
534 public function appendPreShutdownTimeAsQuery( $url, $time ) {
535 $usedCluster = 0;
536 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$usedCluster ) {
537 $usedCluster |= ( $lb->getServerCount() > 1 );
538 } );
539
540 if ( !$usedCluster ) {
541 return $url; // no master/replica clusters touched
542 }
543
544 return strpos( $url, '?' ) === false ? "$url?cpPosTime=$time" : "$url&cpPosTime=$time";
545 }
546
547 public function setRequestInfo( array $info ) {
548 $this->requestInfo = $info + $this->requestInfo;
549 }
550
551 /**
552 * Make PHP ignore user aborts/disconnects until the returned
553 * value leaves scope. This returns null and does nothing in CLI mode.
554 *
555 * @return ScopedCallback|null
556 */
557 final protected function getScopedPHPBehaviorForCommit() {
558 if ( PHP_SAPI != 'cli' ) { // http://bugs.php.net/bug.php?id=47540
559 $old = ignore_user_abort( true ); // avoid half-finished operations
560 return new ScopedCallback( function () use ( $old ) {
561 ignore_user_abort( $old );
562 } );
563 }
564
565 return null;
566 }
567
568 function __destruct() {
569 $this->destroy();
570 }
571 }