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