* Added a script to reduce disk space on a MySQL parser cache setup such as the one...
[lhc/web/wiklou.git] / includes / objectcache / SqlBagOStuff.php
1 <?php
2
3 /**
4 * Class to store objects in the database
5 *
6 * @ingroup Cache
7 */
8 class SqlBagOStuff extends BagOStuff {
9
10 /**
11 * @var LoadBalancer
12 */
13 var $lb;
14
15 /**
16 * @var DatabaseBase
17 */
18 var $db;
19 var $serverInfo;
20 var $lastExpireAll = 0;
21 var $purgePeriod = 100;
22 var $shards = 1;
23 var $tableName = 'objectcache';
24
25 /**
26 * Constructor. Parameters are:
27 * - server: A server info structure in the format required by each
28 * element in $wgDBServers.
29 *
30 * - purgePeriod: The average number of object cache requests in between
31 * garbage collection operations, where expired entries
32 * are removed from the database. Or in other words, the
33 * reciprocal of the probability of purging on any given
34 * request. If this is set to zero, purging will never be
35 * done.
36 *
37 * - tableName: The table name to use, default is "objectcache".
38 *
39 * - shards: The number of tables to use for data storage. If this is
40 * more than 1, table names will be formed in the style
41 * objectcacheNNN where NNN is the shard index, between 0 and
42 * shards-1. The number of digits will be the minimum number
43 * required to hold the largest shard index. Data will be
44 * distributed across all tables by key hash. This is for
45 * MySQL bugs 61735 and 61736.
46 *
47 * @param $params array
48 */
49 public function __construct( $params ) {
50 if ( isset( $params['server'] ) ) {
51 $this->serverInfo = $params['server'];
52 $this->serverInfo['load'] = 1;
53 }
54 if ( isset( $params['purgePeriod'] ) ) {
55 $this->purgePeriod = intval( $params['purgePeriod'] );
56 }
57 if ( isset( $params['tableName'] ) ) {
58 $this->tableName = $params['tableName'];
59 }
60 if ( isset( $params['shards'] ) ) {
61 $this->shards = intval( $params['shards'] );
62 }
63 }
64
65 /**
66 * @return DatabaseBase
67 */
68 protected function getDB() {
69 if ( !isset( $this->db ) ) {
70 # If server connection info was given, use that
71 if ( $this->serverInfo ) {
72 $this->lb = new LoadBalancer( array(
73 'servers' => array( $this->serverInfo ) ) );
74 $this->db = $this->lb->getConnection( DB_MASTER );
75 $this->db->clearFlag( DBO_TRX );
76 } else {
77 # We must keep a separate connection to MySQL in order to avoid deadlocks
78 # However, SQLite has an opposite behaviour.
79 # @todo Investigate behaviour for other databases
80 if ( wfGetDB( DB_MASTER )->getType() == 'sqlite' ) {
81 $this->db = wfGetDB( DB_MASTER );
82 } else {
83 $this->lb = wfGetLBFactory()->newMainLB();
84 $this->db = $this->lb->getConnection( DB_MASTER );
85 $this->db->clearFlag( DBO_TRX );
86 }
87 }
88 }
89
90 return $this->db;
91 }
92
93 /**
94 * Get the table name for a given key
95 */
96 protected function getTableByKey( $key ) {
97 if ( $this->shards > 1 ) {
98 $hash = hexdec( substr( md5( $key ), 0, 8 ) ) & 0x7fffffff;
99 return $this->getTableByShard( $hash % $this->shards );
100 } else {
101 return $this->tableName;
102 }
103 }
104
105 /**
106 * Get the table name for a given shard index
107 */
108 protected function getTableByShard( $index ) {
109 if ( $this->shards > 1 ) {
110 $decimals = strlen( $this->shards - 1 );
111 return $this->tableName .
112 sprintf( "%0{$decimals}d", $index );
113 } else {
114 return $this->tableName;
115 }
116 }
117
118 public function get( $key ) {
119 # expire old entries if any
120 $this->garbageCollect();
121 $db = $this->getDB();
122 $tableName = $this->getTableByKey( $key );
123 $row = $db->selectRow( $tableName, array( 'value', 'exptime' ),
124 array( 'keyname' => $key ), __METHOD__ );
125
126 if ( !$row ) {
127 $this->debug( 'get: no matching rows' );
128 return false;
129 }
130
131 $this->debug( "get: retrieved data; expiry time is " . $row->exptime );
132
133 if ( $this->isExpired( $row->exptime ) ) {
134 $this->debug( "get: key has expired, deleting" );
135 try {
136 $db->begin();
137 # Put the expiry time in the WHERE condition to avoid deleting a
138 # newly-inserted value
139 $db->delete( $tableName,
140 array(
141 'keyname' => $key,
142 'exptime' => $row->exptime
143 ), __METHOD__ );
144 $db->commit();
145 } catch ( DBQueryError $e ) {
146 $this->handleWriteError( $e );
147 }
148
149 return false;
150 }
151
152 return $this->unserialize( $db->decodeBlob( $row->value ) );
153 }
154
155 public function set( $key, $value, $exptime = 0 ) {
156 $db = $this->getDB();
157 $exptime = intval( $exptime );
158
159 if ( $exptime < 0 ) {
160 $exptime = 0;
161 }
162
163 if ( $exptime == 0 ) {
164 $encExpiry = $this->getMaxDateTime();
165 } else {
166 if ( $exptime < 3.16e8 ) { # ~10 years
167 $exptime += time();
168 }
169
170 $encExpiry = $db->timestamp( $exptime );
171 }
172 try {
173 $db->begin();
174 // (bug 24425) use a replace if the db supports it instead of
175 // delete/insert to avoid clashes with conflicting keynames
176 $db->replace(
177 $this->getTableByKey( $key ),
178 array( 'keyname' ),
179 array(
180 'keyname' => $key,
181 'value' => $db->encodeBlob( $this->serialize( $value ) ),
182 'exptime' => $encExpiry
183 ), __METHOD__ );
184 $db->commit();
185 } catch ( DBQueryError $e ) {
186 $this->handleWriteError( $e );
187
188 return false;
189 }
190
191 return true;
192 }
193
194 public function delete( $key, $time = 0 ) {
195 $db = $this->getDB();
196
197 try {
198 $db->begin();
199 $db->delete(
200 $this->getTableByKey( $key ),
201 array( 'keyname' => $key ),
202 __METHOD__ );
203 $db->commit();
204 } catch ( DBQueryError $e ) {
205 $this->handleWriteError( $e );
206
207 return false;
208 }
209
210 return true;
211 }
212
213 public function incr( $key, $step = 1 ) {
214 $db = $this->getDB();
215 $tableName = $this->getTableByKey( $key );
216 $step = intval( $step );
217
218 try {
219 $db->begin();
220 $row = $db->selectRow(
221 $tableName,
222 array( 'value', 'exptime' ),
223 array( 'keyname' => $key ),
224 __METHOD__,
225 array( 'FOR UPDATE' ) );
226 if ( $row === false ) {
227 // Missing
228 $db->commit();
229
230 return null;
231 }
232 $db->delete( $tableName, array( 'keyname' => $key ), __METHOD__ );
233 if ( $this->isExpired( $row->exptime ) ) {
234 // Expired, do not reinsert
235 $db->commit();
236
237 return null;
238 }
239
240 $oldValue = intval( $this->unserialize( $db->decodeBlob( $row->value ) ) );
241 $newValue = $oldValue + $step;
242 $db->insert( $tableName,
243 array(
244 'keyname' => $key,
245 'value' => $db->encodeBlob( $this->serialize( $newValue ) ),
246 'exptime' => $row->exptime
247 ), __METHOD__, 'IGNORE' );
248
249 if ( $db->affectedRows() == 0 ) {
250 // Race condition. See bug 28611
251 $newValue = null;
252 }
253 $db->commit();
254 } catch ( DBQueryError $e ) {
255 $this->handleWriteError( $e );
256
257 return null;
258 }
259
260 return $newValue;
261 }
262
263 public function keys() {
264 $db = $this->getDB();
265 $result = array();
266
267 for ( $i = 0; $i < $this->shards; $i++ ) {
268 $res = $db->select( $this->getTableByShard( $i ),
269 array( 'keyname' ), false, __METHOD__ );
270 foreach ( $res as $row ) {
271 $result[] = $row->keyname;
272 }
273 }
274
275 return $result;
276 }
277
278 protected function isExpired( $exptime ) {
279 return $exptime != $this->getMaxDateTime() && wfTimestamp( TS_UNIX, $exptime ) < time();
280 }
281
282 protected function getMaxDateTime() {
283 if ( time() > 0x7fffffff ) {
284 return $this->getDB()->timestamp( 1 << 62 );
285 } else {
286 return $this->getDB()->timestamp( 0x7fffffff );
287 }
288 }
289
290 protected function garbageCollect() {
291 if ( !$this->purgePeriod ) {
292 // Disabled
293 return;
294 }
295 // Only purge on one in every $this->purgePeriod requests.
296 if ( $this->purgePeriod !== 1 && mt_rand( 0, $this->purgePeriod - 1 ) ) {
297 return;
298 }
299 $now = time();
300 // Avoid repeating the delete within a few seconds
301 if ( $now > ( $this->lastExpireAll + 1 ) ) {
302 $this->lastExpireAll = $now;
303 $this->expireAll();
304 }
305 }
306
307 public function expireAll() {
308 $this->deleteObjectsExpiringBefore( wfTimestampNow() );
309 }
310
311 /**
312 * Delete objects from the database which expire before a certain date.
313 */
314 public function deleteObjectsExpiringBefore( $timestamp ) {
315 $db = $this->getDB();
316 $dbTimestamp = $db->timestamp( $timestamp );
317
318 try {
319 for ( $i = 0; $i < $this->shards; $i++ ) {
320 $db->begin();
321 $db->delete(
322 $this->getTableByShard( $i ),
323 array( 'exptime < ' . $db->addQuotes( $dbTimestamp ) ),
324 __METHOD__ );
325 $db->commit();
326 }
327 } catch ( DBQueryError $e ) {
328 $this->handleWriteError( $e );
329 }
330 return true;
331 }
332
333 public function deleteAll() {
334 $db = $this->getDB();
335
336 try {
337 for ( $i = 0; $i < $this->shards; $i++ ) {
338 $db->begin();
339 $db->delete( $this->getTableByShard( $i ), '*', __METHOD__ );
340 $db->commit();
341 }
342 } catch ( DBQueryError $e ) {
343 $this->handleWriteError( $e );
344 }
345 }
346
347 /**
348 * Serialize an object and, if possible, compress the representation.
349 * On typical message and page data, this can provide a 3X decrease
350 * in storage requirements.
351 *
352 * @param $data mixed
353 * @return string
354 */
355 protected function serialize( &$data ) {
356 $serial = serialize( $data );
357
358 if ( function_exists( 'gzdeflate' ) ) {
359 return gzdeflate( $serial );
360 } else {
361 return $serial;
362 }
363 }
364
365 /**
366 * Unserialize and, if necessary, decompress an object.
367 * @param $serial string
368 * @return mixed
369 */
370 protected function unserialize( $serial ) {
371 if ( function_exists( 'gzinflate' ) ) {
372 wfSuppressWarnings();
373 $decomp = gzinflate( $serial );
374 wfRestoreWarnings();
375
376 if ( false !== $decomp ) {
377 $serial = $decomp;
378 }
379 }
380
381 $ret = unserialize( $serial );
382
383 return $ret;
384 }
385
386 /**
387 * Handle a DBQueryError which occurred during a write operation.
388 * Ignore errors which are due to a read-only database, rethrow others.
389 */
390 protected function handleWriteError( $exception ) {
391 $db = $this->getDB();
392
393 if ( !$db->wasReadOnlyError() ) {
394 throw $exception;
395 }
396
397 try {
398 $db->rollback();
399 } catch ( DBQueryError $e ) {
400 }
401
402 wfDebug( __METHOD__ . ": ignoring query error\n" );
403 $db->ignoreErrors( false );
404 }
405
406 /**
407 * Create shard tables. For use from eval.php.
408 */
409 public function createTables() {
410 $db = $this->getDB();
411 if ( $db->getType() !== 'mysql'
412 || version_compare( $db->getServerVersion(), '4.1.0', '<' ) )
413 {
414 throw new MWException( __METHOD__ . ' is not supported on this DB server' );
415 }
416
417 for ( $i = 0; $i < $this->shards; $i++ ) {
418 $db->begin();
419 $db->query(
420 'CREATE TABLE ' . $db->tableName( $this->getTableByShard( $i ) ) .
421 ' LIKE ' . $db->tableName( 'objectcache' ),
422 __METHOD__ );
423 $db->commit();
424 }
425 }
426 }
427
428 /**
429 * Backwards compatibility alias
430 */
431 class MediaWikiBagOStuff extends SqlBagOStuff { }
432