Pass options as array to IDatabase::insert
[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, &$casToken = null ) {
238 $casToken = null;
239
240 $blobs = $this->fetchBlobMulti( [ $key ] );
241 if ( array_key_exists( $key, $blobs ) ) {
242 $blob = $blobs[$key];
243 $value = $this->unserialize( $blob );
244
245 $casToken = ( $value !== false ) ? $blob : null;
246
247 return $value;
248 }
249
250 return false;
251 }
252
253 public function getMulti( array $keys, $flags = 0 ) {
254 $values = [];
255
256 $blobs = $this->fetchBlobMulti( $keys );
257 foreach ( $blobs as $key => $blob ) {
258 $values[$key] = $this->unserialize( $blob );
259 }
260
261 return $values;
262 }
263
264 public function fetchBlobMulti( array $keys, $flags = 0 ) {
265 $values = []; // array of (key => value)
266
267 $keysByTable = [];
268 foreach ( $keys as $key ) {
269 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
270 $keysByTable[$serverIndex][$tableName][] = $key;
271 }
272
273 $this->garbageCollect(); // expire old entries if any
274
275 $dataRows = [];
276 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
277 try {
278 $db = $this->getDB( $serverIndex );
279 foreach ( $serverKeys as $tableName => $tableKeys ) {
280 $res = $db->select( $tableName,
281 [ 'keyname', 'value', 'exptime' ],
282 [ 'keyname' => $tableKeys ],
283 __METHOD__,
284 // Approximate write-on-the-fly BagOStuff API via blocking.
285 // This approximation fails if a ROLLBACK happens (which is rare).
286 // We do not want to flush the TRX as that can break callers.
287 $db->trxLevel() ? [ 'LOCK IN SHARE MODE' ] : []
288 );
289 if ( $res === false ) {
290 continue;
291 }
292 foreach ( $res as $row ) {
293 $row->serverIndex = $serverIndex;
294 $row->tableName = $tableName;
295 $dataRows[$row->keyname] = $row;
296 }
297 }
298 } catch ( DBError $e ) {
299 $this->handleReadError( $e, $serverIndex );
300 }
301 }
302
303 foreach ( $keys as $key ) {
304 if ( isset( $dataRows[$key] ) ) { // HIT?
305 $row = $dataRows[$key];
306 $this->debug( "get: retrieved data; expiry time is " . $row->exptime );
307 $db = null;
308 try {
309 $db = $this->getDB( $row->serverIndex );
310 if ( $this->isExpired( $db, $row->exptime ) ) { // MISS
311 $this->debug( "get: key has expired" );
312 } else { // HIT
313 $values[$key] = $db->decodeBlob( $row->value );
314 }
315 } catch ( DBQueryError $e ) {
316 $this->handleWriteError( $e, $db, $row->serverIndex );
317 }
318 } else { // MISS
319 $this->debug( 'get: no matching rows' );
320 }
321 }
322
323 return $values;
324 }
325
326 public function setMulti( array $data, $expiry = 0, $flags = 0 ) {
327 return $this->insertMulti( $data, $expiry, $flags, true );
328 }
329
330 private function insertMulti( array $data, $expiry, $flags, $replace ) {
331 $keysByTable = [];
332 foreach ( $data as $key => $value ) {
333 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
334 $keysByTable[$serverIndex][$tableName][] = $key;
335 }
336
337 $this->garbageCollect(); // expire old entries if any
338
339 $result = true;
340 $exptime = (int)$expiry;
341 $silenceScope = $this->silenceTransactionProfiler();
342 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
343 $db = null;
344 try {
345 $db = $this->getDB( $serverIndex );
346 } catch ( DBError $e ) {
347 $this->handleWriteError( $e, $db, $serverIndex );
348 $result = false;
349 continue;
350 }
351
352 if ( $exptime < 0 ) {
353 $exptime = 0;
354 }
355
356 if ( $exptime == 0 ) {
357 $encExpiry = $this->getMaxDateTime( $db );
358 } else {
359 $exptime = $this->convertToExpiry( $exptime );
360 $encExpiry = $db->timestamp( $exptime );
361 }
362 foreach ( $serverKeys as $tableName => $tableKeys ) {
363 $rows = [];
364 foreach ( $tableKeys as $key ) {
365 $rows[] = [
366 'keyname' => $key,
367 'value' => $db->encodeBlob( $this->serialize( $data[$key] ) ),
368 'exptime' => $encExpiry,
369 ];
370 }
371
372 try {
373 if ( $replace ) {
374 $db->replace( $tableName, [ 'keyname' ], $rows, __METHOD__ );
375 } else {
376 $db->insert( $tableName, $rows, __METHOD__, [ 'IGNORE' ] );
377 $result = ( $db->affectedRows() > 0 && $result );
378 }
379 } catch ( DBError $e ) {
380 $this->handleWriteError( $e, $db, $serverIndex );
381 $result = false;
382 }
383
384 }
385 }
386
387 if ( ( $flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
388 $result = $this->waitForReplication() && $result;
389 }
390
391 return $result;
392 }
393
394 public function set( $key, $value, $exptime = 0, $flags = 0 ) {
395 $ok = $this->setMulti( [ $key => $value ], $exptime );
396
397 return $ok;
398 }
399
400 public function add( $key, $value, $exptime = 0, $flags = 0 ) {
401 $added = $this->insertMulti( [ $key => $value ], $exptime, $flags, false );
402
403 return $added;
404 }
405
406 protected function cas( $casToken, $key, $value, $exptime = 0, $flags = 0 ) {
407 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
408 $db = null;
409 $silenceScope = $this->silenceTransactionProfiler();
410 try {
411 $db = $this->getDB( $serverIndex );
412 $exptime = intval( $exptime );
413
414 if ( $exptime < 0 ) {
415 $exptime = 0;
416 }
417
418 if ( $exptime == 0 ) {
419 $encExpiry = $this->getMaxDateTime( $db );
420 } else {
421 $exptime = $this->convertToExpiry( $exptime );
422 $encExpiry = $db->timestamp( $exptime );
423 }
424 // (T26425) use a replace if the db supports it instead of
425 // delete/insert to avoid clashes with conflicting keynames
426 $db->update(
427 $tableName,
428 [
429 'keyname' => $key,
430 'value' => $db->encodeBlob( $this->serialize( $value ) ),
431 'exptime' => $encExpiry
432 ],
433 [
434 'keyname' => $key,
435 'value' => $db->encodeBlob( $casToken )
436 ],
437 __METHOD__
438 );
439 } catch ( DBQueryError $e ) {
440 $this->handleWriteError( $e, $db, $serverIndex );
441
442 return false;
443 }
444
445 return (bool)$db->affectedRows();
446 }
447
448 public function deleteMulti( array $keys, $flags = 0 ) {
449 $keysByTable = [];
450 foreach ( $keys as $key ) {
451 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
452 $keysByTable[$serverIndex][$tableName][] = $key;
453 }
454
455 $result = true;
456 $silenceScope = $this->silenceTransactionProfiler();
457 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
458 $db = null;
459 try {
460 $db = $this->getDB( $serverIndex );
461 } catch ( DBError $e ) {
462 $this->handleWriteError( $e, $db, $serverIndex );
463 $result = false;
464 continue;
465 }
466
467 foreach ( $serverKeys as $tableName => $tableKeys ) {
468 try {
469 $db->delete( $tableName, [ 'keyname' => $tableKeys ], __METHOD__ );
470 } catch ( DBError $e ) {
471 $this->handleWriteError( $e, $db, $serverIndex );
472 $result = false;
473 }
474
475 }
476 }
477
478 if ( ( $flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
479 $result = $this->waitForReplication() && $result;
480 }
481
482 return $result;
483 }
484
485 public function delete( $key, $flags = 0 ) {
486 $ok = $this->deleteMulti( [ $key ], $flags );
487
488 return $ok;
489 }
490
491 public function incr( $key, $step = 1 ) {
492 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
493 $db = null;
494 $silenceScope = $this->silenceTransactionProfiler();
495 try {
496 $db = $this->getDB( $serverIndex );
497 $step = intval( $step );
498 $row = $db->selectRow(
499 $tableName,
500 [ 'value', 'exptime' ],
501 [ 'keyname' => $key ],
502 __METHOD__,
503 [ 'FOR UPDATE' ]
504 );
505 if ( $row === false ) {
506 // Missing
507 return false;
508 }
509 $db->delete( $tableName, [ 'keyname' => $key ], __METHOD__ );
510 if ( $this->isExpired( $db, $row->exptime ) ) {
511 // Expired, do not reinsert
512 return false;
513 }
514
515 $oldValue = intval( $this->unserialize( $db->decodeBlob( $row->value ) ) );
516 $newValue = $oldValue + $step;
517 $db->insert(
518 $tableName,
519 [
520 'keyname' => $key,
521 'value' => $db->encodeBlob( $this->serialize( $newValue ) ),
522 'exptime' => $row->exptime
523 ],
524 __METHOD__,
525 [ 'IGNORE' ]
526 );
527
528 if ( $db->affectedRows() == 0 ) {
529 // Race condition. See T30611
530 $newValue = false;
531 }
532 } catch ( DBError $e ) {
533 $this->handleWriteError( $e, $db, $serverIndex );
534 return false;
535 }
536
537 return $newValue;
538 }
539
540 public function merge( $key, callable $callback, $exptime = 0, $attempts = 10, $flags = 0 ) {
541 $ok = $this->mergeViaCas( $key, $callback, $exptime, $attempts, $flags );
542 if ( ( $flags & self::WRITE_SYNC ) == self::WRITE_SYNC ) {
543 $ok = $this->waitForReplication() && $ok;
544 }
545
546 return $ok;
547 }
548
549 public function changeTTL( $key, $exptime = 0, $flags = 0 ) {
550 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
551 $db = null;
552 $silenceScope = $this->silenceTransactionProfiler();
553 try {
554 $db = $this->getDB( $serverIndex );
555 if ( $exptime == 0 ) {
556 $timestamp = $this->getMaxDateTime( $db );
557 } else {
558 $timestamp = $db->timestamp( $this->convertToExpiry( $exptime ) );
559 }
560 $db->update(
561 $tableName,
562 [ 'exptime' => $timestamp ],
563 [ 'keyname' => $key, 'exptime > ' . $db->addQuotes( $db->timestamp( time() ) ) ],
564 __METHOD__
565 );
566 if ( $db->affectedRows() == 0 ) {
567 $exists = (bool)$db->selectField(
568 $tableName,
569 1,
570 [ 'keyname' => $key, 'exptime' => $timestamp ],
571 __METHOD__,
572 [ 'FOR UPDATE' ]
573 );
574
575 return $exists;
576 }
577 } catch ( DBError $e ) {
578 $this->handleWriteError( $e, $db, $serverIndex );
579 return false;
580 }
581
582 return true;
583 }
584
585 /**
586 * @param IDatabase $db
587 * @param string $exptime
588 * @return bool
589 */
590 protected function isExpired( $db, $exptime ) {
591 return $exptime != $this->getMaxDateTime( $db ) && wfTimestamp( TS_UNIX, $exptime ) < time();
592 }
593
594 /**
595 * @param IDatabase $db
596 * @return string
597 */
598 protected function getMaxDateTime( $db ) {
599 if ( time() > 0x7fffffff ) {
600 return $db->timestamp( 1 << 62 );
601 } else {
602 return $db->timestamp( 0x7fffffff );
603 }
604 }
605
606 protected function garbageCollect() {
607 if ( !$this->purgePeriod || $this->replicaOnly ) {
608 // Disabled
609 return;
610 }
611 // Only purge on one in every $this->purgePeriod requests.
612 if ( $this->purgePeriod !== 1 && mt_rand( 0, $this->purgePeriod - 1 ) ) {
613 return;
614 }
615 $now = time();
616 // Avoid repeating the delete within a few seconds
617 if ( $now > ( $this->lastExpireAll + 1 ) ) {
618 $this->lastExpireAll = $now;
619 $this->expireAll();
620 }
621 }
622
623 public function expireAll() {
624 $this->deleteObjectsExpiringBefore( wfTimestampNow() );
625 }
626
627 /**
628 * Delete objects from the database which expire before a certain date.
629 * @param string $timestamp
630 * @param bool|callable $progressCallback
631 * @return bool
632 */
633 public function deleteObjectsExpiringBefore( $timestamp, $progressCallback = false ) {
634 $silenceScope = $this->silenceTransactionProfiler();
635 for ( $serverIndex = 0; $serverIndex < $this->numServers; $serverIndex++ ) {
636 $db = null;
637 try {
638 $db = $this->getDB( $serverIndex );
639 $dbTimestamp = $db->timestamp( $timestamp );
640 $totalSeconds = false;
641 $baseConds = [ 'exptime < ' . $db->addQuotes( $dbTimestamp ) ];
642 for ( $i = 0; $i < $this->shards; $i++ ) {
643 $maxExpTime = false;
644 while ( true ) {
645 $conds = $baseConds;
646 if ( $maxExpTime !== false ) {
647 $conds[] = 'exptime >= ' . $db->addQuotes( $maxExpTime );
648 }
649 $rows = $db->select(
650 $this->getTableNameByShard( $i ),
651 [ 'keyname', 'exptime' ],
652 $conds,
653 __METHOD__,
654 [ 'LIMIT' => 100, 'ORDER BY' => 'exptime' ] );
655 if ( $rows === false || !$rows->numRows() ) {
656 break;
657 }
658 $keys = [];
659 $row = $rows->current();
660 $minExpTime = $row->exptime;
661 if ( $totalSeconds === false ) {
662 $totalSeconds = wfTimestamp( TS_UNIX, $timestamp )
663 - wfTimestamp( TS_UNIX, $minExpTime );
664 }
665 foreach ( $rows as $row ) {
666 $keys[] = $row->keyname;
667 $maxExpTime = $row->exptime;
668 }
669
670 $db->delete(
671 $this->getTableNameByShard( $i ),
672 [
673 'exptime >= ' . $db->addQuotes( $minExpTime ),
674 'exptime < ' . $db->addQuotes( $dbTimestamp ),
675 'keyname' => $keys
676 ],
677 __METHOD__ );
678
679 if ( $progressCallback ) {
680 if ( intval( $totalSeconds ) === 0 ) {
681 $percent = 0;
682 } else {
683 $remainingSeconds = wfTimestamp( TS_UNIX, $timestamp )
684 - wfTimestamp( TS_UNIX, $maxExpTime );
685 if ( $remainingSeconds > $totalSeconds ) {
686 $totalSeconds = $remainingSeconds;
687 }
688 $processedSeconds = $totalSeconds - $remainingSeconds;
689 $percent = ( $i + $processedSeconds / $totalSeconds )
690 / $this->shards * 100;
691 }
692 $percent = ( $percent / $this->numServers )
693 + ( $serverIndex / $this->numServers * 100 );
694 call_user_func( $progressCallback, $percent );
695 }
696 }
697 }
698 } catch ( DBError $e ) {
699 $this->handleWriteError( $e, $db, $serverIndex );
700 return false;
701 }
702 }
703 return true;
704 }
705
706 /**
707 * Delete content of shard tables in every server.
708 * Return true if the operation is successful, false otherwise.
709 * @return bool
710 */
711 public function deleteAll() {
712 $silenceScope = $this->silenceTransactionProfiler();
713 for ( $serverIndex = 0; $serverIndex < $this->numServers; $serverIndex++ ) {
714 $db = null;
715 try {
716 $db = $this->getDB( $serverIndex );
717 for ( $i = 0; $i < $this->shards; $i++ ) {
718 $db->delete( $this->getTableNameByShard( $i ), '*', __METHOD__ );
719 }
720 } catch ( DBError $e ) {
721 $this->handleWriteError( $e, $db, $serverIndex );
722 return false;
723 }
724 }
725 return true;
726 }
727
728 /**
729 * Serialize an object and, if possible, compress the representation.
730 * On typical message and page data, this can provide a 3X decrease
731 * in storage requirements.
732 *
733 * @param mixed &$data
734 * @return string
735 */
736 protected function serialize( &$data ) {
737 $serial = serialize( $data );
738
739 if ( function_exists( 'gzdeflate' ) ) {
740 return gzdeflate( $serial );
741 } else {
742 return $serial;
743 }
744 }
745
746 /**
747 * Unserialize and, if necessary, decompress an object.
748 * @param string $serial
749 * @return mixed
750 */
751 protected function unserialize( $serial ) {
752 if ( function_exists( 'gzinflate' ) ) {
753 Wikimedia\suppressWarnings();
754 $decomp = gzinflate( $serial );
755 Wikimedia\restoreWarnings();
756
757 if ( $decomp !== false ) {
758 $serial = $decomp;
759 }
760 }
761
762 $ret = unserialize( $serial );
763
764 return $ret;
765 }
766
767 /**
768 * Handle a DBError which occurred during a read operation.
769 *
770 * @param DBError $exception
771 * @param int $serverIndex
772 */
773 protected function handleReadError( DBError $exception, $serverIndex ) {
774 if ( $exception instanceof DBConnectionError ) {
775 $this->markServerDown( $exception, $serverIndex );
776 }
777
778 $this->setAndLogDBError( $exception );
779 }
780
781 /**
782 * Handle a DBQueryError which occurred during a write operation.
783 *
784 * @param DBError $exception
785 * @param IDatabase|null $db DB handle or null if connection failed
786 * @param int $serverIndex
787 * @throws Exception
788 */
789 protected function handleWriteError( DBError $exception, IDatabase $db = null, $serverIndex ) {
790 if ( !$db ) {
791 $this->markServerDown( $exception, $serverIndex );
792 }
793
794 $this->setAndLogDBError( $exception );
795 }
796
797 /**
798 * @param DBError $exception
799 */
800 private function setAndLogDBError( DBError $exception ) {
801 $this->logger->error( "DBError: {$exception->getMessage()}" );
802 if ( $exception instanceof DBConnectionError ) {
803 $this->setLastError( BagOStuff::ERR_UNREACHABLE );
804 $this->logger->debug( __METHOD__ . ": ignoring connection error" );
805 } else {
806 $this->setLastError( BagOStuff::ERR_UNEXPECTED );
807 $this->logger->debug( __METHOD__ . ": ignoring query error" );
808 }
809 }
810
811 /**
812 * Mark a server down due to a DBConnectionError exception
813 *
814 * @param DBError $exception
815 * @param int $serverIndex
816 */
817 protected function markServerDown( DBError $exception, $serverIndex ) {
818 unset( $this->conns[$serverIndex] ); // bug T103435
819
820 if ( isset( $this->connFailureTimes[$serverIndex] ) ) {
821 if ( time() - $this->connFailureTimes[$serverIndex] >= 60 ) {
822 unset( $this->connFailureTimes[$serverIndex] );
823 unset( $this->connFailureErrors[$serverIndex] );
824 } else {
825 $this->logger->debug( __METHOD__ . ": Server #$serverIndex already down" );
826 return;
827 }
828 }
829 $now = time();
830 $this->logger->info( __METHOD__ . ": Server #$serverIndex down until " . ( $now + 60 ) );
831 $this->connFailureTimes[$serverIndex] = $now;
832 $this->connFailureErrors[$serverIndex] = $exception;
833 }
834
835 /**
836 * Create shard tables. For use from eval.php.
837 */
838 public function createTables() {
839 for ( $serverIndex = 0; $serverIndex < $this->numServers; $serverIndex++ ) {
840 $db = $this->getDB( $serverIndex );
841 if ( $db->getType() !== 'mysql' ) {
842 throw new MWException( __METHOD__ . ' is not supported on this DB server' );
843 }
844
845 for ( $i = 0; $i < $this->shards; $i++ ) {
846 $db->query(
847 'CREATE TABLE ' . $db->tableName( $this->getTableNameByShard( $i ) ) .
848 ' LIKE ' . $db->tableName( 'objectcache' ),
849 __METHOD__ );
850 }
851 }
852 }
853
854 /**
855 * @return bool Whether the main DB is used, e.g. wfGetDB( DB_MASTER )
856 */
857 protected function usesMainDB() {
858 return !$this->serverInfos;
859 }
860
861 protected function waitForReplication() {
862 if ( !$this->usesMainDB() ) {
863 // Custom DB server list; probably doesn't use replication
864 return true;
865 }
866
867 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
868 if ( $lb->getServerCount() <= 1 ) {
869 return true; // no replica DBs
870 }
871
872 // Main LB is used; wait for any replica DBs to catch up
873 try {
874 $masterPos = $lb->getMasterPos();
875 if ( !$masterPos ) {
876 return true; // not applicable
877 }
878
879 $loop = new WaitConditionLoop(
880 function () use ( $lb, $masterPos ) {
881 return $lb->waitForAll( $masterPos, 1 );
882 },
883 $this->syncTimeout,
884 $this->busyCallbacks
885 );
886
887 return ( $loop->invoke() === $loop::CONDITION_REACHED );
888 } catch ( DBError $e ) {
889 $this->setAndLogDBError( $e );
890
891 return false;
892 }
893 }
894
895 /**
896 * Returns a ScopedCallback which resets the silence flag in the transaction profiler when it is
897 * destroyed on the end of a scope, for example on return or throw
898 * @return ScopedCallback
899 * @since 1.32
900 */
901 protected function silenceTransactionProfiler() {
902 $trxProfiler = Profiler::instance()->getTransactionProfiler();
903 $oldSilenced = $trxProfiler->setSilenced( true );
904 return new ScopedCallback( function () use ( $trxProfiler, $oldSilenced ) {
905 $trxProfiler->setSilenced( $oldSilenced );
906 } );
907 }
908 }