MediaWiki REL1_39
ILoadBalancerForOwner.php
Go to the documentation of this file.
1<?php
20namespace Wikimedia\Rdbms;
21
22use Exception;
23
35 public const STAGE_POSTCOMMIT_CALLBACKS = 'stage-postcommit-callbacks';
37 public const STAGE_POSTROLLBACK_CALLBACKS = 'stage-postrollback-callbacks';
38
67 public function __construct( array $params );
68
76 public function disable( $fname = __METHOD__ );
77
84 public function closeAll( $fname = __METHOD__ );
85
92 public function commitAll( $fname = __METHOD__ );
93
103 public function finalizePrimaryChanges( $fname = __METHOD__ );
104
116 public function approvePrimaryChanges( array $options, $fname = __METHOD__ );
117
131 public function beginPrimaryChanges( $fname = __METHOD__ );
132
139 public function commitPrimaryChanges( $fname = __METHOD__ );
140
148 public function runPrimaryTransactionIdleCallbacks( $fname = __METHOD__ );
149
157 public function runPrimaryTransactionListenerCallbacks( $fname = __METHOD__ );
158
166 public function rollbackPrimaryChanges( $fname = __METHOD__ );
167
177 public function flushPrimarySessions( $fname = __METHOD__ );
178
184 public function flushReplicaSnapshots( $fname = __METHOD__ );
185
194 public function flushPrimarySnapshots( $fname = __METHOD__ );
195
203
210 public function forEachOpenConnection( $callback, array $params = [] );
211
219 public function forEachOpenPrimaryConnection( $callback, array $params = [] );
220
227 public function setLocalDomainPrefix( $prefix );
228
241 public function reconfigure( array $conf );
242}
Internal interface for LoadBalancer methods used by LBFactory.
flushPrimarySnapshots( $fname=__METHOD__)
Commit all primary DB transactions so as to flush any REPEATABLE-READ or SSI snapshots.
beginPrimaryChanges( $fname=__METHOD__)
Flush any primary transaction snapshots and set DBO_TRX (if DBO_DEFAULT is set)
pendingPrimaryChangeCallers()
Get the list of callers that have pending primary changes.
setLocalDomainPrefix( $prefix)
Set a new table prefix for the existing local domain ID for testing.
flushPrimarySessions( $fname=__METHOD__)
Release/destroy session-level named locks, table locks, and temp tables.
reconfigure(array $conf)
Reconfigure using the given config array.
commitPrimaryChanges( $fname=__METHOD__)
Issue COMMIT on all open primary connections to flush changes and view snapshots.
finalizePrimaryChanges( $fname=__METHOD__)
Run pre-commit callbacks and defer execution of post-commit callbacks.
const STAGE_POSTROLLBACK_CALLBACKS
Manager of ILoadBalancer instances is running post-rollback callbacks.
runPrimaryTransactionListenerCallbacks( $fname=__METHOD__)
Run all recurring post-COMMIT/ROLLBACK listener callbacks.
closeAll( $fname=__METHOD__)
Close all open connections.
rollbackPrimaryChanges( $fname=__METHOD__)
Issue ROLLBACK only on primary, only if queries were done on connection.
forEachOpenPrimaryConnection( $callback, array $params=[])
Call a function with each open connection object to a primary.
disable( $fname=__METHOD__)
Close all connections and disable this load balancer.
flushReplicaSnapshots( $fname=__METHOD__)
Commit all replica DB transactions so as to flush any REPEATABLE-READ or SSI snapshots.
commitAll( $fname=__METHOD__)
Commit transactions on all open connections.
const STAGE_POSTCOMMIT_CALLBACKS
Manager of ILoadBalancer instances is running post-commit callbacks.
runPrimaryTransactionIdleCallbacks( $fname=__METHOD__)
Consume and run all pending post-COMMIT/ROLLBACK callbacks and commit dangling transactions.
approvePrimaryChanges(array $options, $fname=__METHOD__)
Perform all pre-commit checks for things like replication safety.
forEachOpenConnection( $callback, array $params=[])
Call a function with each open connection object.
Create and track the database connections and transactions for a given database cluster.