3 * Object caching using a SQL database.
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
25 * Class to store objects in the database
29 class SqlBagOStuff
extends BagOStuff
{
30 protected $serverInfos;
33 protected $serverNames;
36 protected $numServers;
42 protected $lastExpireAll = 0;
45 protected $purgePeriod = 100;
48 protected $shards = 1;
51 protected $tableName = 'objectcache';
53 /** @var array UNIX timestamps */
54 protected $connFailureTimes = array();
56 /** @var array Exceptions */
57 protected $connFailureErrors = array();
60 * Constructor. Parameters are:
61 * - server: A server info structure in the format required by each
62 * element in $wgDBServers.
64 * - servers: An array of server info structures describing a set of
65 * database servers to distribute keys to. If this is
66 * specified, the "server" option will be ignored.
68 * - purgePeriod: The average number of object cache requests in between
69 * garbage collection operations, where expired entries
70 * are removed from the database. Or in other words, the
71 * reciprocal of the probability of purging on any given
72 * request. If this is set to zero, purging will never be
75 * - tableName: The table name to use, default is "objectcache".
77 * - shards: The number of tables to use for data storage on each server.
78 * If this is more than 1, table names will be formed in the style
79 * objectcacheNNN where NNN is the shard index, between 0 and
80 * shards-1. The number of digits will be the minimum number
81 * required to hold the largest shard index. Data will be
82 * distributed across all tables by key hash. This is for
83 * MySQL bugs 61735 and 61736.
85 * @param array $params
87 public function __construct( $params ) {
88 if ( isset( $params['servers'] ) ) {
89 $this->serverInfos
= $params['servers'];
90 $this->numServers
= count( $this->serverInfos
);
91 $this->serverNames
= array();
92 foreach ( $this->serverInfos
as $i => $info ) {
93 $this->serverNames
[$i] = isset( $info['host'] ) ?
$info['host'] : "#$i";
95 } elseif ( isset( $params['server'] ) ) {
96 $this->serverInfos
= array( $params['server'] );
97 $this->numServers
= count( $this->serverInfos
);
99 $this->serverInfos
= false;
100 $this->numServers
= 1;
102 if ( isset( $params['purgePeriod'] ) ) {
103 $this->purgePeriod
= intval( $params['purgePeriod'] );
105 if ( isset( $params['tableName'] ) ) {
106 $this->tableName
= $params['tableName'];
108 if ( isset( $params['shards'] ) ) {
109 $this->shards
= intval( $params['shards'] );
114 * Get a connection to the specified database
116 * @param int $serverIndex
117 * @return DatabaseBase
119 protected function getDB( $serverIndex ) {
120 global $wgDebugDBTransactions;
122 if ( !isset( $this->conns
[$serverIndex] ) ) {
123 if ( $serverIndex >= $this->numServers
) {
124 throw new MWException( __METHOD__
. ": Invalid server index \"$serverIndex\"" );
127 # Don't keep timing out trying to connect for each call if the DB is down
128 if ( isset( $this->connFailureErrors
[$serverIndex] )
129 && ( time() - $this->connFailureTimes
[$serverIndex] ) < 60
131 throw $this->connFailureErrors
[$serverIndex];
134 # If server connection info was given, use that
135 if ( $this->serverInfos
) {
136 if ( $wgDebugDBTransactions ) {
137 wfDebug( "Using provided serverInfo for SqlBagOStuff\n" );
139 $info = $this->serverInfos
[$serverIndex];
140 $type = isset( $info['type'] ) ?
$info['type'] : 'mysql';
141 $host = isset( $info['host'] ) ?
$info['host'] : '[unknown]';
142 wfDebug( __CLASS__
. ": connecting to $host\n" );
143 $db = DatabaseBase
::factory( $type, $info );
144 $db->clearFlag( DBO_TRX
);
146 // We must keep a separate connection to MySQL in order to avoid deadlocks
147 // However, SQLite has an opposite behavior.
148 // @todo get this trick to work on PostgreSQL too
149 if ( wfGetDB( DB_MASTER
)->getType() == 'mysql' ) {
150 $lb = wfGetLBFactory()->newMainLB();
151 $db = $lb->getConnection( DB_MASTER
);
152 $db->clearFlag( DBO_TRX
); // auto-commit mode
154 $db = wfGetDB( DB_MASTER
);
157 if ( $wgDebugDBTransactions ) {
158 wfDebug( sprintf( "Connection %s will be used for SqlBagOStuff\n", $db ) );
160 $this->conns
[$serverIndex] = $db;
163 return $this->conns
[$serverIndex];
167 * Get the server index and table name for a given key
169 * @return array Server index and table name
171 protected function getTableByKey( $key ) {
172 if ( $this->shards
> 1 ) {
173 $hash = hexdec( substr( md5( $key ), 0, 8 ) ) & 0x7fffffff;
174 $tableIndex = $hash %
$this->shards
;
178 if ( $this->numServers
> 1 ) {
179 $sortedServers = $this->serverNames
;
180 ArrayUtils
::consistentHashSort( $sortedServers, $key );
181 reset( $sortedServers );
182 $serverIndex = key( $sortedServers );
186 return array( $serverIndex, $this->getTableNameByShard( $tableIndex ) );
190 * Get the table name for a given shard index
194 protected function getTableNameByShard( $index ) {
195 if ( $this->shards
> 1 ) {
196 $decimals = strlen( $this->shards
- 1 );
197 return $this->tableName
.
198 sprintf( "%0{$decimals}d", $index );
200 return $this->tableName
;
206 * @param mixed $casToken [optional]
209 public function get( $key, &$casToken = null ) {
210 $values = $this->getMulti( array( $key ) );
211 if ( array_key_exists( $key, $values ) ) {
212 $casToken = $values[$key];
213 return $values[$key];
222 public function getMulti( array $keys ) {
223 $values = array(); // array of (key => value)
225 $keysByTable = array();
226 foreach ( $keys as $key ) {
227 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
228 $keysByTable[$serverIndex][$tableName][] = $key;
231 $this->garbageCollect(); // expire old entries if any
234 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
236 $db = $this->getDB( $serverIndex );
237 foreach ( $serverKeys as $tableName => $tableKeys ) {
238 $res = $db->select( $tableName,
239 array( 'keyname', 'value', 'exptime' ),
240 array( 'keyname' => $tableKeys ),
242 // Approximate write-on-the-fly BagOStuff API via blocking.
243 // This approximation fails if a ROLLBACK happens (which is rare).
244 // We do not want to flush the TRX as that can break callers.
245 $db->trxLevel() ?
array( 'LOCK IN SHARE MODE' ) : array()
247 if ( $res === false ) {
250 foreach ( $res as $row ) {
251 $row->serverIndex
= $serverIndex;
252 $row->tableName
= $tableName;
253 $dataRows[$row->keyname
] = $row;
256 } catch ( DBError
$e ) {
257 $this->handleReadError( $e, $serverIndex );
261 foreach ( $keys as $key ) {
262 if ( isset( $dataRows[$key] ) ) { // HIT?
263 $row = $dataRows[$key];
264 $this->debug( "get: retrieved data; expiry time is " . $row->exptime
);
266 $db = $this->getDB( $row->serverIndex
);
267 if ( $this->isExpired( $db, $row->exptime
) ) { // MISS
268 $this->debug( "get: key has expired, deleting" );
269 # Put the expiry time in the WHERE condition to avoid deleting a
270 # newly-inserted value
271 $db->delete( $row->tableName
,
272 array( 'keyname' => $key, 'exptime' => $row->exptime
),
275 $values[$key] = $this->unserialize( $db->decodeBlob( $row->value
) );
277 } catch ( DBQueryError
$e ) {
278 $this->handleWriteError( $e, $row->serverIndex
);
281 $this->debug( 'get: no matching rows' );
293 public function setMulti( array $data, $expiry = 0 ) {
294 $keysByTable = array();
295 foreach ( $data as $key => $value ) {
296 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
297 $keysByTable[$serverIndex][$tableName][] = $key;
300 $this->garbageCollect(); // expire old entries if any
303 $exptime = (int)$expiry;
304 foreach ( $keysByTable as $serverIndex => $serverKeys ) {
306 $db = $this->getDB( $serverIndex );
307 } catch ( DBError
$e ) {
308 $this->handleWriteError( $e, $serverIndex );
313 if ( $exptime < 0 ) {
317 if ( $exptime == 0 ) {
318 $encExpiry = $this->getMaxDateTime( $db );
320 if ( $exptime < 3.16e8
) { # ~10 years
323 $encExpiry = $db->timestamp( $exptime );
325 foreach ( $serverKeys as $tableName => $tableKeys ) {
327 foreach ( $tableKeys as $key ) {
330 'value' => $db->encodeBlob( $this->serialize( $data[$key] ) ),
331 'exptime' => $encExpiry,
342 } catch ( DBError
$e ) {
343 $this->handleWriteError( $e, $serverIndex );
358 * @param mixed $value
359 * @param int $exptime
362 public function set( $key, $value, $exptime = 0 ) {
363 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
365 $db = $this->getDB( $serverIndex );
366 $exptime = intval( $exptime );
368 if ( $exptime < 0 ) {
372 if ( $exptime == 0 ) {
373 $encExpiry = $this->getMaxDateTime( $db );
375 if ( $exptime < 3.16e8
) { # ~10 years
379 $encExpiry = $db->timestamp( $exptime );
381 // (bug 24425) use a replace if the db supports it instead of
382 // delete/insert to avoid clashes with conflicting keynames
388 'value' => $db->encodeBlob( $this->serialize( $value ) ),
389 'exptime' => $encExpiry
391 } catch ( DBError
$e ) {
392 $this->handleWriteError( $e, $serverIndex );
400 * @param mixed $casToken
402 * @param mixed $value
403 * @param int $exptime
406 public function cas( $casToken, $key, $value, $exptime = 0 ) {
407 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
409 $db = $this->getDB( $serverIndex );
410 $exptime = intval( $exptime );
412 if ( $exptime < 0 ) {
416 if ( $exptime == 0 ) {
417 $encExpiry = $this->getMaxDateTime( $db );
419 if ( $exptime < 3.16e8
) { # ~10 years
422 $encExpiry = $db->timestamp( $exptime );
424 // (bug 24425) use a replace if the db supports it instead of
425 // delete/insert to avoid clashes with conflicting keynames
430 'value' => $db->encodeBlob( $this->serialize( $value ) ),
431 'exptime' => $encExpiry
435 'value' => $db->encodeBlob( $this->serialize( $casToken ) )
439 } catch ( DBQueryError
$e ) {
440 $this->handleWriteError( $e, $serverIndex );
445 return (bool)$db->affectedRows();
453 public function delete( $key, $time = 0 ) {
454 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
456 $db = $this->getDB( $serverIndex );
459 array( 'keyname' => $key ),
461 } catch ( DBError
$e ) {
462 $this->handleWriteError( $e, $serverIndex );
474 public function incr( $key, $step = 1 ) {
475 list( $serverIndex, $tableName ) = $this->getTableByKey( $key );
477 $db = $this->getDB( $serverIndex );
478 $step = intval( $step );
479 $row = $db->selectRow(
481 array( 'value', 'exptime' ),
482 array( 'keyname' => $key ),
484 array( 'FOR UPDATE' ) );
485 if ( $row === false ) {
490 $db->delete( $tableName, array( 'keyname' => $key ), __METHOD__
);
491 if ( $this->isExpired( $db, $row->exptime
) ) {
492 // Expired, do not reinsert
497 $oldValue = intval( $this->unserialize( $db->decodeBlob( $row->value
) ) );
498 $newValue = $oldValue +
$step;
499 $db->insert( $tableName,
502 'value' => $db->encodeBlob( $this->serialize( $newValue ) ),
503 'exptime' => $row->exptime
504 ), __METHOD__
, 'IGNORE' );
506 if ( $db->affectedRows() == 0 ) {
507 // Race condition. See bug 28611
510 } catch ( DBError
$e ) {
511 $this->handleWriteError( $e, $serverIndex );
519 * @param string $exptime
522 protected function isExpired( $db, $exptime ) {
523 return $exptime != $this->getMaxDateTime( $db ) && wfTimestamp( TS_UNIX
, $exptime ) < time();
527 * @param DatabaseBase $db
530 protected function getMaxDateTime( $db ) {
531 if ( time() > 0x7fffffff ) {
532 return $db->timestamp( 1 << 62 );
534 return $db->timestamp( 0x7fffffff );
538 protected function garbageCollect() {
539 if ( !$this->purgePeriod
) {
543 // Only purge on one in every $this->purgePeriod requests.
544 if ( $this->purgePeriod
!== 1 && mt_rand( 0, $this->purgePeriod
- 1 ) ) {
548 // Avoid repeating the delete within a few seconds
549 if ( $now > ( $this->lastExpireAll +
1 ) ) {
550 $this->lastExpireAll
= $now;
555 public function expireAll() {
556 $this->deleteObjectsExpiringBefore( wfTimestampNow() );
560 * Delete objects from the database which expire before a certain date.
561 * @param string $timestamp
562 * @param bool|callable $progressCallback
565 public function deleteObjectsExpiringBefore( $timestamp, $progressCallback = false ) {
566 for ( $serverIndex = 0; $serverIndex < $this->numServers
; $serverIndex++
) {
568 $db = $this->getDB( $serverIndex );
569 $dbTimestamp = $db->timestamp( $timestamp );
570 $totalSeconds = false;
571 $baseConds = array( 'exptime < ' . $db->addQuotes( $dbTimestamp ) );
572 for ( $i = 0; $i < $this->shards
; $i++
) {
576 if ( $maxExpTime !== false ) {
577 $conds[] = 'exptime > ' . $db->addQuotes( $maxExpTime );
580 $this->getTableNameByShard( $i ),
581 array( 'keyname', 'exptime' ),
584 array( 'LIMIT' => 100, 'ORDER BY' => 'exptime' ) );
585 if ( $rows === false ||
!$rows->numRows() ) {
589 $row = $rows->current();
590 $minExpTime = $row->exptime
;
591 if ( $totalSeconds === false ) {
592 $totalSeconds = wfTimestamp( TS_UNIX
, $timestamp )
593 - wfTimestamp( TS_UNIX
, $minExpTime );
595 foreach ( $rows as $row ) {
596 $keys[] = $row->keyname
;
597 $maxExpTime = $row->exptime
;
601 $this->getTableNameByShard( $i ),
603 'exptime >= ' . $db->addQuotes( $minExpTime ),
604 'exptime < ' . $db->addQuotes( $dbTimestamp ),
609 if ( $progressCallback ) {
610 if ( intval( $totalSeconds ) === 0 ) {
613 $remainingSeconds = wfTimestamp( TS_UNIX
, $timestamp )
614 - wfTimestamp( TS_UNIX
, $maxExpTime );
615 if ( $remainingSeconds > $totalSeconds ) {
616 $totalSeconds = $remainingSeconds;
618 $percent = ( $i +
$remainingSeconds / $totalSeconds )
619 / $this->shards
* 100;
621 $percent = ( $percent / $this->numServers
)
622 +
( $serverIndex / $this->numServers
* 100 );
623 call_user_func( $progressCallback, $percent );
627 } catch ( DBError
$e ) {
628 $this->handleWriteError( $e, $serverIndex );
635 public function deleteAll() {
636 for ( $serverIndex = 0; $serverIndex < $this->numServers
; $serverIndex++
) {
638 $db = $this->getDB( $serverIndex );
639 for ( $i = 0; $i < $this->shards
; $i++
) {
640 $db->delete( $this->getTableNameByShard( $i ), '*', __METHOD__
);
642 } catch ( DBError
$e ) {
643 $this->handleWriteError( $e, $serverIndex );
651 * Serialize an object and, if possible, compress the representation.
652 * On typical message and page data, this can provide a 3X decrease
653 * in storage requirements.
658 protected function serialize( &$data ) {
659 $serial = serialize( $data );
661 if ( function_exists( 'gzdeflate' ) ) {
662 return gzdeflate( $serial );
669 * Unserialize and, if necessary, decompress an object.
670 * @param string $serial
673 protected function unserialize( $serial ) {
674 if ( function_exists( 'gzinflate' ) ) {
675 wfSuppressWarnings();
676 $decomp = gzinflate( $serial );
679 if ( false !== $decomp ) {
684 $ret = unserialize( $serial );
690 * Handle a DBError which occurred during a read operation.
692 * @param DBError $exception
693 * @param int $serverIndex
695 protected function handleReadError( DBError
$exception, $serverIndex ) {
696 if ( $exception instanceof DBConnectionError
) {
697 $this->markServerDown( $exception, $serverIndex );
699 wfDebugLog( 'SQLBagOStuff', "DBError: {$exception->getMessage()}" );
700 if ( $exception instanceof DBConnectionError
) {
701 $this->setLastError( BagOStuff
::ERR_UNREACHABLE
);
702 wfDebug( __METHOD__
. ": ignoring connection error\n" );
704 $this->setLastError( BagOStuff
::ERR_UNEXPECTED
);
705 wfDebug( __METHOD__
. ": ignoring query error\n" );
710 * Handle a DBQueryError which occurred during a write operation.
712 * @param DBError $exception
713 * @param int $serverIndex
715 protected function handleWriteError( DBError
$exception, $serverIndex ) {
716 if ( $exception instanceof DBConnectionError
) {
717 $this->markServerDown( $exception, $serverIndex );
719 if ( $exception->db
&& $exception->db
->wasReadOnlyError() ) {
721 $exception->db
->rollback( __METHOD__
);
722 } catch ( DBError
$e ) {
725 wfDebugLog( 'SQLBagOStuff', "DBError: {$exception->getMessage()}" );
726 if ( $exception instanceof DBConnectionError
) {
727 $this->setLastError( BagOStuff
::ERR_UNREACHABLE
);
728 wfDebug( __METHOD__
. ": ignoring connection error\n" );
730 $this->setLastError( BagOStuff
::ERR_UNEXPECTED
);
731 wfDebug( __METHOD__
. ": ignoring query error\n" );
736 * Mark a server down due to a DBConnectionError exception
738 * @param DBError $exception
739 * @param int $serverIndex
741 protected function markServerDown( $exception, $serverIndex ) {
742 if ( isset( $this->connFailureTimes
[$serverIndex] ) ) {
743 if ( time() - $this->connFailureTimes
[$serverIndex] >= 60 ) {
744 unset( $this->connFailureTimes
[$serverIndex] );
745 unset( $this->connFailureErrors
[$serverIndex] );
747 wfDebug( __METHOD__
. ": Server #$serverIndex already down\n" );
752 wfDebug( __METHOD__
. ": Server #$serverIndex down until " . ( $now +
60 ) . "\n" );
753 $this->connFailureTimes
[$serverIndex] = $now;
754 $this->connFailureErrors
[$serverIndex] = $exception;
758 * Create shard tables. For use from eval.php.
760 public function createTables() {
761 for ( $serverIndex = 0; $serverIndex < $this->numServers
; $serverIndex++
) {
762 $db = $this->getDB( $serverIndex );
763 if ( $db->getType() !== 'mysql' ) {
764 throw new MWException( __METHOD__
. ' is not supported on this DB server' );
767 for ( $i = 0; $i < $this->shards
; $i++
) {
769 'CREATE TABLE ' . $db->tableName( $this->getTableNameByShard( $i ) ) .
770 ' LIKE ' . $db->tableName( 'objectcache' ),
778 * Backwards compatibility alias
780 class MediaWikiBagOStuff
extends SqlBagOStuff
{