Move IDatabase/IMaintainableDatabase to Rdbms namespace
[lhc/web/wiklou.git] / includes / libs / rdbms / lbfactory / LBFactoryMulti.php
1 <?php
2 /**
3 * Advanced generator of database load balancing objects for database farms.
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 namespace Wikimedia\Rdbms;
25
26 use InvalidArgumentException;
27
28 /**
29 * A multi-database, multi-master factory for Wikimedia and similar installations.
30 * Ignores the old configuration globals.
31 *
32 * @ingroup Database
33 */
34 class LBFactoryMulti extends LBFactory {
35 /** @var array A map of database names to section names */
36 private $sectionsByDB;
37
38 /**
39 * @var array A 2-d map. For each section, gives a map of server names to
40 * load ratios
41 */
42 private $sectionLoads;
43
44 /**
45 * @var array[] Server info associative array
46 * @note The host, hostName and load entries will be overridden
47 */
48 private $serverTemplate;
49
50 // Optional settings
51
52 /** @var array A 3-d map giving server load ratios for each section and group */
53 private $groupLoadsBySection = [];
54
55 /** @var array A 3-d map giving server load ratios by DB name */
56 private $groupLoadsByDB = [];
57
58 /** @var array A map of hostname to IP address */
59 private $hostsByName = [];
60
61 /** @var array A map of external storage cluster name to server load map */
62 private $externalLoads = [];
63
64 /**
65 * @var array A set of server info keys overriding serverTemplate for
66 * external storage
67 */
68 private $externalTemplateOverrides;
69
70 /**
71 * @var array A 2-d map overriding serverTemplate and
72 * externalTemplateOverrides on a server-by-server basis. Applies to both
73 * core and external storage
74 */
75 private $templateOverridesByServer;
76
77 /** @var array A 2-d map overriding the server info by section */
78 private $templateOverridesBySection;
79
80 /** @var array A 2-d map overriding the server info by external storage cluster */
81 private $templateOverridesByCluster;
82
83 /** @var array An override array for all master servers */
84 private $masterTemplateOverrides;
85
86 /**
87 * @var array|bool A map of section name to read-only message. Missing or
88 * false for read/write
89 */
90 private $readOnlyBySection = [];
91
92 /** @var array Load balancer factory configuration */
93 private $conf;
94
95 /** @var LoadBalancer[] */
96 private $mainLBs = [];
97
98 /** @var LoadBalancer[] */
99 private $extLBs = [];
100
101 /** @var string */
102 private $loadMonitorClass = 'LoadMonitor';
103
104 /** @var string */
105 private $lastDomain;
106
107 /** @var string */
108 private $lastSection;
109
110 /**
111 * @see LBFactory::__construct()
112 *
113 * Template override precedence (highest => lowest):
114 * - templateOverridesByServer
115 * - masterTemplateOverrides
116 * - templateOverridesBySection/templateOverridesByCluster
117 * - externalTemplateOverrides
118 * - serverTemplate
119 * Overrides only work on top level keys (so nested values will not be merged).
120 *
121 * Server configuration maps should be of the format Database::factory() requires.
122 * Additionally, a 'max lag' key should also be set on server maps, indicating how stale the
123 * data can be before the load balancer tries to avoid using it. The map can have 'is static'
124 * set to disable blocking replication sync checks (intended for archive servers with
125 * unchanging data).
126 *
127 * @param array $conf Parameters of LBFactory::__construct() as well as:
128 * - sectionsByDB Map of database names to section names.
129 * - sectionLoads 2-d map. For each section, gives a map of server names to
130 * load ratios. For example:
131 * [
132 * 'section1' => [
133 * 'db1' => 100,
134 * 'db2' => 100
135 * ]
136 * ]
137 * - serverTemplate Server configuration map intended for Database::factory().
138 * Note that "host", "hostName" and "load" entries will be
139 * overridden by "sectionLoads" and "hostsByName".
140 * - groupLoadsBySection 3-d map giving server load ratios for each section/group.
141 * For example:
142 * [
143 * 'section1' => [
144 * 'group1' => [
145 * 'db1' => 100,
146 * 'db2' => 100
147 * ]
148 * ]
149 * ]
150 * - groupLoadsByDB 3-d map giving server load ratios by DB name.
151 * - hostsByName Map of hostname to IP address.
152 * - externalLoads Map of external storage cluster name to server load map.
153 * - externalTemplateOverrides Set of server configuration maps overriding
154 * "serverTemplate" for external storage.
155 * - templateOverridesByServer 2-d map overriding "serverTemplate" and
156 * "externalTemplateOverrides" on a server-by-server basis.
157 * Applies to both core and external storage.
158 * - templateOverridesBySection 2-d map overriding the server configuration maps by section.
159 * - templateOverridesByCluster 2-d map overriding the server configuration maps by external
160 * storage cluster.
161 * - masterTemplateOverrides Server configuration map overrides for all master servers.
162 * - loadMonitorClass Name of the LoadMonitor class to always use.
163 * - readOnlyBySection A map of section name to read-only message.
164 * Missing or false for read/write.
165 */
166 public function __construct( array $conf ) {
167 parent::__construct( $conf );
168
169 $this->conf = $conf;
170 $required = [ 'sectionsByDB', 'sectionLoads', 'serverTemplate' ];
171 $optional = [ 'groupLoadsBySection', 'groupLoadsByDB', 'hostsByName',
172 'externalLoads', 'externalTemplateOverrides', 'templateOverridesByServer',
173 'templateOverridesByCluster', 'templateOverridesBySection', 'masterTemplateOverrides',
174 'readOnlyBySection', 'loadMonitorClass' ];
175
176 foreach ( $required as $key ) {
177 if ( !isset( $conf[$key] ) ) {
178 throw new InvalidArgumentException( __CLASS__ . ": $key is required." );
179 }
180 $this->$key = $conf[$key];
181 }
182
183 foreach ( $optional as $key ) {
184 if ( isset( $conf[$key] ) ) {
185 $this->$key = $conf[$key];
186 }
187 }
188 }
189
190 /**
191 * @param bool|string $domain
192 * @return string
193 */
194 private function getSectionForDomain( $domain = false ) {
195 if ( $this->lastDomain === $domain ) {
196 return $this->lastSection;
197 }
198 list( $dbName, ) = $this->getDBNameAndPrefix( $domain );
199 if ( isset( $this->sectionsByDB[$dbName] ) ) {
200 $section = $this->sectionsByDB[$dbName];
201 } else {
202 $section = 'DEFAULT';
203 }
204 $this->lastSection = $section;
205 $this->lastDomain = $domain;
206
207 return $section;
208 }
209
210 /**
211 * @param bool|string $domain
212 * @return LoadBalancer
213 */
214 public function newMainLB( $domain = false ) {
215 list( $dbName, ) = $this->getDBNameAndPrefix( $domain );
216 $section = $this->getSectionForDomain( $domain );
217 if ( isset( $this->groupLoadsByDB[$dbName] ) ) {
218 $groupLoads = $this->groupLoadsByDB[$dbName];
219 } else {
220 $groupLoads = [];
221 }
222
223 if ( isset( $this->groupLoadsBySection[$section] ) ) {
224 $groupLoads = array_merge_recursive(
225 $groupLoads, $this->groupLoadsBySection[$section] );
226 }
227
228 $readOnlyReason = $this->readOnlyReason;
229 // Use the LB-specific read-only reason if everything isn't already read-only
230 if ( $readOnlyReason === false && isset( $this->readOnlyBySection[$section] ) ) {
231 $readOnlyReason = $this->readOnlyBySection[$section];
232 }
233
234 $template = $this->serverTemplate;
235 if ( isset( $this->templateOverridesBySection[$section] ) ) {
236 $template = $this->templateOverridesBySection[$section] + $template;
237 }
238
239 return $this->newLoadBalancer(
240 $template,
241 $this->sectionLoads[$section],
242 $groupLoads,
243 $readOnlyReason
244 );
245 }
246
247 /**
248 * @param DatabaseDomain|string|bool $domain Domain ID, or false for the current domain
249 * @return LoadBalancer
250 */
251 public function getMainLB( $domain = false ) {
252 $section = $this->getSectionForDomain( $domain );
253 if ( !isset( $this->mainLBs[$section] ) ) {
254 $lb = $this->newMainLB( $domain );
255 $this->getChronologyProtector()->initLB( $lb );
256 $this->mainLBs[$section] = $lb;
257 }
258
259 return $this->mainLBs[$section];
260 }
261
262 public function newExternalLB( $cluster ) {
263 if ( !isset( $this->externalLoads[$cluster] ) ) {
264 throw new InvalidArgumentException( __METHOD__ . ": Unknown cluster \"$cluster\"" );
265 }
266 $template = $this->serverTemplate;
267 if ( $this->externalTemplateOverrides ) {
268 $template = $this->externalTemplateOverrides + $template;
269 }
270 if ( isset( $this->templateOverridesByCluster[$cluster] ) ) {
271 $template = $this->templateOverridesByCluster[$cluster] + $template;
272 }
273
274 return $this->newLoadBalancer(
275 $template,
276 $this->externalLoads[$cluster],
277 [],
278 $this->readOnlyReason
279 );
280 }
281
282 public function getExternalLB( $cluster ) {
283 if ( !isset( $this->extLBs[$cluster] ) ) {
284 $this->extLBs[$cluster] = $this->newExternalLB( $cluster );
285 $this->getChronologyProtector()->initLB( $this->extLBs[$cluster] );
286 }
287
288 return $this->extLBs[$cluster];
289 }
290
291 public function getAllMainLBs() {
292 $lbs = [];
293 foreach ( $this->sectionsByDB as $db => $section ) {
294 if ( !isset( $lbs[$section] ) ) {
295 $lbs[$section] = $this->getMainLB( $db );
296 }
297 }
298
299 return $lbs;
300 }
301
302 public function getAllExternalLBs() {
303 $lbs = [];
304 foreach ( $this->externalLoads as $cluster => $unused ) {
305 $lbs[$cluster] = $this->getExternalLB( $cluster );
306 }
307
308 return $lbs;
309 }
310
311 /**
312 * Make a new load balancer object based on template and load array
313 *
314 * @param array $template
315 * @param array $loads
316 * @param array $groupLoads
317 * @param string|bool $readOnlyReason
318 * @return LoadBalancer
319 */
320 private function newLoadBalancer( $template, $loads, $groupLoads, $readOnlyReason ) {
321 $lb = new LoadBalancer( array_merge(
322 $this->baseLoadBalancerParams(),
323 [
324 'servers' => $this->makeServerArray( $template, $loads, $groupLoads ),
325 'loadMonitor' => [ 'class' => $this->loadMonitorClass ],
326 'readOnlyReason' => $readOnlyReason
327 ]
328 ) );
329 $this->initLoadBalancer( $lb );
330
331 return $lb;
332 }
333
334 /**
335 * Make a server array as expected by LoadBalancer::__construct, using a template and load array
336 *
337 * @param array $template
338 * @param array $loads
339 * @param array $groupLoads
340 * @return array
341 */
342 private function makeServerArray( $template, $loads, $groupLoads ) {
343 $servers = [];
344 $master = true;
345 $groupLoadsByServer = $this->reindexGroupLoads( $groupLoads );
346 foreach ( $groupLoadsByServer as $server => $stuff ) {
347 if ( !isset( $loads[$server] ) ) {
348 $loads[$server] = 0;
349 }
350 }
351 foreach ( $loads as $serverName => $load ) {
352 $serverInfo = $template;
353 if ( $master ) {
354 $serverInfo['master'] = true;
355 if ( $this->masterTemplateOverrides ) {
356 $serverInfo = $this->masterTemplateOverrides + $serverInfo;
357 }
358 $master = false;
359 } else {
360 $serverInfo['replica'] = true;
361 }
362 if ( isset( $this->templateOverridesByServer[$serverName] ) ) {
363 $serverInfo = $this->templateOverridesByServer[$serverName] + $serverInfo;
364 }
365 if ( isset( $groupLoadsByServer[$serverName] ) ) {
366 $serverInfo['groupLoads'] = $groupLoadsByServer[$serverName];
367 }
368 if ( isset( $this->hostsByName[$serverName] ) ) {
369 $serverInfo['host'] = $this->hostsByName[$serverName];
370 } else {
371 $serverInfo['host'] = $serverName;
372 }
373 $serverInfo['hostName'] = $serverName;
374 $serverInfo['load'] = $load;
375 $serverInfo += [ 'flags' => IDatabase::DBO_DEFAULT ];
376
377 $servers[] = $serverInfo;
378 }
379
380 return $servers;
381 }
382
383 /**
384 * Take a group load array indexed by group then server, and reindex it by server then group
385 * @param array $groupLoads
386 * @return array
387 */
388 private function reindexGroupLoads( $groupLoads ) {
389 $reindexed = [];
390 foreach ( $groupLoads as $group => $loads ) {
391 foreach ( $loads as $server => $load ) {
392 $reindexed[$server][$group] = $load;
393 }
394 }
395
396 return $reindexed;
397 }
398
399 /**
400 * @param DatabaseDomain|string|bool $domain Domain ID, or false for the current domain
401 * @return array [database name, table prefix]
402 */
403 private function getDBNameAndPrefix( $domain = false ) {
404 $domain = ( $domain === false )
405 ? $this->localDomain
406 : DatabaseDomain::newFromId( $domain );
407
408 return [ $domain->getDatabase(), $domain->getTablePrefix() ];
409 }
410
411 /**
412 * Execute a function for each tracked load balancer
413 * The callback is called with the load balancer as the first parameter,
414 * and $params passed as the subsequent parameters.
415 * @param callable $callback
416 * @param array $params
417 */
418 public function forEachLB( $callback, array $params = [] ) {
419 foreach ( $this->mainLBs as $lb ) {
420 call_user_func_array( $callback, array_merge( [ $lb ], $params ) );
421 }
422 foreach ( $this->extLBs as $lb ) {
423 call_user_func_array( $callback, array_merge( [ $lb ], $params ) );
424 }
425 }
426 }