3 * Advanced generator of database load balancing objects for wiki farms
11 * A multi-wiki, multi-master factory for Wikimedia and similar installations.
12 * Ignores the old configuration globals
15 * sectionsByDB A map of database names to section names
17 * sectionLoads A 2-d map. For each section, gives a map of server names to load ratios.
18 * For example: array( 'section1' => array( 'db1' => 100, 'db2' => 100 ) )
20 * serverTemplate A server info associative array as documented for $wgDBservers. The host,
21 * hostName and load entries will be overridden.
23 * groupLoadsBySection A 3-d map giving server load ratios for each section and group. For example:
24 * array( 'section1' => array( 'group1' => array( 'db1' => 100, 'db2' => 100 ) ) )
26 * groupLoadsByDB A 3-d map giving server load ratios by DB name.
28 * hostsByName A map of hostname to IP address.
30 * externalLoads A map of external storage cluster name to server load map
32 * externalTemplateOverrides A set of server info keys overriding serverTemplate for external storage
34 * templateOverridesByServer A 2-d map overriding serverTemplate and externalTemplateOverrides on a
35 * server-by-server basis. Applies to both core and external storage.
37 * templateOverridesByCluster A 2-d map overriding the server info by external storage cluster
39 * masterTemplateOverrides An override array for all master servers.
41 * readOnlyBySection A map of section name to read-only message. Missing or false for read/write.
45 class LBFactory_Multi
extends LBFactory
{
47 var $sectionsByDB, $sectionLoads, $serverTemplate;
49 var $groupLoadsBySection = array(), $groupLoadsByDB = array(), $hostsByName = array();
50 var $externalLoads = array(), $externalTemplateOverrides, $templateOverridesByServer;
51 var $templateOverridesByCluster, $masterTemplateOverrides, $readOnlyBySection = array();
53 var $conf, $mainLBs = array(), $extLBs = array();
54 var $lastWiki, $lastSection;
59 function __construct( $conf ) {
60 $this->chronProt
= new ChronologyProtector
;
62 $required = array( 'sectionsByDB', 'sectionLoads', 'serverTemplate' );
63 $optional = array( 'groupLoadsBySection', 'groupLoadsByDB', 'hostsByName',
64 'externalLoads', 'externalTemplateOverrides', 'templateOverridesByServer',
65 'templateOverridesByCluster', 'masterTemplateOverrides',
66 'readOnlyBySection' );
68 foreach ( $required as $key ) {
69 if ( !isset( $conf[$key] ) ) {
70 throw new MWException( __CLASS__
.": $key is required in configuration" );
72 $this->$key = $conf[$key];
75 foreach ( $optional as $key ) {
76 if ( isset( $conf[$key] ) ) {
77 $this->$key = $conf[$key];
81 // Check for read-only mode
82 $section = $this->getSectionForWiki();
83 if ( !empty( $this->readOnlyBySection
[$section] ) ) {
85 $wgReadOnly = $this->readOnlyBySection
[$section];
90 * @param $wiki bool|string
93 function getSectionForWiki( $wiki = false ) {
94 if ( $this->lastWiki
=== $wiki ) {
95 return $this->lastSection
;
97 list( $dbName, ) = $this->getDBNameAndPrefix( $wiki );
98 if ( isset( $this->sectionsByDB
[$dbName] ) ) {
99 $section = $this->sectionsByDB
[$dbName];
101 $section = 'DEFAULT';
103 $this->lastSection
= $section;
104 $this->lastWiki
= $wiki;
109 * @param $wiki bool|string
110 * @return LoadBalancer
112 function newMainLB( $wiki = false ) {
113 list( $dbName, ) = $this->getDBNameAndPrefix( $wiki );
114 $section = $this->getSectionForWiki( $wiki );
115 $groupLoads = array();
116 if ( isset( $this->groupLoadsByDB
[$dbName] ) ) {
117 $groupLoads = $this->groupLoadsByDB
[$dbName];
119 if ( isset( $this->groupLoadsBySection
[$section] ) ) {
120 $groupLoads = array_merge_recursive( $groupLoads, $this->groupLoadsBySection
[$section] );
122 return $this->newLoadBalancer( $this->serverTemplate
, $this->sectionLoads
[$section], $groupLoads );
126 * @param $wiki bool|string
127 * @return LoadBalancer
129 function getMainLB( $wiki = false ) {
130 $section = $this->getSectionForWiki( $wiki );
131 if ( !isset( $this->mainLBs
[$section] ) ) {
132 $lb = $this->newMainLB( $wiki, $section );
133 $this->chronProt
->initLB( $lb );
134 $lb->parentInfo( array( 'id' => "main-$section" ) );
135 $this->mainLBs
[$section] = $lb;
137 return $this->mainLBs
[$section];
143 * @return LoadBalancer
145 function newExternalLB( $cluster, $wiki = false ) {
146 if ( !isset( $this->externalLoads
[$cluster] ) ) {
147 throw new MWException( __METHOD__
.": Unknown cluster \"$cluster\"" );
149 $template = $this->serverTemplate
;
150 if ( isset( $this->externalTemplateOverrides
) ) {
151 $template = $this->externalTemplateOverrides +
$template;
153 if ( isset( $this->templateOverridesByCluster
[$cluster] ) ) {
154 $template = $this->templateOverridesByCluster
[$cluster] +
$template;
156 return $this->newLoadBalancer( $template, $this->externalLoads
[$cluster], array() );
162 * @return LoadBalancer
164 function &getExternalLB( $cluster, $wiki = false ) {
165 if ( !isset( $this->extLBs
[$cluster] ) ) {
166 $this->extLBs
[$cluster] = $this->newExternalLB( $cluster, $wiki );
167 $this->extLBs
[$cluster]->parentInfo( array( 'id' => "ext-$cluster" ) );
169 return $this->extLBs
[$cluster];
173 * Make a new load balancer object based on template and load array
176 * @param $loads array
178 * @return LoadBalancer
180 function newLoadBalancer( $template, $loads, $groupLoads ) {
181 global $wgMasterWaitTimeout;
182 $servers = $this->makeServerArray( $template, $loads, $groupLoads );
183 $lb = new LoadBalancer( array(
184 'servers' => $servers,
185 'masterWaitTimeout' => $wgMasterWaitTimeout
191 * Make a server array as expected by LoadBalancer::__construct, using a template and load array
194 * @param $loads array
198 function makeServerArray( $template, $loads, $groupLoads ) {
201 $groupLoadsByServer = $this->reindexGroupLoads( $groupLoads );
202 foreach ( $groupLoadsByServer as $server => $stuff ) {
203 if ( !isset( $loads[$server] ) ) {
207 foreach ( $loads as $serverName => $load ) {
208 $serverInfo = $template;
210 $serverInfo['master'] = true;
211 if ( isset( $this->masterTemplateOverrides
) ) {
212 $serverInfo = $this->masterTemplateOverrides +
$serverInfo;
216 if ( isset( $this->templateOverridesByServer
[$serverName] ) ) {
217 $serverInfo = $this->templateOverridesByServer
[$serverName] +
$serverInfo;
219 if ( isset( $groupLoadsByServer[$serverName] ) ) {
220 $serverInfo['groupLoads'] = $groupLoadsByServer[$serverName];
222 if ( isset( $this->hostsByName
[$serverName] ) ) {
223 $serverInfo['host'] = $this->hostsByName
[$serverName];
225 $serverInfo['host'] = $serverName;
227 $serverInfo['hostName'] = $serverName;
228 $serverInfo['load'] = $load;
229 $servers[] = $serverInfo;
235 * Take a group load array indexed by group then server, and reindex it by server then group
239 function reindexGroupLoads( $groupLoads ) {
240 $reindexed = array();
241 foreach ( $groupLoads as $group => $loads ) {
242 foreach ( $loads as $server => $load ) {
243 $reindexed[$server][$group] = $load;
250 * Get the database name and prefix based on the wiki ID
254 function getDBNameAndPrefix( $wiki = false ) {
255 if ( $wiki === false ) {
256 global $wgDBname, $wgDBprefix;
257 return array( $wgDBname, $wgDBprefix );
259 return wfSplitWikiID( $wiki );
264 * Execute a function for each tracked load balancer
265 * The callback is called with the load balancer as the first parameter,
266 * and $params passed as the subsequent parameters.
268 * @param $params array
270 function forEachLB( $callback, $params = array() ) {
271 foreach ( $this->mainLBs
as $lb ) {
272 call_user_func_array( $callback, array_merge( array( $lb ), $params ) );
274 foreach ( $this->extLBs
as $lb ) {
275 call_user_func_array( $callback, array_merge( array( $lb ), $params ) );
279 function shutdown() {
280 foreach ( $this->mainLBs
as $lb ) {
281 $this->chronProt
->shutdownLB( $lb );
283 $this->chronProt
->shutdown();
284 $this->commitMasterChanges();