3 * Generator of database load balancing objects.
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.
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.
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
24 use MediaWiki\Logger\LoggerFactory
;
25 use MediaWiki\MediaWikiServices
;
26 use Wikimedia\Rdbms\DatabaseDomain
;
29 * MediaWiki-specific class for generating database load balancers
32 abstract class MWLBFactory
{
34 * @param array $lbConf Config for LBFactory::__construct()
35 * @param Config $mainConfig Main config object from MediaWikiServices
36 * @param ConfiguredReadOnlyMode $readOnlyMode
39 public static function applyDefaultConfig( array $lbConf, Config
$mainConfig,
40 ConfiguredReadOnlyMode
$readOnlyMode
42 global $wgCommandLineMode;
44 static $typesWithSchema = [ 'postgres', 'msssql' ];
47 'localDomain' => new DatabaseDomain(
48 $mainConfig->get( 'DBname' ),
50 $mainConfig->get( 'DBprefix' )
52 'profiler' => Profiler
::instance(),
53 'trxProfiler' => Profiler
::instance()->getTransactionProfiler(),
54 'replLogger' => LoggerFactory
::getInstance( 'DBReplication' ),
55 'queryLogger' => LoggerFactory
::getInstance( 'DBQuery' ),
56 'connLogger' => LoggerFactory
::getInstance( 'DBConnection' ),
57 'perfLogger' => LoggerFactory
::getInstance( 'DBPerformance' ),
58 'errorLogger' => [ MWExceptionHandler
::class, 'logException' ],
59 'cliMode' => $wgCommandLineMode,
60 'hostname' => wfHostname(),
61 'readOnlyReason' => $readOnlyMode->getReason(),
64 // When making changes here, remember to also specify MediaWiki-specific options
65 // for Database classes in the relevant Installer subclass.
66 // Such as MysqlInstaller::openConnection and PostgresInstaller::openConnectionWithParams.
67 if ( $lbConf['class'] === 'LBFactorySimple' ) {
68 if ( isset( $lbConf['servers'] ) ) {
69 // Server array is already explicitly configured; leave alone
70 } elseif ( is_array( $mainConfig->get( 'DBservers' ) ) ) {
71 foreach ( $mainConfig->get( 'DBservers' ) as $i => $server ) {
72 if ( $server['type'] === 'sqlite' ) {
73 $server +
= [ 'dbDirectory' => $mainConfig->get( 'SQLiteDataDir' ) ];
74 } elseif ( $server['type'] === 'postgres' ) {
76 'port' => $mainConfig->get( 'DBport' ),
77 // Work around the reserved word usage in MediaWiki schema
78 'keywordTableMap' => [ 'user' => 'mwuser', 'text' => 'pagecontent' ]
80 } elseif ( $server['type'] === 'mssql' ) {
82 'port' => $mainConfig->get( 'DBport' ),
83 'useWindowsAuth' => $mainConfig->get( 'DBWindowsAuthentication' )
87 if ( in_array( $server['type'], $typesWithSchema, true ) ) {
88 $server +
= [ 'schema' => $mainConfig->get( 'DBmwschema' ) ];
92 'tablePrefix' => $mainConfig->get( 'DBprefix' ),
93 'flags' => DBO_DEFAULT
,
94 'sqlMode' => $mainConfig->get( 'SQLMode' ),
95 'utf8Mode' => $mainConfig->get( 'DBmysql5' )
98 $lbConf['servers'][$i] = $server;
101 $flags = DBO_DEFAULT
;
102 $flags |
= $mainConfig->get( 'DebugDumpSql' ) ? DBO_DEBUG
: 0;
103 $flags |
= $mainConfig->get( 'DBssl' ) ? DBO_SSL
: 0;
104 $flags |
= $mainConfig->get( 'DBcompress' ) ? DBO_COMPRESS
: 0;
106 'host' => $mainConfig->get( 'DBserver' ),
107 'user' => $mainConfig->get( 'DBuser' ),
108 'password' => $mainConfig->get( 'DBpassword' ),
109 'dbname' => $mainConfig->get( 'DBname' ),
110 'tablePrefix' => $mainConfig->get( 'DBprefix' ),
111 'type' => $mainConfig->get( 'DBtype' ),
114 'sqlMode' => $mainConfig->get( 'SQLMode' ),
115 'utf8Mode' => $mainConfig->get( 'DBmysql5' )
117 if ( in_array( $server['type'], $typesWithSchema, true ) ) {
118 $server +
= [ 'schema' => $mainConfig->get( 'DBmwschema' ) ];
120 if ( $server['type'] === 'sqlite' ) {
121 $server[ 'dbDirectory'] = $mainConfig->get( 'SQLiteDataDir' );
122 } elseif ( $server['type'] === 'postgres' ) {
123 $server['port'] = $mainConfig->get( 'DBport' );
124 // Work around the reserved word usage in MediaWiki schema
125 $server['keywordTableMap'] = [ 'user' => 'mwuser', 'text' => 'pagecontent' ];
126 } elseif ( $server['type'] === 'mssql' ) {
127 $server['port'] = $mainConfig->get( 'DBport' );
128 $server['useWindowsAuth'] = $mainConfig->get( 'DBWindowsAuthentication' );
130 $lbConf['servers'] = [ $server ];
132 if ( !isset( $lbConf['externalClusters'] ) ) {
133 $lbConf['externalClusters'] = $mainConfig->get( 'ExternalServers' );
135 } elseif ( $lbConf['class'] === 'LBFactoryMulti' ) {
136 if ( isset( $lbConf['serverTemplate'] ) ) {
137 if ( in_array( $lbConf['serverTemplate']['type'], $typesWithSchema, true ) ) {
138 $lbConf['serverTemplate']['schema'] = $mainConfig->get( 'DBmwschema' );
140 $lbConf['serverTemplate']['sqlMode'] = $mainConfig->get( 'SQLMode' );
141 $lbConf['serverTemplate']['utf8Mode'] = $mainConfig->get( 'DBmysql5' );
145 // Use APC/memcached style caching, but avoids loops with CACHE_DB (T141804)
146 $sCache = MediaWikiServices
::getInstance()->getLocalServerObjectCache();
147 if ( $sCache->getQoS( $sCache::ATTR_EMULATION
) > $sCache::QOS_EMULATION_SQL
) {
148 $lbConf['srvCache'] = $sCache;
150 $cCache = ObjectCache
::getLocalClusterInstance();
151 if ( $cCache->getQoS( $cCache::ATTR_EMULATION
) > $cCache::QOS_EMULATION_SQL
) {
152 $lbConf['memStash'] = $cCache;
154 $wCache = MediaWikiServices
::getInstance()->getMainWANObjectCache();
155 if ( $wCache->getQoS( $wCache::ATTR_EMULATION
) > $wCache::QOS_EMULATION_SQL
) {
156 $lbConf['wanCache'] = $wCache;
163 * Returns the LBFactory class to use and the load balancer configuration.
165 * @todo instead of this, use a ServiceContainer for managing the different implementations.
167 * @param array $config (e.g. $wgLBFactoryConf)
168 * @return string Class name
170 public static function getLBFactoryClass( array $config ) {
171 // For configuration backward compatibility after removing
172 // underscores from class names in MediaWiki 1.23.
174 'LBFactory_Simple' => 'LBFactorySimple',
175 'LBFactory_Single' => 'LBFactorySingle',
176 'LBFactory_Multi' => 'LBFactoryMulti'
179 $class = $config['class'];
181 if ( isset( $bcClasses[$class] ) ) {
182 $class = $bcClasses[$class];
184 '$wgLBFactoryConf must be updated. See RELEASE-NOTES for details',
189 // For configuration backward compatibility after moving classes to namespaces (1.29)
191 'LBFactorySingle' => Wikimedia\Rdbms\LBFactorySingle
::class,
192 'LBFactorySimple' => Wikimedia\Rdbms\LBFactorySimple
::class,
193 'LBFactoryMulti' => Wikimedia\Rdbms\LBFactoryMulti
::class
196 if ( isset( $compat[$class] ) ) {
197 $class = $compat[$class];