Move ILoadBalancer to Rdbms namespace
[lhc/web/wiklou.git] / includes / libs / rdbms / loadbalancer / ILoadBalancer.php
1 <?php
2 /**
3 * Database load balancing interface
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 * @author Aaron Schulz
23 */
24 namespace Wikimedia\Rdbms;
25
26 use IDatabase;
27 use Database;
28 use DBConnRef;
29 use MaintainableDBConnRef;
30 use DBError;
31 use DBAccessError;
32 use DBMasterPos;
33 use DBTransactionError;
34 use DBExpectedError;
35 use Exception;
36 use InvalidArgumentException;
37
38 /**
39 * Database cluster connection, tracking, load balancing, and transaction manager interface
40 *
41 * A "cluster" is considered to be one master database and zero or more replica databases.
42 * Typically, the replica DBs replicate from the master asynchronously. The first node in the
43 * "servers" configuration array is always considered the "master". However, this class can still
44 * be used when all or some of the "replica" DBs are multi-master peers of the master or even
45 * when all the DBs are non-replicating clones of each other holding read-only data. Thus, the
46 * role of "master" is in some cases merely nominal.
47 *
48 * By default, each DB server uses DBO_DEFAULT for its 'flags' setting, unless explicitly set
49 * otherwise in configuration. DBO_DEFAULT behavior depends on whether 'cliMode' is set:
50 * - In CLI mode, the flag has no effect with regards to LoadBalancer.
51 * - In non-CLI mode, the flag causes implicit transactions to be used; the first query on
52 * a database starts a transaction on that database. The transactions are meant to remain
53 * pending until either commitMasterChanges() or rollbackMasterChanges() is called. The
54 * application must have some point where it calls commitMasterChanges() near the end of
55 * the PHP request.
56 * Every iteration of beginMasterChanges()/commitMasterChanges() is called a "transaction round".
57 * Rounds are useful on the master DB connections because they make single-DB (and by and large
58 * multi-DB) updates in web requests all-or-nothing. Also, transactions on replica DBs are useful
59 * when REPEATABLE-READ or SERIALIZABLE isolation is used because all foriegn keys and constraints
60 * hold across separate queries in the DB transaction since the data appears within a consistent
61 * point-in-time snapshot.
62 *
63 * The typical caller will use LoadBalancer::getConnection( DB_* ) to yield a live database
64 * connection handle. The choice of which DB server to use is based on pre-defined loads for
65 * weighted random selection, adjustments thereof by LoadMonitor, and the amount of replication
66 * lag on each DB server. Lag checks might cause problems in certain setups, so they should be
67 * tuned in the server configuration maps as follows:
68 * - Master + N Replica(s): set 'max lag' to an appropriate threshold for avoiding any database
69 * lagged by this much or more. If all DBs are this lagged, then the load balancer considers
70 * the cluster to be read-only.
71 * - Galera Cluster: Seconds_Behind_Master will be 0, so there probably is nothing to tune.
72 * Note that lag is still possible depending on how wsrep-sync-wait is set server-side.
73 * - Read-only archive clones: set 'is static' in the server configuration maps. This will
74 * treat all such DBs as having 0 lag.
75 * - SQL load balancing proxy: any proxy should handle lag checks on its own, so the 'max lag'
76 * parameter should probably be set to INF in the server configuration maps. This will make
77 * the load balancer ignore whatever it detects as the lag of the logical replica is (which
78 * would probably just randomly bounce around).
79 *
80 * If using a SQL proxy service, it would probably be best to have two proxy hosts for the
81 * load balancer to talk to. One would be the 'host' of the master server entry and another for
82 * the (logical) replica server entry. The proxy could map the load balancer's "replica" DB to
83 * any number of physical replica DBs.
84 *
85 * @since 1.28
86 * @ingroup Database
87 */
88 interface ILoadBalancer {
89 /** @var integer Request a replica DB connection */
90 const DB_REPLICA = -1;
91 /** @var integer Request a master DB connection */
92 const DB_MASTER = -2;
93
94 /** @var string Domain specifier when no specific database needs to be selected */
95 const DOMAIN_ANY = '';
96
97 /**
98 * Construct a manager of IDatabase connection objects
99 *
100 * @param array $params Parameter map with keys:
101 * - servers : Required. Array of server info structures.
102 * - localDomain: A DatabaseDomain or domain ID string.
103 * - loadMonitor : Name of a class used to fetch server lag and load.
104 * - readOnlyReason : Reason the master DB is read-only if so [optional]
105 * - waitTimeout : Maximum time to wait for replicas for consistency [optional]
106 * - srvCache : BagOStuff object for server cache [optional]
107 * - memCache : BagOStuff object for cluster memory cache [optional]
108 * - wanCache : WANObjectCache object [optional]
109 * - hostname : The name of the current server [optional]
110 * - cliMode: Whether the execution context is a CLI script. [optional]
111 * - profiler : Class name or instance with profileIn()/profileOut() methods. [optional]
112 * - trxProfiler: TransactionProfiler instance. [optional]
113 * - replLogger: PSR-3 logger instance. [optional]
114 * - connLogger: PSR-3 logger instance. [optional]
115 * - queryLogger: PSR-3 logger instance. [optional]
116 * - perfLogger: PSR-3 logger instance. [optional]
117 * - errorLogger : Callback that takes an Exception and logs it. [optional]
118 * @throws InvalidArgumentException
119 */
120 public function __construct( array $params );
121
122 /**
123 * Get the index of the reader connection, which may be a replica DB
124 *
125 * This takes into account load ratios and lag times. It should
126 * always return a consistent index during a given invocation.
127 *
128 * Side effect: opens connections to databases
129 * @param string|bool $group Query group, or false for the generic reader
130 * @param string|bool $domain Domain ID, or false for the current domain
131 * @throws DBError
132 * @return bool|int|string
133 */
134 public function getReaderIndex( $group = false, $domain = false );
135
136 /**
137 * Set the master wait position
138 *
139 * If a DB_REPLICA connection has been opened already, then wait immediately.
140 * Otherwise sets a variable telling it to wait if such a connection is opened.
141 *
142 * @param DBMasterPos $pos
143 */
144 public function waitFor( $pos );
145
146 /**
147 * Set the master wait position and wait for a "generic" replica DB to catch up to it
148 *
149 * This can be used a faster proxy for waitForAll()
150 *
151 * @param DBMasterPos $pos
152 * @param int $timeout Max seconds to wait; default is mWaitTimeout
153 * @return bool Success (able to connect and no timeouts reached)
154 */
155 public function waitForOne( $pos, $timeout = null );
156
157 /**
158 * Set the master wait position and wait for ALL replica DBs to catch up to it
159 *
160 * @param DBMasterPos $pos
161 * @param int $timeout Max seconds to wait; default is mWaitTimeout
162 * @return bool Success (able to connect and no timeouts reached)
163 */
164 public function waitForAll( $pos, $timeout = null );
165
166 /**
167 * Get any open connection to a given server index, local or foreign
168 *
169 * @param int $i Server index or DB_MASTER/DB_REPLICA
170 * @return Database|bool False if no such connection is open
171 */
172 public function getAnyOpenConnection( $i );
173
174 /**
175 * Get a connection by index
176 *
177 * @param int $i Server index or DB_MASTER/DB_REPLICA
178 * @param array|string|bool $groups Query group(s), or false for the generic reader
179 * @param string|bool $domain Domain ID, or false for the current domain
180 *
181 * @throws DBError
182 * @return Database
183 */
184 public function getConnection( $i, $groups = [], $domain = false );
185
186 /**
187 * Mark a foreign connection as being available for reuse under a different DB domain
188 *
189 * This mechanism is reference-counted, and must be called the same number of times
190 * as getConnection() to work.
191 *
192 * @param IDatabase $conn
193 * @throws InvalidArgumentException
194 */
195 public function reuseConnection( $conn );
196
197 /**
198 * Get a database connection handle reference
199 *
200 * The handle's methods simply wrap those of a Database handle
201 *
202 * @see ILoadBalancer::getConnection() for parameter information
203 *
204 * @param int $i Server index or DB_MASTER/DB_REPLICA
205 * @param array|string|bool $groups Query group(s), or false for the generic reader
206 * @param string|bool $domain Domain ID, or false for the current domain
207 * @return DBConnRef
208 */
209 public function getConnectionRef( $i, $groups = [], $domain = false );
210
211 /**
212 * Get a database connection handle reference without connecting yet
213 *
214 * The handle's methods simply wrap those of a Database handle
215 *
216 * @see ILoadBalancer::getConnection() for parameter information
217 *
218 * @param int $i Server index or DB_MASTER/DB_REPLICA
219 * @param array|string|bool $groups Query group(s), or false for the generic reader
220 * @param string|bool $domain Domain ID, or false for the current domain
221 * @return DBConnRef
222 */
223 public function getLazyConnectionRef( $i, $groups = [], $domain = false );
224
225 /**
226 * Get a maintenance database connection handle reference for migrations and schema changes
227 *
228 * The handle's methods simply wrap those of a Database handle
229 *
230 * @see ILoadBalancer::getConnection() for parameter information
231 *
232 * @param int $db Server index or DB_MASTER/DB_REPLICA
233 * @param array|string|bool $groups Query group(s), or false for the generic reader
234 * @param string|bool $domain Domain ID, or false for the current domain
235 * @return MaintainableDBConnRef
236 */
237 public function getMaintenanceConnectionRef( $db, $groups = [], $domain = false );
238
239 /**
240 * Open a connection to the server given by the specified index
241 * Index must be an actual index into the array.
242 * If the server is already open, returns it.
243 *
244 * On error, returns false, and the connection which caused the
245 * error will be available via $this->mErrorConnection.
246 *
247 * @note If disable() was called on this LoadBalancer, this method will throw a DBAccessError.
248 *
249 * @param int $i Server index or DB_MASTER/DB_REPLICA
250 * @param string|bool $domain Domain ID, or false for the current domain
251 * @return Database|bool Returns false on errors
252 * @throws DBAccessError
253 */
254 public function openConnection( $i, $domain = false );
255
256 /**
257 * @return int
258 */
259 public function getWriterIndex();
260
261 /**
262 * Returns true if the specified index is a valid server index
263 *
264 * @param string $i
265 * @return bool
266 */
267 public function haveIndex( $i );
268
269 /**
270 * Returns true if the specified index is valid and has non-zero load
271 *
272 * @param string $i
273 * @return bool
274 */
275 public function isNonZeroLoad( $i );
276
277 /**
278 * Get the number of defined servers (not the number of open connections)
279 *
280 * @return int
281 */
282 public function getServerCount();
283
284 /**
285 * Get the host name or IP address of the server with the specified index
286 * Prefer a readable name if available.
287 * @param string $i
288 * @return string
289 */
290 public function getServerName( $i );
291
292 /**
293 * Return the server info structure for a given index, or false if the index is invalid.
294 * @param int $i
295 * @return array|bool
296 */
297 public function getServerInfo( $i );
298
299 /**
300 * Sets the server info structure for the given index. Entry at index $i
301 * is created if it doesn't exist
302 * @param int $i
303 * @param array $serverInfo
304 */
305 public function setServerInfo( $i, array $serverInfo );
306
307 /**
308 * Get the current master position for chronology control purposes
309 * @return DBMasterPos|bool Returns false if not applicable
310 */
311 public function getMasterPos();
312
313 /**
314 * Disable this load balancer. All connections are closed, and any attempt to
315 * open a new connection will result in a DBAccessError.
316 */
317 public function disable();
318
319 /**
320 * Close all open connections
321 */
322 public function closeAll();
323
324 /**
325 * Close a connection
326 *
327 * Using this function makes sure the LoadBalancer knows the connection is closed.
328 * If you use $conn->close() directly, the load balancer won't update its state.
329 *
330 * @param IDatabase $conn
331 */
332 public function closeConnection( IDatabase $conn );
333
334 /**
335 * Commit transactions on all open connections
336 * @param string $fname Caller name
337 * @throws DBExpectedError
338 */
339 public function commitAll( $fname = __METHOD__ );
340
341 /**
342 * Perform all pre-commit callbacks that remain part of the atomic transactions
343 * and disable any post-commit callbacks until runMasterPostTrxCallbacks()
344 *
345 * Use this only for mutli-database commits
346 */
347 public function finalizeMasterChanges();
348
349 /**
350 * Perform all pre-commit checks for things like replication safety
351 *
352 * Use this only for mutli-database commits
353 *
354 * @param array $options Includes:
355 * - maxWriteDuration : max write query duration time in seconds
356 * @throws DBTransactionError
357 */
358 public function approveMasterChanges( array $options );
359
360 /**
361 * Flush any master transaction snapshots and set DBO_TRX (if DBO_DEFAULT is set)
362 *
363 * The DBO_TRX setting will be reverted to the default in each of these methods:
364 * - commitMasterChanges()
365 * - rollbackMasterChanges()
366 * - commitAll()
367 * This allows for custom transaction rounds from any outer transaction scope.
368 *
369 * @param string $fname
370 * @throws DBExpectedError
371 */
372 public function beginMasterChanges( $fname = __METHOD__ );
373
374 /**
375 * Issue COMMIT on all master connections where writes where done
376 * @param string $fname Caller name
377 * @throws DBExpectedError
378 */
379 public function commitMasterChanges( $fname = __METHOD__ );
380
381 /**
382 * Issue all pending post-COMMIT/ROLLBACK callbacks
383 *
384 * Use this only for mutli-database commits
385 *
386 * @param int $type IDatabase::TRIGGER_* constant
387 * @return Exception|null The first exception or null if there were none
388 */
389 public function runMasterPostTrxCallbacks( $type );
390
391 /**
392 * Issue ROLLBACK only on master, only if queries were done on connection
393 * @param string $fname Caller name
394 * @throws DBExpectedError
395 */
396 public function rollbackMasterChanges( $fname = __METHOD__ );
397
398 /**
399 * Suppress all pending post-COMMIT/ROLLBACK callbacks
400 *
401 * Use this only for mutli-database commits
402 *
403 * @return Exception|null The first exception or null if there were none
404 */
405 public function suppressTransactionEndCallbacks();
406
407 /**
408 * Commit all replica DB transactions so as to flush any REPEATABLE-READ or SSI snapshot
409 *
410 * @param string $fname Caller name
411 */
412 public function flushReplicaSnapshots( $fname = __METHOD__ );
413
414 /**
415 * @return bool Whether a master connection is already open
416 */
417 public function hasMasterConnection();
418
419 /**
420 * Determine if there are pending changes in a transaction by this thread
421 * @return bool
422 */
423 public function hasMasterChanges();
424
425 /**
426 * Get the timestamp of the latest write query done by this thread
427 * @return float|bool UNIX timestamp or false
428 */
429 public function lastMasterChangeTimestamp();
430
431 /**
432 * Check if this load balancer object had any recent or still
433 * pending writes issued against it by this PHP thread
434 *
435 * @param float $age How many seconds ago is "recent" [defaults to mWaitTimeout]
436 * @return bool
437 */
438 public function hasOrMadeRecentMasterChanges( $age = null );
439
440 /**
441 * Get the list of callers that have pending master changes
442 *
443 * @return string[] List of method names
444 */
445 public function pendingMasterChangeCallers();
446
447 /**
448 * @note This method will trigger a DB connection if not yet done
449 * @param string|bool $domain Domain ID, or false for the current domain
450 * @return bool Whether the generic connection for reads is highly "lagged"
451 */
452 public function getLaggedReplicaMode( $domain = false );
453
454 /**
455 * @note This method will never cause a new DB connection
456 * @return bool Whether any generic connection used for reads was highly "lagged"
457 */
458 public function laggedReplicaUsed();
459
460 /**
461 * @note This method may trigger a DB connection if not yet done
462 * @param string|bool $domain Domain ID, or false for the current domain
463 * @param IDatabase|null $conn DB master connection; used to avoid loops [optional]
464 * @return string|bool Reason the master is read-only or false if it is not
465 */
466 public function getReadOnlyReason( $domain = false, IDatabase $conn = null );
467
468 /**
469 * Disables/enables lag checks
470 * @param null|bool $mode
471 * @return bool
472 */
473 public function allowLagged( $mode = null );
474
475 /**
476 * @return bool
477 */
478 public function pingAll();
479
480 /**
481 * Call a function with each open connection object
482 * @param callable $callback
483 * @param array $params
484 */
485 public function forEachOpenConnection( $callback, array $params = [] );
486
487 /**
488 * Call a function with each open connection object to a master
489 * @param callable $callback
490 * @param array $params
491 */
492 public function forEachOpenMasterConnection( $callback, array $params = [] );
493
494 /**
495 * Call a function with each open replica DB connection object
496 * @param callable $callback
497 * @param array $params
498 */
499 public function forEachOpenReplicaConnection( $callback, array $params = [] );
500
501 /**
502 * Get the hostname and lag time of the most-lagged replica DB
503 *
504 * This is useful for maintenance scripts that need to throttle their updates.
505 * May attempt to open connections to replica DBs on the default DB. If there is
506 * no lag, the maximum lag will be reported as -1.
507 *
508 * @param bool|string $domain Domain ID, or false for the default database
509 * @return array ( host, max lag, index of max lagged host )
510 */
511 public function getMaxLag( $domain = false );
512
513 /**
514 * Get an estimate of replication lag (in seconds) for each server
515 *
516 * Results are cached for a short time in memcached/process cache
517 *
518 * Values may be "false" if replication is too broken to estimate
519 *
520 * @param string|bool $domain
521 * @return int[] Map of (server index => float|int|bool)
522 */
523 public function getLagTimes( $domain = false );
524
525 /**
526 * Get the lag in seconds for a given connection, or zero if this load
527 * balancer does not have replication enabled.
528 *
529 * This should be used in preference to Database::getLag() in cases where
530 * replication may not be in use, since there is no way to determine if
531 * replication is in use at the connection level without running
532 * potentially restricted queries such as SHOW SLAVE STATUS. Using this
533 * function instead of Database::getLag() avoids a fatal error in this
534 * case on many installations.
535 *
536 * @param IDatabase $conn
537 * @return int|bool Returns false on error
538 */
539 public function safeGetLag( IDatabase $conn );
540
541 /**
542 * Wait for a replica DB to reach a specified master position
543 *
544 * This will connect to the master to get an accurate position if $pos is not given
545 *
546 * @param IDatabase $conn Replica DB
547 * @param DBMasterPos|bool $pos Master position; default: current position
548 * @param int $timeout Timeout in seconds [optional]
549 * @return bool Success
550 */
551 public function safeWaitForMasterPos( IDatabase $conn, $pos = false, $timeout = 10 );
552
553 /**
554 * Set a callback via IDatabase::setTransactionListener() on
555 * all current and future master connections of this load balancer
556 *
557 * @param string $name Callback name
558 * @param callable|null $callback
559 */
560 public function setTransactionListener( $name, callable $callback = null );
561
562 /**
563 * Set a new table prefix for the existing local domain ID for testing
564 *
565 * @param string $prefix
566 */
567 public function setDomainPrefix( $prefix );
568
569 /**
570 * Make certain table names use their own database, schema, and table prefix
571 * when passed into SQL queries pre-escaped and without a qualified database name
572 *
573 * For example, "user" can be converted to "myschema.mydbname.user" for convenience.
574 * Appearances like `user`, somedb.user, somedb.someschema.user will used literally.
575 *
576 * Calling this twice will completely clear any old table aliases. Also, note that
577 * callers are responsible for making sure the schemas and databases actually exist.
578 *
579 * @param array[] $aliases Map of (table => (dbname, schema, prefix) map)
580 */
581 public function setTableAliases( array $aliases );
582 }