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