99 $this->attrMap[self::ATTR_EMULATION] = self::QOS_EMULATION_SQL;
100 $this->attrMap[self::ATTR_SYNCWRITES] = self::QOS_SYNCWRITES_NONE;
102 if ( isset(
$params[
'servers'] ) ) {
103 $this->serverInfos = [];
104 $this->serverTags = [];
105 $this->numServers = count(
$params[
'servers'] );
108 $this->serverInfos[$index] = $info;
109 if ( is_string(
$tag ) ) {
110 $this->serverTags[$index] =
$tag;
112 $this->serverTags[$index] = isset( $info[
'host'] ) ? $info[
'host'] :
"#$index";
116 } elseif ( isset(
$params[
'server'] ) ) {
117 $this->serverInfos = [
$params[
'server'] ];
118 $this->numServers = count( $this->serverInfos );
121 $this->serverInfos =
false;
122 $this->numServers = 1;
123 $this->attrMap[self::ATTR_SYNCWRITES] = self::QOS_SYNCWRITES_BE;
125 if ( isset(
$params[
'purgePeriod'] ) ) {
126 $this->purgePeriod = intval(
$params[
'purgePeriod'] );
128 if ( isset(
$params[
'tableName'] ) ) {
131 if ( isset(
$params[
'shards'] ) ) {
132 $this->shards = intval(
$params[
'shards'] );
134 if ( isset(
$params[
'syncTimeout'] ) ) {
135 $this->syncTimeout =
$params[
'syncTimeout'];
137 $this->replicaOnly = !empty(
$params[
'slaveOnly'] );
143 if ( $wgDBtype ===
'mysql' && $this->
usesMainDB() ) {
144 if ( !$this->separateMainLB ) {
146 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
147 $this->separateMainLB =
$lbFactory->newMainLB();
164 protected function getDB( $serverIndex ) {
165 if ( !isset( $this->conns[$serverIndex] ) ) {
166 if ( $serverIndex >= $this->numServers ) {
167 throw new MWException( __METHOD__ .
": Invalid server index \"$serverIndex\"" );
170 # Don't keep timing out trying to connect for each call if the DB is down
171 if ( isset( $this->connFailureErrors[$serverIndex] )
172 && ( time() - $this->connFailureTimes[$serverIndex] ) < 60
174 throw $this->connFailureErrors[$serverIndex];
177 # If server connection info was given, use that
178 if ( $this->serverInfos ) {
179 $info = $this->serverInfos[$serverIndex];
180 $type = isset( $info[
'type'] ) ? $info[
'type'] :
'mysql';
181 $host = isset( $info[
'host'] ) ? $info[
'host'] :
'[unknown]';
182 $this->logger->debug( __CLASS__ .
": connecting to $host" );
197 $this->logger->debug( sprintf(
"Connection %s will be used for SqlBagOStuff", $db ) );
198 $this->conns[$serverIndex] = $db;
201 return $this->conns[$serverIndex];
210 if ( $this->shards > 1 ) {
211 $hash = hexdec( substr( md5( $key ), 0, 8 ) ) & 0x7fffffff;
216 if ( $this->numServers > 1 ) {
219 reset( $sortedServers );
220 $serverIndex =
key( $sortedServers );
233 if ( $this->shards > 1 ) {
234 $decimals = strlen( $this->shards - 1 );
236 sprintf(
"%0{$decimals}d", $index );
249 $values = $this->
getMulti( [ $key ] );
250 if ( array_key_exists( $key, $values ) ) {
251 $casToken = $values[$key];
252 return $values[$key];
261 foreach ( $keys
as $key ) {
263 $keysByTable[$serverIndex][
$tableName][] = $key;
269 foreach ( $keysByTable
as $serverIndex => $serverKeys ) {
271 $db = $this->
getDB( $serverIndex );
274 [
'keyname',
'value',
'exptime' ],
275 [
'keyname' => $tableKeys ],
280 $db->trxLevel() ? [
'LOCK IN SHARE MODE' ] : []
282 if (
$res ===
false ) {
285 foreach (
$res as $row ) {
286 $row->serverIndex = $serverIndex;
288 $dataRows[$row->keyname] = $row;
296 foreach ( $keys
as $key ) {
297 if ( isset( $dataRows[$key] ) ) {
298 $row = $dataRows[$key];
299 $this->
debug(
"get: retrieved data; expiry time is " . $row->exptime );
302 $db = $this->
getDB( $row->serverIndex );
303 if ( $this->
isExpired( $db, $row->exptime ) ) {
304 $this->
debug(
"get: key has expired" );
306 $values[$key] = $this->
unserialize( $db->decodeBlob( $row->value ) );
312 $this->
debug(
'get: no matching rows' );
321 foreach ( $data
as $key =>
$value ) {
323 $keysByTable[$serverIndex][
$tableName][] = $key;
329 $exptime = (int)$expiry;
330 foreach ( $keysByTable
as $serverIndex => $serverKeys ) {
333 $db = $this->
getDB( $serverIndex );
340 if ( $exptime < 0 ) {
344 if ( $exptime == 0 ) {
348 $encExpiry = $db->timestamp( $exptime );
352 foreach ( $tableKeys
as $key ) {
355 'value' => $db->encodeBlob( $this->
serialize( $data[$key] ) ),
356 'exptime' => $encExpiry,
381 if ( (
$flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
388 protected function cas( $casToken, $key,
$value, $exptime = 0 ) {
392 $db = $this->
getDB( $serverIndex );
393 $exptime = intval( $exptime );
395 if ( $exptime < 0 ) {
399 if ( $exptime == 0 ) {
403 $encExpiry = $db->timestamp( $exptime );
411 'value' => $db->encodeBlob( $this->serialize(
$value ) ),
412 'exptime' => $encExpiry
416 'value' => $db->encodeBlob( $this->serialize( $casToken ) )
426 return (
bool)$db->affectedRows();
429 public function delete( $key ) {
433 $db = $this->
getDB( $serverIndex );
436 [
'keyname' => $key ],
446 public function incr( $key, $step = 1 ) {
450 $db = $this->
getDB( $serverIndex );
451 $step = intval( $step );
452 $row = $db->selectRow(
454 [
'value',
'exptime' ],
455 [
'keyname' => $key ],
458 if ( $row ===
false ) {
463 $db->delete(
$tableName, [
'keyname' => $key ], __METHOD__ );
464 if ( $this->
isExpired( $db, $row->exptime ) ) {
470 $oldValue = intval( $this->
unserialize( $db->decodeBlob( $row->value ) ) );
471 $newValue = $oldValue + $step;
475 'value' => $db->encodeBlob( $this->serialize( $newValue ) ),
476 'exptime' => $row->exptime
477 ], __METHOD__,
'IGNORE' );
479 if ( $db->affectedRows() == 0 ) {
491 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10,
$flags = 0 ) {
492 $ok = $this->
mergeViaCas( $key, $callback, $exptime, $attempts );
493 if ( (
$flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
504 $db = $this->
getDB( $serverIndex );
507 [
'exptime' => $db->timestamp( $this->convertExpiry( $expiry ) ) ],
508 [
'keyname' => $key,
'exptime > ' . $db->addQuotes( $db->timestamp( time() ) ) ],
511 if ( $db->affectedRows() == 0 ) {
536 if ( time() > 0x7fffffff ) {
537 return $db->timestamp( 1 << 62 );
539 return $db->timestamp( 0x7fffffff );
544 if ( !$this->purgePeriod || $this->replicaOnly ) {
549 if ( $this->purgePeriod !== 1 && mt_rand( 0, $this->purgePeriod - 1 ) ) {
554 if ( $now > ( $this->lastExpireAll + 1 ) ) {
555 $this->lastExpireAll = $now;
574 $db = $this->
getDB( $serverIndex );
576 $totalSeconds =
false;
577 $baseConds = [
'exptime < ' . $db->addQuotes( $dbTimestamp ) ];
582 if ( $maxExpTime !==
false ) {
583 $conds[] =
'exptime > ' . $db->addQuotes( $maxExpTime );
587 [
'keyname',
'exptime' ],
590 [
'LIMIT' => 100,
'ORDER BY' =>
'exptime' ] );
591 if ( $rows ===
false || !$rows->numRows() ) {
595 $row = $rows->current();
596 $minExpTime = $row->exptime;
597 if ( $totalSeconds ===
false ) {
601 foreach ( $rows
as $row ) {
602 $keys[] = $row->keyname;
603 $maxExpTime = $row->exptime;
609 'exptime >= ' . $db->addQuotes( $minExpTime ),
610 'exptime < ' . $db->addQuotes( $dbTimestamp ),
615 if ( $progressCallback ) {
616 if ( intval( $totalSeconds ) === 0 ) {
621 if ( $remainingSeconds > $totalSeconds ) {
622 $totalSeconds = $remainingSeconds;
624 $processedSeconds = $totalSeconds - $remainingSeconds;
625 $percent = ( $i + $processedSeconds / $totalSeconds )
626 / $this->shards * 100;
629 + ( $serverIndex / $this->numServers * 100 );
630 call_user_func( $progressCallback, $percent );
651 $db = $this->
getDB( $serverIndex );
674 if ( function_exists(
'gzdeflate' ) ) {
675 return gzdeflate( $serial );
687 if ( function_exists(
'gzinflate' ) ) {
688 MediaWiki\suppressWarnings();
689 $decomp = gzinflate( $serial );
690 MediaWiki\restoreWarnings();
692 if (
false !== $decomp ) {
712 $this->logger->error(
"DBError: {$exception->getMessage()}" );
713 if ( $exception instanceof DBConnectionError ) {
715 $this->logger->debug( __METHOD__ .
": ignoring connection error" );
718 $this->logger->debug( __METHOD__ .
": ignoring query error" );
733 } elseif ( $db->wasReadOnlyError() ) {
734 if ( $db->trxLevel() && $this->
usesMainDB() ) {
742 $this->logger->error(
"DBError: {$exception->getMessage()}" );
745 $this->logger->debug( __METHOD__ .
": ignoring connection error" );
748 $this->logger->debug( __METHOD__ .
": ignoring query error" );
759 unset( $this->conns[$serverIndex] );
761 if ( isset( $this->connFailureTimes[$serverIndex] ) ) {
762 if ( time() - $this->connFailureTimes[$serverIndex] >= 60 ) {
763 unset( $this->connFailureTimes[$serverIndex] );
764 unset( $this->connFailureErrors[$serverIndex] );
766 $this->logger->debug( __METHOD__ .
": Server #$serverIndex already down" );
771 $this->logger->info( __METHOD__ .
": Server #$serverIndex down until " . ( $now + 60 ) );
772 $this->connFailureTimes[$serverIndex] = $now;
773 $this->connFailureErrors[$serverIndex] = $exception;
781 $db = $this->
getDB( $serverIndex );
782 if ( $db->getType() !==
'mysql' ) {
783 throw new MWException( __METHOD__ .
' is not supported on this DB server' );
788 'CREATE TABLE ' . $db->tableName( $this->getTableNameByShard( $i ) ) .
789 ' LIKE ' . $db->tableName(
'objectcache' ),
809 ?: MediaWikiServices::getInstance()->getDBLoadBalancer();
811 if ( $lb->getServerCount() <= 1 ) {
816 $masterPos = $lb->getMasterPos();
818 $loop =
new WaitConditionLoop(
819 function ()
use ( $lb, $masterPos ) {
820 return $lb->waitForAll( $masterPos, 1 );
826 return ( $loop->invoke() === $loop::CONDITION_REACHED );
static consistentHashSort(&$array, $key, $separator="\000")
Sort the given array in a pseudo-random order which depends only on the given key and each element va...
getWithToken($key, &$casToken, $flags=0)
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
Database error base class.
the array() calling protocol came about after MediaWiki 1.4rc1.
static factory($dbType, $p=[])
Construct a Database subclass instance given a database type and parameters.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
array[] $serverInfos
(server index => server config)
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
__construct($params)
Constructor.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
it s the revision text itself In either if gzip is the revision text is gzipped $flags
unserialize($serial)
Unserialize and, if necessary, decompress an object.
cas($casToken, $key, $value, $exptime=0)
when a variable name is used in a it is silently declared as a new local masking the global
handleWriteError(DBError $exception, IDatabase $db=null, $serverIndex)
Handle a DBQueryError which occurred during a write operation.
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for tableName() and addQuotes().You will need both of them.------------------------------------------------------------------------Basic query optimisation------------------------------------------------------------------------MediaWiki developers who need to write DB queries should have some understanding of databases and the performance issues associated with them.Patches containing unacceptably slow features will not be accepted.Unindexed queries are generally not welcome in MediaWiki
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
mergeViaCas($key, $callback, $exptime=0, $attempts=10)
handleReadError(DBError $exception, $serverIndex)
Handle a DBError which occurred during a read operation.
callable[] $busyCallbacks
convertExpiry($exptime)
Convert an optionally relative time to an absolute time.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
string[] $serverTags
(server index => tag/host name)
getMulti(array $keys, $flags=0)
Helper class that detects high-contention DB queries via profiling calls.
markServerDown(DBError $exception, $serverIndex)
Mark a server down due to a DBConnectionError exception.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
getTableByKey($key)
Get the server index and table name for a given key.
createTables()
Create shard tables.
setMulti(array $data, $expiry=0)
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books $tag
set($key, $value, $exptime=0, $flags=0)
deleteAll()
Delete content of shard tables in every server.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
LoadBalancer null $separateMainLB
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
changeTTL($key, $expiry=0)
array $connFailureTimes
UNIX timestamps.
serialize(&$data)
Serialize an object and, if possible, compress the representation.
Class to store objects in the database.
setLastError($err)
Set the "last error" registry.
getTableNameByShard($index)
Get the table name for a given shard index.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
merge($key, callable $callback, $exptime=0, $attempts=10, $flags=0)
array $connFailureErrors
Exceptions.
Basic database interface for live and lazy-loaded relation database handles.
getDB($serverIndex)
Get a connection to the specified database.
deleteObjectsExpiringBefore($timestamp, $progressCallback=false)
Delete objects from the database which expire before a certain date.