Merge "Do not suppress php notices in SpecialPageFatalTest"
[lhc/web/wiklou.git] / includes / objectcache / SqlBagOStuff.php
1 <?php
2 /**
3 * Object caching using a SQL database.
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 Cache
22 */
23
24 use MediaWiki\MediaWikiServices;
25 use Wikimedia\Rdbms\Database;
26 use Wikimedia\Rdbms\IDatabase;
27 use Wikimedia\Rdbms\DBError;
28 use Wikimedia\Rdbms\DBQueryError;
29 use Wikimedia\Rdbms\DBConnectionError;
30 use Wikimedia\Rdbms\LoadBalancer;
31 use Wikimedia\ScopedCallback;
32 use Wikimedia\WaitConditionLoop;
33
34 /**
35 * Class to store objects in the database
36 *
37 * @ingroup Cache
38 */
39 class SqlBagOStuff extends BagOStuff {
40 /** @var array[] (server index => server config) */
41 protected $serverInfos;
42 /** @var string[] (server index => tag/host name) */
43 protected $serverTags;
44 /** @var int */
45 protected $numServers;
46 /** @var int */
47 protected $lastExpireAll = 0;
48 /** @var int */
49 protected $purgePeriod = 100;
50 /** @var int */
51 protected $shards = 1;
52 /** @var string */
53 protected $tableName = 'objectcache';
54 /** @var bool */
55 protected $replicaOnly = false;
56 /** @var int */
57 protected $syncTimeout = 3;
58
59 /** @var LoadBalancer|null */
60 protected $separateMainLB;
61 /** @var array */
62 protected $conns;
63 /** @var array UNIX timestamps */
64 protected $connFailureTimes = [];
65 /** @var array Exceptions */
66 protected $connFailureErrors = [];
67
68 /**
69 * Constructor. Parameters are:
70 * - server: A server info structure in the format required by each
71 * element in $wgDBServers.
72 *
73 * - servers: An array of server info structures describing a set of database servers
74 * to distribute keys to. If this is specified, the "server" option will be
75 * ignored. If string keys are used, then they will be used for consistent
76 * hashing *instead* of the host name (from the server config). This is useful
77 * when a cluster is replicated to another site (with different host names)
78 * but each server has a corresponding replica in the other cluster.
79 *
80 * - purgePeriod: The average number of object cache requests in between
81 * garbage collection operations, where expired entries
82 * are removed from the database. Or in other words, the
83 * reciprocal of the probability of purging on any given
84 * request. If this is set to zero, purging will never be
85 * done.
86 *
87 * - tableName: The table name to use, default is "objectcache".
88 *
89 * - shards: The number of tables to use for data storage on each server.
90 * If this is more than 1, table names will be formed in the style
91 * objectcacheNNN where NNN is the shard index, between 0 and
92 * shards-1. The number of digits will be the minimum number
93 * required to hold the largest shard index. Data will be
94 * distributed across all tables by key hash. This is for
95 * MySQL bugs 61735 <https://bugs.mysql.com/bug.php?id=61735>
96 * and 61736 <https://bugs.mysql.com/bug.php?id=61736>.
97 *
98 * - slaveOnly: Whether to only use replica DBs and avoid triggering
99 * garbage collection logic of expired items. This only
100 * makes sense if the primary DB is used and only if get()
101 * calls will be used. This is used by ReplicatedBagOStuff.
102 * - syncTimeout: Max seconds to wait for replica DBs to catch up for WRITE_SYNC.
103 *
104 * @param array $params
105 */
106 public function __construct( $params ) {
107 parent::__construct( $params );
108
109 $this->attrMap[self::ATTR_EMULATION] = self::QOS_EMULATION_SQL;
110 $this->attrMap[self::ATTR_SYNCWRITES] = self::QOS_SYNCWRITES_NONE;
111
112 if ( isset( $params['servers'] ) ) {
113 $this->serverInfos = [];
114 $this->serverTags = [];
115 $this->numServers = count( $params['servers'] );
116 $index = 0;
117 foreach ( $params['servers'] as $tag => $info ) {
118 $this->serverInfos[$index] = $info;
119 if ( is_string( $tag ) ) {
120 $this->serverTags[$index] = $tag;
121 } else {
122 $this->serverTags[$index] = $info['host'] ?? "#$index";
123 }
124 ++$index;
125 }
126 } elseif ( isset( $params['server'] ) ) {
127 $this->serverInfos = [ $params['server'] ];
128 $this->numServers = count( $this->serverInfos );
129 } else {
130 // Default to using the main wiki's database servers
131 $this->serverInfos = false;
132 $this->numServers = 1;
133 $this->attrMap[self::ATTR_SYNCWRITES] = self::QOS_SYNCWRITES_BE;
134 }
135 if ( isset( $params['purgePeriod'] ) ) {
136 $this->purgePeriod = intval( $params['purgePeriod'] );
137 }
138 if ( isset( $params['tableName'] ) ) {
139 $this->tableName = $params['tableName'];
140 }
141 if ( isset( $params['shards'] ) ) {
142 $this->shards = intval( $params['shards'] );
143 }
144 if ( isset( $params['syncTimeout'] ) ) {
145 $this->syncTimeout = $params['syncTimeout'];
146 }
147 $this->replicaOnly = !empty( $params['slaveOnly'] );
148 }
149
150 /**
151 * Get a connection to the specified database
152 *
153 * @param int $serverIndex
154 * @return Database
155 * @throws MWException
156 */
157 protected function getDB( $serverIndex ) {
158 if ( !isset( $this->conns[$serverIndex] ) ) {
159 if ( $serverIndex >= $this->numServers ) {
160 throw new MWException( __METHOD__ . ": Invalid server index \"$serverIndex\"" );
161 }
162
163 # Don't keep timing out trying to connect for each call if the DB is down
164 if ( isset( $this->connFailureErrors[$serverIndex] )
165 && ( time() - $this->connFailureTimes[$serverIndex] ) < 60
166 ) {
167 throw $this->connFailureErrors[$serverIndex];
168 }
169
170 if ( $this->serverInfos ) {
171 // Use custom database defined by server connection info
172 $info = $this->serverInfos[$serverIndex];
173 $type = $info['type'] ?? 'mysql';
174 $host = $info['host'] ?? '[unknown]';
175 $this->logger->debug( __CLASS__ . ": connecting to $host" );
176 $db = Database::factory( $type, $info );
177 $db->clearFlag( DBO_TRX ); // auto-commit mode
178 } else {
179 // Use the main LB database
180 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
181 $index = $this->replicaOnly ? DB_REPLICA : DB_MASTER;
182 if ( $lb->getServerType( $lb->getWriterIndex() ) !== 'sqlite' ) {
183 // Keep a separate connection to avoid contention and deadlocks
184 $db = $lb->getConnection( $index, [], false, $lb::CONN_TRX_AUTOCOMMIT );
185 } else {
186 // However, SQLite has the opposite behavior due to DB-level locking.
187 // Stock sqlite MediaWiki installs use a separate sqlite cache DB instead.
188 $db = $lb->getConnection( $index );
189 }
190 }
191
192 $this->logger->debug( sprintf( "Connection %s will be used for SqlBagOStuff", $db ) );
193 $this->conns[$serverIndex] = $db;
194 }
195
196 return $this->conns[$serverIndex];
197 }
198
199 /**
200 * Get the server index and table name for a given key
201 * @param string $key
202 * @return array Server index and table name
203 */
204 protected function getTableByKey( $key ) {
205 if ( $this->shards > 1 ) {
206 $hash = hexdec( substr( md5( $key ), 0, 8 ) ) & 0x7fffffff;
207 $tableIndex = $hash % $this->shards;
208 } else {
209 $tableIndex = 0;
210 }
211 if ( $this->numServers > 1 ) {
212 $sortedServers = $this->serverTags;
213 ArrayUtils::consistentHashSort( $sortedServers, $key );
214 reset( $sortedServers );
215 $serverIndex = key( $sortedServers );
216 } else {
217 $serverIndex = 0;
218 }
219 return [ $serverIndex, $this->getTableNameByShard( $tableIndex ) ];
220 }
221
222 /**
223 * Get the table name for a given shard index
224 * @param int $index
225 * @return string
226 */
227 protected function getTableNameByShard( $index ) {
228 if ( $this->shards > 1 ) {
229 $decimals = strlen( $this->shards - 1 );
230 return $this->tableName .
231 sprintf( "%0{$decimals}d", $index );
232 } else {
233 return $this->tableName;
234 }
235 }
236
237 protected function doGet( $key, $flags = 0 ) {
238 $casToken = null;
239
240 return $this->getWithToken( $key, $casToken, $flags );
241 }
242
243 protected function getWithToken( $key, &$casToken, $flags = 0 ) {
244 $values = $this->getMulti( [ $key ] );
245 if ( array_key_exists( $key, $values ) ) {
246 $casToken = $values[$key];
247 return $values[$key];
248 }
249 return false;
250 }
251
252 public function getMulti( array $keys, $flags = 0 ) {
253 $values = []; // array of (key => value)
254
255 $keysByTable = [];
256 foreach ( $keys as $key ) {
257 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
258 $keysByTable[$serverIndex][$tableName][] = $key;
259 }
260
261 $this->garbageCollect(); // expire old entries if any
262
263 $dataRows = [];
264 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
265 try {
266 $db = $this->getDB( $serverIndex );
267 foreach ( $serverKeys as $tableName => $tableKeys ) {
268 $res = $db->select( $tableName,
269 [ 'keyname', 'value', 'exptime' ],
270 [ 'keyname' => $tableKeys ],
271 __METHOD__,
272 // Approximate write-on-the-fly BagOStuff API via blocking.
273 // This approximation fails if a ROLLBACK happens (which is rare).
274 // We do not want to flush the TRX as that can break callers.
275 $db->trxLevel() ? [ 'LOCK IN SHARE MODE' ] : []
276 );
277 if ( $res === false ) {
278 continue;
279 }
280 foreach ( $res as $row ) {
281 $row->serverIndex = $serverIndex;
282 $row->tableName = $tableName;
283 $dataRows[$row->keyname] = $row;
284 }
285 }
286 } catch ( DBError $e ) {
287 $this->handleReadError( $e, $serverIndex );
288 }
289 }
290
291 foreach ( $keys as $key ) {
292 if ( isset( $dataRows[$key] ) ) { // HIT?
293 $row = $dataRows[$key];
294 $this->debug( "get: retrieved data; expiry time is " . $row->exptime );
295 $db = null;
296 try {
297 $db = $this->getDB( $row->serverIndex );
298 if ( $this->isExpired( $db, $row->exptime ) ) { // MISS
299 $this->debug( "get: key has expired" );
300 } else { // HIT
301 $values[$key] = $this->unserialize( $db->decodeBlob( $row->value ) );
302 }
303 } catch ( DBQueryError $e ) {
304 $this->handleWriteError( $e, $db, $row->serverIndex );
305 }
306 } else { // MISS
307 $this->debug( 'get: no matching rows' );
308 }
309 }
310
311 return $values;
312 }
313
314 public function setMulti( array $data, $expiry = 0, $flags = 0 ) {
315 return $this->insertMulti( $data, $expiry, $flags, true );
316 }
317
318 private function insertMulti( array $data, $expiry, $flags, $replace ) {
319 $keysByTable = [];
320 foreach ( $data as $key => $value ) {
321 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
322 $keysByTable[$serverIndex][$tableName][] = $key;
323 }
324
325 $this->garbageCollect(); // expire old entries if any
326
327 $result = true;
328 $exptime = (int)$expiry;
329 $silenceScope = $this->silenceTransactionProfiler();
330 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
331 $db = null;
332 try {
333 $db = $this->getDB( $serverIndex );
334 } catch ( DBError $e ) {
335 $this->handleWriteError( $e, $db, $serverIndex );
336 $result = false;
337 continue;
338 }
339
340 if ( $exptime < 0 ) {
341 $exptime = 0;
342 }
343
344 if ( $exptime == 0 ) {
345 $encExpiry = $this->getMaxDateTime( $db );
346 } else {
347 $exptime = $this->convertExpiry( $exptime );
348 $encExpiry = $db->timestamp( $exptime );
349 }
350 foreach ( $serverKeys as $tableName => $tableKeys ) {
351 $rows = [];
352 foreach ( $tableKeys as $key ) {
353 $rows[] = [
354 'keyname' => $key,
355 'value' => $db->encodeBlob( $this->serialize( $data[$key] ) ),
356 'exptime' => $encExpiry,
357 ];
358 }
359
360 try {
361 if ( $replace ) {
362 $db->replace( $tableName, [ 'keyname' ], $rows, __METHOD__ );
363 } else {
364 $db->insert( $tableName, $rows, __METHOD__, [ 'IGNORE' ] );
365 $result = ( $db->affectedRows() > 0 && $result );
366 }
367 } catch ( DBError $e ) {
368 $this->handleWriteError( $e, $db, $serverIndex );
369 $result = false;
370 }
371
372 }
373 }
374
375 if ( ( $flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
376 $result = $this->waitForReplication() && $result;
377 }
378
379 return $result;
380 }
381
382 public function set( $key, $value, $exptime = 0, $flags = 0 ) {
383 $ok = $this->setMulti( [ $key => $value ], $exptime );
384
385 return $ok;
386 }
387
388 public function add( $key, $value, $exptime = 0, $flags = 0 ) {
389 $added = $this->insertMulti( [ $key => $value ], $exptime, $flags, false );
390
391 return $added;
392 }
393
394 protected function cas( $casToken, $key, $value, $exptime = 0, $flags = 0 ) {
395 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
396 $db = null;
397 $silenceScope = $this->silenceTransactionProfiler();
398 try {
399 $db = $this->getDB( $serverIndex );
400 $exptime = intval( $exptime );
401
402 if ( $exptime < 0 ) {
403 $exptime = 0;
404 }
405
406 if ( $exptime == 0 ) {
407 $encExpiry = $this->getMaxDateTime( $db );
408 } else {
409 $exptime = $this->convertExpiry( $exptime );
410 $encExpiry = $db->timestamp( $exptime );
411 }
412 // (T26425) use a replace if the db supports it instead of
413 // delete/insert to avoid clashes with conflicting keynames
414 $db->update(
415 $tableName,
416 [
417 'keyname' => $key,
418 'value' => $db->encodeBlob( $this->serialize( $value ) ),
419 'exptime' => $encExpiry
420 ],
421 [
422 'keyname' => $key,
423 'value' => $db->encodeBlob( $this->serialize( $casToken ) )
424 ],
425 __METHOD__
426 );
427 } catch ( DBQueryError $e ) {
428 $this->handleWriteError( $e, $db, $serverIndex );
429
430 return false;
431 }
432
433 return (bool)$db->affectedRows();
434 }
435
436 public function deleteMulti( array $keys, $flags = 0 ) {
437 $keysByTable = [];
438 foreach ( $keys as $key ) {
439 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
440 $keysByTable[$serverIndex][$tableName][] = $key;
441 }
442
443 $result = true;
444 $silenceScope = $this->silenceTransactionProfiler();
445 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
446 $db = null;
447 try {
448 $db = $this->getDB( $serverIndex );
449 } catch ( DBError $e ) {
450 $this->handleWriteError( $e, $db, $serverIndex );
451 $result = false;
452 continue;
453 }
454
455 foreach ( $serverKeys as $tableName => $tableKeys ) {
456 try {
457 $db->delete( $tableName, [ 'keyname' => $tableKeys ], __METHOD__ );
458 } catch ( DBError $e ) {
459 $this->handleWriteError( $e, $db, $serverIndex );
460 $result = false;
461 }
462
463 }
464 }
465
466 if ( ( $flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
467 $result = $this->waitForReplication() && $result;
468 }
469
470 return $result;
471 }
472
473 public function delete( $key, $flags = 0 ) {
474 $ok = $this->deleteMulti( [ $key ], $flags );
475
476 return $ok;
477 }
478
479 public function incr( $key, $step = 1 ) {
480 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
481 $db = null;
482 $silenceScope = $this->silenceTransactionProfiler();
483 try {
484 $db = $this->getDB( $serverIndex );
485 $step = intval( $step );
486 $row = $db->selectRow(
487 $tableName,
488 [ 'value', 'exptime' ],
489 [ 'keyname' => $key ],
490 __METHOD__,
491 [ 'FOR UPDATE' ]
492 );
493 if ( $row === false ) {
494 // Missing
495 return false;
496 }
497 $db->delete( $tableName, [ 'keyname' => $key ], __METHOD__ );
498 if ( $this->isExpired( $db, $row->exptime ) ) {
499 // Expired, do not reinsert
500 return false;
501 }
502
503 $oldValue = intval( $this->unserialize( $db->decodeBlob( $row->value ) ) );
504 $newValue = $oldValue + $step;
505 $db->insert(
506 $tableName,
507 [
508 'keyname' => $key,
509 'value' => $db->encodeBlob( $this->serialize( $newValue ) ),
510 'exptime' => $row->exptime
511 ],
512 __METHOD__,
513 'IGNORE'
514 );
515
516 if ( $db->affectedRows() == 0 ) {
517 // Race condition. See T30611
518 $newValue = false;
519 }
520 } catch ( DBError $e ) {
521 $this->handleWriteError( $e, $db, $serverIndex );
522 return null;
523 }
524
525 return $newValue;
526 }
527
528 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10, $flags = 0 ) {
529 $ok = $this->mergeViaCas( $key, $callback, $exptime, $attempts, $flags );
530 if ( ( $flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
531 $ok = $this->waitForReplication() && $ok;
532 }
533
534 return $ok;
535 }
536
537 public function changeTTL( $key, $expiry = 0, $flags = 0 ) {
538 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
539 $db = null;
540 $silenceScope = $this->silenceTransactionProfiler();
541 try {
542 $db = $this->getDB( $serverIndex );
543 $db->update(
544 $tableName,
545 [ 'exptime' => $db->timestamp( $this->convertExpiry( $expiry ) ) ],
546 [ 'keyname' => $key, 'exptime > ' . $db->addQuotes( $db->timestamp( time() ) ) ],
547 __METHOD__
548 );
549 if ( $db->affectedRows() == 0 ) {
550 return false;
551 }
552 } catch ( DBError $e ) {
553 $this->handleWriteError( $e, $db, $serverIndex );
554 return false;
555 }
556
557 return true;
558 }
559
560 /**
561 * @param IDatabase $db
562 * @param string $exptime
563 * @return bool
564 */
565 protected function isExpired( $db, $exptime ) {
566 return $exptime != $this->getMaxDateTime( $db ) && wfTimestamp( TS_UNIX, $exptime ) < time();
567 }
568
569 /**
570 * @param IDatabase $db
571 * @return string
572 */
573 protected function getMaxDateTime( $db ) {
574 if ( time() > 0x7fffffff ) {
575 return $db->timestamp( 1 << 62 );
576 } else {
577 return $db->timestamp( 0x7fffffff );
578 }
579 }
580
581 protected function garbageCollect() {
582 if ( !$this->purgePeriod || $this->replicaOnly ) {
583 // Disabled
584 return;
585 }
586 // Only purge on one in every $this->purgePeriod requests.
587 if ( $this->purgePeriod !== 1 && mt_rand( 0, $this->purgePeriod - 1 ) ) {
588 return;
589 }
590 $now = time();
591 // Avoid repeating the delete within a few seconds
592 if ( $now > ( $this->lastExpireAll + 1 ) ) {
593 $this->lastExpireAll = $now;
594 $this->expireAll();
595 }
596 }
597
598 public function expireAll() {
599 $this->deleteObjectsExpiringBefore( wfTimestampNow() );
600 }
601
602 /**
603 * Delete objects from the database which expire before a certain date.
604 * @param string $timestamp
605 * @param bool|callable $progressCallback
606 * @return bool
607 */
608 public function deleteObjectsExpiringBefore( $timestamp, $progressCallback = false ) {
609 $silenceScope = $this->silenceTransactionProfiler();
610 for ( $serverIndex = 0; $serverIndex < $this->numServers; $serverIndex++ ) {
611 $db = null;
612 try {
613 $db = $this->getDB( $serverIndex );
614 $dbTimestamp = $db->timestamp( $timestamp );
615 $totalSeconds = false;
616 $baseConds = [ 'exptime < ' . $db->addQuotes( $dbTimestamp ) ];
617 for ( $i = 0; $i < $this->shards; $i++ ) {
618 $maxExpTime = false;
619 while ( true ) {
620 $conds = $baseConds;
621 if ( $maxExpTime !== false ) {
622 $conds[] = 'exptime >= ' . $db->addQuotes( $maxExpTime );
623 }
624 $rows = $db->select(
625 $this->getTableNameByShard( $i ),
626 [ 'keyname', 'exptime' ],
627 $conds,
628 __METHOD__,
629 [ 'LIMIT' => 100, 'ORDER BY' => 'exptime' ] );
630 if ( $rows === false || !$rows->numRows() ) {
631 break;
632 }
633 $keys = [];
634 $row = $rows->current();
635 $minExpTime = $row->exptime;
636 if ( $totalSeconds === false ) {
637 $totalSeconds = wfTimestamp( TS_UNIX, $timestamp )
638 - wfTimestamp( TS_UNIX, $minExpTime );
639 }
640 foreach ( $rows as $row ) {
641 $keys[] = $row->keyname;
642 $maxExpTime = $row->exptime;
643 }
644
645 $db->delete(
646 $this->getTableNameByShard( $i ),
647 [
648 'exptime >= ' . $db->addQuotes( $minExpTime ),
649 'exptime < ' . $db->addQuotes( $dbTimestamp ),
650 'keyname' => $keys
651 ],
652 __METHOD__ );
653
654 if ( $progressCallback ) {
655 if ( intval( $totalSeconds ) === 0 ) {
656 $percent = 0;
657 } else {
658 $remainingSeconds = wfTimestamp( TS_UNIX, $timestamp )
659 - wfTimestamp( TS_UNIX, $maxExpTime );
660 if ( $remainingSeconds > $totalSeconds ) {
661 $totalSeconds = $remainingSeconds;
662 }
663 $processedSeconds = $totalSeconds - $remainingSeconds;
664 $percent = ( $i + $processedSeconds / $totalSeconds )
665 / $this->shards * 100;
666 }
667 $percent = ( $percent / $this->numServers )
668 + ( $serverIndex / $this->numServers * 100 );
669 call_user_func( $progressCallback, $percent );
670 }
671 }
672 }
673 } catch ( DBError $e ) {
674 $this->handleWriteError( $e, $db, $serverIndex );
675 return false;
676 }
677 }
678 return true;
679 }
680
681 /**
682 * Delete content of shard tables in every server.
683 * Return true if the operation is successful, false otherwise.
684 * @return bool
685 */
686 public function deleteAll() {
687 $silenceScope = $this->silenceTransactionProfiler();
688 for ( $serverIndex = 0; $serverIndex < $this->numServers; $serverIndex++ ) {
689 $db = null;
690 try {
691 $db = $this->getDB( $serverIndex );
692 for ( $i = 0; $i < $this->shards; $i++ ) {
693 $db->delete( $this->getTableNameByShard( $i ), '*', __METHOD__ );
694 }
695 } catch ( DBError $e ) {
696 $this->handleWriteError( $e, $db, $serverIndex );
697 return false;
698 }
699 }
700 return true;
701 }
702
703 /**
704 * Serialize an object and, if possible, compress the representation.
705 * On typical message and page data, this can provide a 3X decrease
706 * in storage requirements.
707 *
708 * @param mixed &$data
709 * @return string
710 */
711 protected function serialize( &$data ) {
712 $serial = serialize( $data );
713
714 if ( function_exists( 'gzdeflate' ) ) {
715 return gzdeflate( $serial );
716 } else {
717 return $serial;
718 }
719 }
720
721 /**
722 * Unserialize and, if necessary, decompress an object.
723 * @param string $serial
724 * @return mixed
725 */
726 protected function unserialize( $serial ) {
727 if ( function_exists( 'gzinflate' ) ) {
728 Wikimedia\suppressWarnings();
729 $decomp = gzinflate( $serial );
730 Wikimedia\restoreWarnings();
731
732 if ( $decomp !== false ) {
733 $serial = $decomp;
734 }
735 }
736
737 $ret = unserialize( $serial );
738
739 return $ret;
740 }
741
742 /**
743 * Handle a DBError which occurred during a read operation.
744 *
745 * @param DBError $exception
746 * @param int $serverIndex
747 */
748 protected function handleReadError( DBError $exception, $serverIndex ) {
749 if ( $exception instanceof DBConnectionError ) {
750 $this->markServerDown( $exception, $serverIndex );
751 }
752
753 $this->setAndLogDBError( $exception );
754 }
755
756 /**
757 * Handle a DBQueryError which occurred during a write operation.
758 *
759 * @param DBError $exception
760 * @param IDatabase|null $db DB handle or null if connection failed
761 * @param int $serverIndex
762 * @throws Exception
763 */
764 protected function handleWriteError( DBError $exception, IDatabase $db = null, $serverIndex ) {
765 if ( !$db ) {
766 $this->markServerDown( $exception, $serverIndex );
767 }
768
769 $this->setAndLogDBError( $exception );
770 }
771
772 /**
773 * @param DBError $exception
774 */
775 private function setAndLogDBError( DBError $exception ) {
776 $this->logger->error( "DBError: {$exception->getMessage()}" );
777 if ( $exception instanceof DBConnectionError ) {
778 $this->setLastError( BagOStuff::ERR_UNREACHABLE );
779 $this->logger->debug( __METHOD__ . ": ignoring connection error" );
780 } else {
781 $this->setLastError( BagOStuff::ERR_UNEXPECTED );
782 $this->logger->debug( __METHOD__ . ": ignoring query error" );
783 }
784 }
785
786 /**
787 * Mark a server down due to a DBConnectionError exception
788 *
789 * @param DBError $exception
790 * @param int $serverIndex
791 */
792 protected function markServerDown( DBError $exception, $serverIndex ) {
793 unset( $this->conns[$serverIndex] ); // bug T103435
794
795 if ( isset( $this->connFailureTimes[$serverIndex] ) ) {
796 if ( time() - $this->connFailureTimes[$serverIndex] >= 60 ) {
797 unset( $this->connFailureTimes[$serverIndex] );
798 unset( $this->connFailureErrors[$serverIndex] );
799 } else {
800 $this->logger->debug( __METHOD__ . ": Server #$serverIndex already down" );
801 return;
802 }
803 }
804 $now = time();
805 $this->logger->info( __METHOD__ . ": Server #$serverIndex down until " . ( $now + 60 ) );
806 $this->connFailureTimes[$serverIndex] = $now;
807 $this->connFailureErrors[$serverIndex] = $exception;
808 }
809
810 /**
811 * Create shard tables. For use from eval.php.
812 */
813 public function createTables() {
814 for ( $serverIndex = 0; $serverIndex < $this->numServers; $serverIndex++ ) {
815 $db = $this->getDB( $serverIndex );
816 if ( $db->getType() !== 'mysql' ) {
817 throw new MWException( __METHOD__ . ' is not supported on this DB server' );
818 }
819
820 for ( $i = 0; $i < $this->shards; $i++ ) {
821 $db->query(
822 'CREATE TABLE ' . $db->tableName( $this->getTableNameByShard( $i ) ) .
823 ' LIKE ' . $db->tableName( 'objectcache' ),
824 __METHOD__ );
825 }
826 }
827 }
828
829 /**
830 * @return bool Whether the main DB is used, e.g. wfGetDB( DB_MASTER )
831 */
832 protected function usesMainDB() {
833 return !$this->serverInfos;
834 }
835
836 protected function waitForReplication() {
837 if ( !$this->usesMainDB() ) {
838 // Custom DB server list; probably doesn't use replication
839 return true;
840 }
841
842 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
843 if ( $lb->getServerCount() <= 1 ) {
844 return true; // no replica DBs
845 }
846
847 // Main LB is used; wait for any replica DBs to catch up
848 try {
849 $masterPos = $lb->getMasterPos();
850 if ( !$masterPos ) {
851 return true; // not applicable
852 }
853
854 $loop = new WaitConditionLoop(
855 function () use ( $lb, $masterPos ) {
856 return $lb->waitForAll( $masterPos, 1 );
857 },
858 $this->syncTimeout,
859 $this->busyCallbacks
860 );
861
862 return ( $loop->invoke() === $loop::CONDITION_REACHED );
863 } catch ( DBError $e ) {
864 $this->setAndLogDBError( $e );
865
866 return false;
867 }
868 }
869
870 /**
871 * Returns a ScopedCallback which resets the silence flag in the transaction profiler when it is
872 * destroyed on the end of a scope, for example on return or throw
873 * @return ScopedCallback
874 * @since 1.32
875 */
876 protected function silenceTransactionProfiler() {
877 $trxProfiler = Profiler::instance()->getTransactionProfiler();
878 $oldSilenced = $trxProfiler->setSilenced( true );
879 return new ScopedCallback( function () use ( $trxProfiler, $oldSilenced ) {
880 $trxProfiler->setSilenced( $oldSilenced );
881 } );
882 }
883 }