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