Merge "Add script to find orphaned LocalRepo files"
[lhc/web/wiklou.git] / includes / libs / objectcache / WANObjectCache.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @ingroup Cache
20 * @author Aaron Schulz
21 */
22
23 use Psr\Log\LoggerAwareInterface;
24 use Psr\Log\LoggerInterface;
25 use Psr\Log\NullLogger;
26
27 /**
28 * Multi-datacenter aware caching interface
29 *
30 * All operations go to the local datacenter cache, except for delete(),
31 * touchCheckKey(), and resetCheckKey(), which broadcast to all datacenters.
32 *
33 * This class is intended for caching data from primary stores.
34 * If the get() method does not return a value, then the caller
35 * should query the new value and backfill the cache using set().
36 * When querying the store on cache miss, the closest DB replica
37 * should be used. Try to avoid heavyweight DB master or quorum reads.
38 * When the source data changes, a purge method should be called.
39 * Since purges are expensive, they should be avoided. One can do so if:
40 * - a) The object cached is immutable; or
41 * - b) Validity is checked against the source after get(); or
42 * - c) Using a modest TTL is reasonably correct and performant
43 *
44 * The simplest purge method is delete().
45 *
46 * Instances of this class must be configured to point to a valid
47 * PubSub endpoint, and there must be listeners on the cache servers
48 * that subscribe to the endpoint and update the caches.
49 *
50 * Broadcasted operations like delete() and touchCheckKey() are done
51 * synchronously in the local datacenter, but are relayed asynchronously.
52 * This means that callers in other datacenters will see older values
53 * for however many milliseconds the datacenters are apart. As with
54 * any cache, this should not be relied on for cases where reads are
55 * used to determine writes to source (e.g. non-cache) data stores.
56 *
57 * All values are wrapped in metadata arrays. Keys use a "WANCache:" prefix
58 * to avoid collisions with keys that are not wrapped as metadata arrays. The
59 * prefixes are as follows:
60 * - a) "WANCache:v" : used for regular value keys
61 * - b) "WANCache:s" : used for temporarily storing values of tombstoned keys
62 * - c) "WANCache:t" : used for storing timestamp "check" keys
63 *
64 * @ingroup Cache
65 * @since 1.26
66 */
67 class WANObjectCache implements IExpiringStore, LoggerAwareInterface {
68 /** @var BagOStuff The local datacenter cache */
69 protected $cache;
70 /** @var HashBagOStuff Script instance PHP cache */
71 protected $procCache;
72 /** @var string Cache pool name */
73 protected $pool;
74 /** @var EventRelayer Bus that handles purge broadcasts */
75 protected $relayer;
76 /** @var LoggerInterface */
77 protected $logger;
78
79 /** @var int ERR_* constant for the "last error" registry */
80 protected $lastRelayError = self::ERR_NONE;
81
82 /** Max time expected to pass between delete() and DB commit finishing */
83 const MAX_COMMIT_DELAY = 3;
84 /** Max replication+snapshot lag before applying TTL_LAGGED or disallowing set() */
85 const MAX_READ_LAG = 7;
86 /** Seconds to tombstone keys on delete() */
87 const HOLDOFF_TTL = 11; // MAX_COMMIT_DELAY + MAX_READ_LAG + 1
88
89 /** Seconds to keep dependency purge keys around */
90 const CHECK_KEY_TTL = self::TTL_YEAR;
91 /** Seconds to keep lock keys around */
92 const LOCK_TTL = 10;
93 /** Default remaining TTL at which to consider pre-emptive regeneration */
94 const LOW_TTL = 30;
95 /** Default time-since-expiry on a miss that makes a key "hot" */
96 const LOCK_TSE = 1;
97
98 /** Idiom for getWithSetCallback() callbacks to avoid calling set() */
99 const TTL_UNCACHEABLE = -1;
100 /** Idiom for getWithSetCallback() callbacks to 'lockTSE' logic */
101 const TSE_NONE = -1;
102 /** Max TTL to store keys when a data sourced is lagged */
103 const TTL_LAGGED = 30;
104
105 /** Tiny negative float to use when CTL comes up >= 0 due to clock skew */
106 const TINY_NEGATIVE = -0.000001;
107
108 /** Cache format version number */
109 const VERSION = 1;
110
111 const FLD_VERSION = 0;
112 const FLD_VALUE = 1;
113 const FLD_TTL = 2;
114 const FLD_TIME = 3;
115 const FLD_FLAGS = 4;
116
117 /** @var integer Treat this value as expired-on-arrival */
118 const FLG_STALE = 1;
119
120 const ERR_NONE = 0; // no error
121 const ERR_NO_RESPONSE = 1; // no response
122 const ERR_UNREACHABLE = 2; // can't connect
123 const ERR_UNEXPECTED = 3; // response gave some error
124 const ERR_RELAY = 4; // relay broadcast failed
125
126 const VALUE_KEY_PREFIX = 'WANCache:v:';
127 const STASH_KEY_PREFIX = 'WANCache:s:';
128 const TIME_KEY_PREFIX = 'WANCache:t:';
129
130 const PURGE_VAL_PREFIX = 'PURGED:';
131
132 const MAX_PC_KEYS = 1000; // max keys to keep in process cache
133
134 /**
135 * @param array $params
136 * - cache : BagOStuff object
137 * - pool : pool name
138 * - relayer : EventRelayer object
139 * - logger : LoggerInterface object
140 */
141 public function __construct( array $params ) {
142 $this->cache = $params['cache'];
143 $this->pool = $params['pool'];
144 $this->relayer = $params['relayer'];
145 $this->procCache = new HashBagOStuff( array( 'maxKeys' => self::MAX_PC_KEYS ) );
146 $this->setLogger( isset( $params['logger'] ) ? $params['logger'] : new NullLogger() );
147 }
148
149 public function setLogger( LoggerInterface $logger ) {
150 $this->logger = $logger;
151 }
152
153 /**
154 * Get an instance that wraps EmptyBagOStuff
155 *
156 * @return WANObjectCache
157 */
158 public static function newEmpty() {
159 return new self( array(
160 'cache' => new EmptyBagOStuff(),
161 'pool' => 'empty',
162 'relayer' => new EventRelayerNull( array() )
163 ) );
164 }
165
166 /**
167 * Fetch the value of a key from cache
168 *
169 * If supplied, $curTTL is set to the remaining TTL (current time left):
170 * - a) INF; if $key exists, has no TTL, and is not expired by $checkKeys
171 * - b) float (>=0); if $key exists, has a TTL, and is not expired by $checkKeys
172 * - c) float (<0); if $key is tombstoned, stale, or existing but expired by $checkKeys
173 * - d) null; if $key does not exist and is not tombstoned
174 *
175 * If a key is tombstoned, $curTTL will reflect the time since delete().
176 *
177 * The timestamp of $key will be checked against the last-purge timestamp
178 * of each of $checkKeys. Those $checkKeys not in cache will have the last-purge
179 * initialized to the current timestamp. If any of $checkKeys have a timestamp
180 * greater than that of $key, then $curTTL will reflect how long ago $key
181 * became invalid. Callers can use $curTTL to know when the value is stale.
182 * The $checkKeys parameter allow mass invalidations by updating a single key:
183 * - a) Each "check" key represents "last purged" of some source data
184 * - b) Callers pass in relevant "check" keys as $checkKeys in get()
185 * - c) When the source data that "check" keys represent changes,
186 * the touchCheckKey() method is called on them
187 *
188 * Source data entities might exists in a DB that uses snapshot isolation
189 * (e.g. the default REPEATABLE-READ in innoDB). Even for mutable data, that
190 * isolation can largely be maintained by doing the following:
191 * - a) Calling delete() on entity change *and* creation, before DB commit
192 * - b) Keeping transaction duration shorter than delete() hold-off TTL
193 *
194 * However, pre-snapshot values might still be seen if an update was made
195 * in a remote datacenter but the purge from delete() didn't relay yet.
196 *
197 * Consider using getWithSetCallback() instead of get() and set() cycles.
198 * That method has cache slam avoiding features for hot/expensive keys.
199 *
200 * @param string $key Cache key
201 * @param mixed $curTTL Approximate TTL left on the key if present [returned]
202 * @param array $checkKeys List of "check" keys
203 * @return mixed Value of cache key or false on failure
204 */
205 final public function get( $key, &$curTTL = null, array $checkKeys = array() ) {
206 $curTTLs = array();
207 $values = $this->getMulti( array( $key ), $curTTLs, $checkKeys );
208 $curTTL = isset( $curTTLs[$key] ) ? $curTTLs[$key] : null;
209
210 return isset( $values[$key] ) ? $values[$key] : false;
211 }
212
213 /**
214 * Fetch the value of several keys from cache
215 *
216 * @see WANObjectCache::get()
217 *
218 * @param array $keys List of cache keys
219 * @param array $curTTLs Map of (key => approximate TTL left) for existing keys [returned]
220 * @param array $checkKeys List of "check" keys to apply to all of $keys
221 * @return array Map of (key => value) for keys that exist
222 */
223 final public function getMulti(
224 array $keys, &$curTTLs = array(), array $checkKeys = array()
225 ) {
226 $result = array();
227 $curTTLs = array();
228
229 $vPrefixLen = strlen( self::VALUE_KEY_PREFIX );
230 $valueKeys = self::prefixCacheKeys( $keys, self::VALUE_KEY_PREFIX );
231 $checkKeys = self::prefixCacheKeys( $checkKeys, self::TIME_KEY_PREFIX );
232
233 // Fetch all of the raw values
234 $wrappedValues = $this->cache->getMulti( array_merge( $valueKeys, $checkKeys ) );
235 $now = microtime( true );
236
237 // Get/initialize the timestamp of all the "check" keys
238 $checkKeyTimes = array();
239 foreach ( $checkKeys as $checkKey ) {
240 $timestamp = isset( $wrappedValues[$checkKey] )
241 ? self::parsePurgeValue( $wrappedValues[$checkKey] )
242 : false;
243 if ( !is_float( $timestamp ) ) {
244 // Key is not set or invalid; regenerate
245 $this->cache->add( $checkKey,
246 self::PURGE_VAL_PREFIX . $now, self::CHECK_KEY_TTL );
247 $timestamp = $now;
248 }
249
250 $checkKeyTimes[] = $timestamp;
251 }
252
253 // Get the main cache value for each key and validate them
254 foreach ( $valueKeys as $vKey ) {
255 if ( !isset( $wrappedValues[$vKey] ) ) {
256 continue; // not found
257 }
258
259 $key = substr( $vKey, $vPrefixLen ); // unprefix
260
261 list( $value, $curTTL ) = $this->unwrap( $wrappedValues[$vKey], $now );
262 if ( $value !== false ) {
263 $result[$key] = $value;
264 foreach ( $checkKeyTimes as $checkKeyTime ) {
265 // Force dependant keys to be invalid for a while after purging
266 // to reduce race conditions involving stale data getting cached
267 $safeTimestamp = $checkKeyTime + self::HOLDOFF_TTL;
268 if ( $safeTimestamp >= $wrappedValues[$vKey][self::FLD_TIME] ) {
269 $curTTL = min( $curTTL, $checkKeyTime - $now );
270 }
271 }
272 }
273
274 $curTTLs[$key] = $curTTL;
275 }
276
277 return $result;
278 }
279
280 /**
281 * Set the value of a key in cache
282 *
283 * Simply calling this method when source data changes is not valid because
284 * the changes do not replicate to the other WAN sites. In that case, delete()
285 * should be used instead. This method is intended for use on cache misses.
286 *
287 * If the data was read from a snapshot-isolated transactions (e.g. the default
288 * REPEATABLE-READ in innoDB), use 'since' to avoid the following race condition:
289 * - a) T1 starts
290 * - b) T2 updates a row, calls delete(), and commits
291 * - c) The HOLDOFF_TTL passes, expiring the delete() tombstone
292 * - d) T1 reads the row and calls set() due to a cache miss
293 * - e) Stale value is stuck in cache
294 *
295 * Setting 'lag' and 'since' help avoids keys getting stuck in stale states.
296 *
297 * Example usage:
298 * @code
299 * $dbr = wfGetDB( DB_SLAVE );
300 * $setOpts = Database::getCacheSetOptions( $dbr );
301 * // Fetch the row from the DB
302 * $row = $dbr->selectRow( ... );
303 * $key = $cache->makeKey( 'building', $buildingId );
304 * $cache->set( $key, $row, $cache::TTL_DAY, $setOpts );
305 * @endcode
306 *
307 * @param string $key Cache key
308 * @param mixed $value
309 * @param integer $ttl Seconds to live. Special values are:
310 * - WANObjectCache::TTL_INDEFINITE: Cache forever
311 * @param array $opts Options map:
312 * - lag : Seconds of slave lag. Typically, this is either the slave lag
313 * before the data was read or, if applicable, the slave lag before
314 * the snapshot-isolated transaction the data was read from started.
315 * Default: 0 seconds
316 * - since : UNIX timestamp of the data in $value. Typically, this is either
317 * the current time the data was read or (if applicable) the time when
318 * the snapshot-isolated transaction the data was read from started.
319 * Default: 0 seconds
320 * - pending : Whether this data is possibly from an uncommitted write transaction.
321 * Generally, other threads should not see values from the future and
322 * they certainly should not see ones that ended up getting rolled back.
323 * Default: false
324 * - lockTSE : if excessive replication/snapshot lag is detected, then store the value
325 * with this TTL and flag it as stale. This is only useful if the reads for
326 * this key use getWithSetCallback() with "lockTSE" set.
327 * Default: WANObjectCache::TSE_NONE
328 * @return bool Success
329 */
330 final public function set( $key, $value, $ttl = 0, array $opts = array() ) {
331 $lockTSE = isset( $opts['lockTSE'] ) ? $opts['lockTSE'] : self::TSE_NONE;
332 $age = isset( $opts['since'] ) ? max( 0, microtime( true ) - $opts['since'] ) : 0;
333 $lag = isset( $opts['lag'] ) ? $opts['lag'] : 0;
334
335 // Do not cache potentially uncommitted data as it might get rolled back
336 if ( !empty( $opts['pending'] ) ) {
337 $this->logger->info( "Rejected set() for $key due to pending writes." );
338
339 return true; // no-op the write for being unsafe
340 }
341
342 $wrapExtra = array(); // additional wrapped value fields
343 // Check if there's a risk of writing stale data after the purge tombstone expired
344 if ( ( $lag + $age ) > self::MAX_READ_LAG ) {
345 // Case A: read lag with "lockTSE"; save but record value as stale
346 if ( $lockTSE >= 0 ) {
347 $ttl = max( 1, (int)$lockTSE ); // set() expects seconds
348 $wrapExtra[self::FLD_FLAGS] = self::FLG_STALE; // mark as stale
349 // Case B: any long-running transaction; ignore this set()
350 } elseif ( $age > self::MAX_READ_LAG ) {
351 $this->logger->warning( "Rejected set() for $key due to snapshot lag." );
352
353 return true; // no-op the write for being unsafe
354 // Case C: high replication lag; lower TTL instead of ignoring all set()s
355 } elseif ( $lag > self::MAX_READ_LAG ) {
356 $ttl = $ttl ? min( $ttl, self::TTL_LAGGED ) : self::TTL_LAGGED;
357 $this->logger->warning( "Lowered set() TTL for $key due to replication lag." );
358 // Case D: medium length request with medium replication lag; ignore this set()
359 } else {
360 $this->logger->warning( "Rejected set() for $key due to high read lag." );
361
362 return true; // no-op the write for being unsafe
363 }
364 }
365
366 // Wrap that value with time/TTL/version metadata
367 $wrapped = $this->wrap( $value, $ttl ) + $wrapExtra;
368
369 $func = function ( $cache, $key, $cWrapped ) use ( $wrapped ) {
370 return ( is_string( $cWrapped ) )
371 ? false // key is tombstoned; do nothing
372 : $wrapped;
373 };
374
375 return $this->cache->merge( self::VALUE_KEY_PREFIX . $key, $func, $ttl, 1 );
376 }
377
378 /**
379 * Purge a key from all datacenters
380 *
381 * This should only be called when the underlying data (being cached)
382 * changes in a significant way. This deletes the key and starts a hold-off
383 * period where the key cannot be written to for a few seconds (HOLDOFF_TTL).
384 * This is done to avoid the following race condition:
385 * - a) Some DB data changes and delete() is called on a corresponding key
386 * - b) A request refills the key with a stale value from a lagged DB
387 * - c) The stale value is stuck there until the key is expired/evicted
388 *
389 * This is implemented by storing a special "tombstone" value at the cache
390 * key that this class recognizes; get() calls will return false for the key
391 * and any set() calls will refuse to replace tombstone values at the key.
392 * For this to always avoid stale value writes, the following must hold:
393 * - a) Replication lag is bounded to being less than HOLDOFF_TTL; or
394 * - b) If lag is higher, the DB will have gone into read-only mode already
395 *
396 * Note that set() can also be lag-aware and lower the TTL if it's high.
397 *
398 * When using potentially long-running ACID transactions, a good pattern is
399 * to use a pre-commit hook to issue the delete. This means that immediately
400 * after commit, callers will see the tombstone in cache in the local datacenter
401 * and in the others upon relay. It also avoids the following race condition:
402 * - a) T1 begins, changes a row, and calls delete()
403 * - b) The HOLDOFF_TTL passes, expiring the delete() tombstone
404 * - c) T2 starts, reads the row and calls set() due to a cache miss
405 * - d) T1 finally commits
406 * - e) Stale value is stuck in cache
407 *
408 * Example usage:
409 * @code
410 * $dbw->begin(); // start of request
411 * ... <execute some stuff> ...
412 * // Update the row in the DB
413 * $dbw->update( ... );
414 * $key = $cache->makeKey( 'homes', $homeId );
415 * // Purge the corresponding cache entry just before committing
416 * $dbw->onTransactionPreCommitOrIdle( function() use ( $cache, $key ) {
417 * $cache->delete( $key );
418 * } );
419 * ... <execute some stuff> ...
420 * $dbw->commit(); // end of request
421 * @endcode
422 *
423 * The $ttl parameter can be used when purging values that have not actually changed
424 * recently. For example, a cleanup script to purge cache entries does not really need
425 * a hold-off period, so it can use the value 1. Likewise for user-requested purge.
426 * Note that $ttl limits the effective range of 'lockTSE' for getWithSetCallback().
427 *
428 * If called twice on the same key, then the last hold-off TTL takes precedence. For
429 * idempotence, the $ttl should not vary for different delete() calls on the same key.
430 *
431 * @param string $key Cache key
432 * @param integer $ttl Tombstone TTL; Default: WANObjectCache::HOLDOFF_TTL
433 * @return bool True if the item was purged or not found, false on failure
434 */
435 final public function delete( $key, $ttl = self::HOLDOFF_TTL ) {
436 $key = self::VALUE_KEY_PREFIX . $key;
437 // Avoid indefinite key salting for sanity
438 $ttl = max( $ttl, 1 );
439 // Update the local datacenter immediately
440 $ok = $this->cache->set( $key, self::PURGE_VAL_PREFIX . microtime( true ), $ttl );
441 // Publish the purge to all datacenters
442 return $this->relayPurge( $key, $ttl ) && $ok;
443 }
444
445 /**
446 * Fetch the value of a timestamp "check" key
447 *
448 * The key will be *initialized* to the current time if not set,
449 * so only call this method if this behavior is actually desired
450 *
451 * The timestamp can be used to check whether a cached value is valid.
452 * Callers should not assume that this returns the same timestamp in
453 * all datacenters due to relay delays.
454 *
455 * The level of staleness can roughly be estimated from this key, but
456 * if the key was evicted from cache, such calculations may show the
457 * time since expiry as ~0 seconds.
458 *
459 * Note that "check" keys won't collide with other regular keys.
460 *
461 * @param string $key
462 * @return float UNIX timestamp of the key
463 */
464 final public function getCheckKeyTime( $key ) {
465 $key = self::TIME_KEY_PREFIX . $key;
466
467 $time = self::parsePurgeValue( $this->cache->get( $key ) );
468 if ( $time === false ) {
469 // Casting assures identical floats for the next getCheckKeyTime() calls
470 $time = (string)microtime( true );
471 $this->cache->add( $key, self::PURGE_VAL_PREFIX . $time, self::CHECK_KEY_TTL );
472 $time = (float)$time;
473 }
474
475 return $time;
476 }
477
478 /**
479 * Purge a "check" key from all datacenters, invalidating keys that use it
480 *
481 * This should only be called when the underlying data (being cached)
482 * changes in a significant way, and it is impractical to call delete()
483 * on all keys that should be changed. When get() is called on those
484 * keys, the relevant "check" keys must be supplied for this to work.
485 *
486 * The "check" key essentially represents a last-modified field.
487 * When touched, keys using it via get(), getMulti(), or getWithSetCallback()
488 * will be invalidated. It is treated as being HOLDOFF_TTL seconds in the future
489 * by those methods to avoid race conditions where dependent keys get updated
490 * with stale values (e.g. from a DB slave).
491 *
492 * This is typically useful for keys with hardcoded names or in some cases
493 * dynamically generated names where a low number of combinations exist.
494 * When a few important keys get a large number of hits, a high cache
495 * time is usually desired as well as "lockTSE" logic. The resetCheckKey()
496 * method is less appropriate in such cases since the "time since expiry"
497 * cannot be inferred.
498 *
499 * Note that "check" keys won't collide with other regular keys.
500 *
501 * @see WANObjectCache::get()
502 * @see WANObjectCache::getWithSetCallback()
503 * @see WANObjectCache::resetCheckKey()
504 *
505 * @param string $key Cache key
506 * @return bool True if the item was purged or not found, false on failure
507 */
508 final public function touchCheckKey( $key ) {
509 $key = self::TIME_KEY_PREFIX . $key;
510 // Update the local datacenter immediately
511 $ok = $this->cache->set( $key,
512 self::PURGE_VAL_PREFIX . microtime( true ), self::CHECK_KEY_TTL );
513 // Publish the purge to all datacenters
514 return $this->relayPurge( $key, self::CHECK_KEY_TTL ) && $ok;
515 }
516
517 /**
518 * Delete a "check" key from all datacenters, invalidating keys that use it
519 *
520 * This is similar to touchCheckKey() in that keys using it via get(), getMulti(),
521 * or getWithSetCallback() will be invalidated. The differences are:
522 * - a) The timestamp will be deleted from all caches and lazily
523 * re-initialized when accessed (rather than set everywhere)
524 * - b) Thus, dependent keys will be known to be invalid, but not
525 * for how long (they are treated as "just" purged), which
526 * effects any lockTSE logic in getWithSetCallback()
527 *
528 * The advantage is that this does not place high TTL keys on every cache
529 * server, making it better for code that will cache many different keys
530 * and either does not use lockTSE or uses a low enough TTL anyway.
531 *
532 * This is typically useful for keys with dynamically generated names
533 * where a high number of combinations exist.
534 *
535 * Note that "check" keys won't collide with other regular keys.
536 *
537 * @see WANObjectCache::get()
538 * @see WANObjectCache::getWithSetCallback()
539 * @see WANObjectCache::touchCheckKey()
540 *
541 * @param string $key Cache key
542 * @return bool True if the item was purged or not found, false on failure
543 */
544 final public function resetCheckKey( $key ) {
545 $key = self::TIME_KEY_PREFIX . $key;
546 // Update the local datacenter immediately
547 $ok = $this->cache->delete( $key );
548 // Publish the purge to all datacenters
549 return $this->relayDelete( $key ) && $ok;
550 }
551
552 /**
553 * Method to fetch/regenerate cache keys
554 *
555 * On cache miss, the key will be set to the callback result via set()
556 * (unless the callback returns false) and that result will be returned.
557 * The arguments supplied to the callback are:
558 * - $oldValue : current cache value or false if not present
559 * - &$ttl : a reference to the TTL which can be altered
560 * - &$setOpts : a reference to options for set() which can be altered
561 *
562 * It is strongly recommended to set the 'lag' and 'since' fields to avoid race conditions
563 * that can cause stale values to get stuck at keys. Usually, callbacks ignore the current
564 * value, but it can be used to maintain "most recent X" values that come from time or
565 * sequence based source data, provided that the "as of" id/time is tracked. Note that
566 * preemptive regeneration and $checkKeys can result in a non-false current value.
567 *
568 * Usage of $checkKeys is similar to get() and getMulti(). However, rather than the caller
569 * having to inspect a "current time left" variable (e.g. $curTTL, $curTTLs), a cache
570 * regeneration will automatically be triggered using the callback.
571 *
572 * The simplest way to avoid stampedes for hot keys is to use
573 * the 'lockTSE' option in $opts. If cache purges are needed, also:
574 * - a) Pass $key into $checkKeys
575 * - b) Use touchCheckKey( $key ) instead of delete( $key )
576 *
577 * Example usage (typical key):
578 * @code
579 * $catInfo = $cache->getWithSetCallback(
580 * // Key to store the cached value under
581 * $cache->makeKey( 'cat-attributes', $catId ),
582 * // Time-to-live (in seconds)
583 * $cache::TTL_MINUTE,
584 * // Function that derives the new key value
585 * function ( $oldValue, &$ttl, array &$setOpts ) {
586 * $dbr = wfGetDB( DB_SLAVE );
587 * // Account for any snapshot/slave lag
588 * $setOpts += Database::getCacheSetOptions( $dbr );
589 *
590 * return $dbr->selectRow( ... );
591 * }
592 * );
593 * @endcode
594 *
595 * Example usage (key that is expensive and hot):
596 * @code
597 * $catConfig = $cache->getWithSetCallback(
598 * // Key to store the cached value under
599 * $cache->makeKey( 'site-cat-config' ),
600 * // Time-to-live (in seconds)
601 * $cache::TTL_DAY,
602 * // Function that derives the new key value
603 * function ( $oldValue, &$ttl, array &$setOpts ) {
604 * $dbr = wfGetDB( DB_SLAVE );
605 * // Account for any snapshot/slave lag
606 * $setOpts += Database::getCacheSetOptions( $dbr );
607 *
608 * return CatConfig::newFromRow( $dbr->selectRow( ... ) );
609 * },
610 * array(
611 * // Calling touchCheckKey() on this key invalidates the cache
612 * 'checkKeys' => array( $cache->makeKey( 'site-cat-config' ) ),
613 * // Try to only let one datacenter thread manage cache updates at a time
614 * 'lockTSE' => 30
615 * )
616 * );
617 * @endcode
618 *
619 * Example usage (key with dynamic dependencies):
620 * @code
621 * $catState = $cache->getWithSetCallback(
622 * // Key to store the cached value under
623 * $cache->makeKey( 'cat-state', $cat->getId() ),
624 * // Time-to-live (seconds)
625 * $cache::TTL_HOUR,
626 * // Function that derives the new key value
627 * function ( $oldValue, &$ttl, array &$setOpts ) {
628 * // Determine new value from the DB
629 * $dbr = wfGetDB( DB_SLAVE );
630 * // Account for any snapshot/slave lag
631 * $setOpts += Database::getCacheSetOptions( $dbr );
632 *
633 * return CatState::newFromResults( $dbr->select( ... ) );
634 * },
635 * array(
636 * // The "check" keys that represent things the value depends on;
637 * // Calling touchCheckKey() on any of them invalidates the cache
638 * 'checkKeys' => array(
639 * $cache->makeKey( 'sustenance-bowls', $cat->getRoomId() ),
640 * $cache->makeKey( 'people-present', $cat->getHouseId() ),
641 * $cache->makeKey( 'cat-laws', $cat->getCityId() ),
642 * )
643 * )
644 * );
645 * @endcode
646 *
647 * Example usage (hot key holding most recent 100 events):
648 * @code
649 * $lastCatActions = $cache->getWithSetCallback(
650 * // Key to store the cached value under
651 * $cache->makeKey( 'cat-last-actions', 100 ),
652 * // Time-to-live (in seconds)
653 * 10,
654 * // Function that derives the new key value
655 * function ( $oldValue, &$ttl, array &$setOpts ) {
656 * $dbr = wfGetDB( DB_SLAVE );
657 * // Account for any snapshot/slave lag
658 * $setOpts += Database::getCacheSetOptions( $dbr );
659 *
660 * // Start off with the last cached list
661 * $list = $oldValue ?: array();
662 * // Fetch the last 100 relevant rows in descending order;
663 * // only fetch rows newer than $list[0] to reduce scanning
664 * $rows = iterator_to_array( $dbr->select( ... ) );
665 * // Merge them and get the new "last 100" rows
666 * return array_slice( array_merge( $new, $list ), 0, 100 );
667 * },
668 * // Try to only let one datacenter thread manage cache updates at a time
669 * array( 'lockTSE' => 30 )
670 * );
671 * @endcode
672 *
673 * @see WANObjectCache::get()
674 * @see WANObjectCache::set()
675 *
676 * @param string $key Cache key
677 * @param integer $ttl Seconds to live for key updates. Special values are:
678 * - WANObjectCache::TTL_INDEFINITE: Cache forever
679 * - WANObjectCache::TTL_UNCACHEABLE: Do not cache at all
680 * @param callable $callback Value generation function
681 * @param array $opts Options map:
682 * - checkKeys: List of "check" keys. The key at $key will be seen as invalid when either
683 * touchCheckKey() or resetCheckKey() is called on any of these keys.
684 * - lowTTL: Consider pre-emptive updates when the current TTL (sec) of the key is less than
685 * this. It becomes more likely over time, becoming a certainty once the key is expired.
686 * Default: WANObjectCache::LOW_TTL seconds.
687 * - lockTSE: If the key is tombstoned or expired (by checkKeys) less than this many seconds
688 * ago, then try to have a single thread handle cache regeneration at any given time.
689 * Other threads will try to use stale values if possible. If, on miss, the time since
690 * expiration is low, the assumption is that the key is hot and that a stampede is worth
691 * avoiding. Setting this above WANObjectCache::HOLDOFF_TTL makes no difference. The
692 * higher this is set, the higher the worst-case staleness can be.
693 * Use WANObjectCache::TSE_NONE to disable this logic.
694 * Default: WANObjectCache::TSE_NONE.
695 * - pcTTL : process cache the value in this PHP instance with this TTL. This avoids
696 * network I/O when a key is read several times. This will not cache if the callback
697 * returns false however. Note that any purges will not be seen while process cached;
698 * since the callback should use slave DBs and they may be lagged or have snapshot
699 * isolation anyway, this should not typically matter.
700 * Default: WANObjectCache::TTL_UNCACHEABLE.
701 * @return mixed Value to use for the key
702 */
703 final public function getWithSetCallback( $key, $ttl, $callback, array $opts = array() ) {
704 $pcTTL = isset( $opts['pcTTL'] ) ? $opts['pcTTL'] : self::TTL_UNCACHEABLE;
705
706 // Try the process cache if enabled
707 $value = ( $pcTTL >= 0 ) ? $this->procCache->get( $key ) : false;
708
709 if ( $value === false ) {
710 // Fetch the value over the network
711 $value = $this->doGetWithSetCallback( $key, $ttl, $callback, $opts );
712 // Update the process cache if enabled
713 if ( $pcTTL >= 0 && $value !== false ) {
714 $this->procCache->set( $key, $value, $pcTTL );
715 }
716 }
717
718 return $value;
719 }
720
721 /**
722 * Do the actual I/O for getWithSetCallback() when needed
723 *
724 * @see WANObjectCache::getWithSetCallback()
725 *
726 * @param string $key
727 * @param integer $ttl
728 * @param callback $callback
729 * @param array $opts
730 * @return mixed
731 */
732 protected function doGetWithSetCallback( $key, $ttl, $callback, array $opts ) {
733 $lowTTL = isset( $opts['lowTTL'] ) ? $opts['lowTTL'] : min( self::LOW_TTL, $ttl );
734 $lockTSE = isset( $opts['lockTSE'] ) ? $opts['lockTSE'] : self::TSE_NONE;
735 $checkKeys = isset( $opts['checkKeys'] ) ? $opts['checkKeys'] : array();
736
737 // Get the current key value
738 $curTTL = null;
739 $cValue = $this->get( $key, $curTTL, $checkKeys ); // current value
740 $value = $cValue; // return value
741
742 // Determine if a regeneration is desired
743 if ( $value !== false && $curTTL > 0 && !$this->worthRefresh( $curTTL, $lowTTL ) ) {
744 return $value;
745 }
746
747 // A deleted key with a negative TTL left must be tombstoned
748 $isTombstone = ( $curTTL !== null && $value === false );
749 // Assume a key is hot if requested soon after invalidation
750 $isHot = ( $curTTL !== null && $curTTL <= 0 && abs( $curTTL ) <= $lockTSE );
751 // Decide whether a single thread should handle regenerations.
752 // This avoids stampedes when $checkKeys are bumped and when preemptive
753 // renegerations take too long. It also reduces regenerations while $key
754 // is tombstoned. This balances cache freshness with avoiding DB load.
755 $useMutex = ( $isHot || ( $isTombstone && $lockTSE > 0 ) );
756
757 $lockAcquired = false;
758 if ( $useMutex ) {
759 // Acquire a datacenter-local non-blocking lock
760 if ( $this->cache->lock( $key, 0, self::LOCK_TTL ) ) {
761 // Lock acquired; this thread should update the key
762 $lockAcquired = true;
763 } elseif ( $value !== false ) {
764 // If it cannot be acquired; then the stale value can be used
765 return $value;
766 } else {
767 // Use the stash value for tombstoned keys to reduce regeneration load.
768 // For hot keys, either another thread has the lock or the lock failed;
769 // use the stash value from the last thread that regenerated it.
770 $value = $this->cache->get( self::STASH_KEY_PREFIX . $key );
771 if ( $value !== false ) {
772 return $value;
773 }
774 }
775 }
776
777 if ( !is_callable( $callback ) ) {
778 throw new InvalidArgumentException( "Invalid cache miss callback provided." );
779 }
780
781 // Generate the new value from the callback...
782 $setOpts = array();
783 $value = call_user_func_array( $callback, array( $cValue, &$ttl, &$setOpts ) );
784 // When delete() is called, writes are write-holed by the tombstone,
785 // so use a special stash key to pass the new value around threads.
786 if ( $useMutex && $value !== false && $ttl >= 0 ) {
787 $tempTTL = max( 1, (int)$lockTSE ); // set() expects seconds
788 $this->cache->set( self::STASH_KEY_PREFIX . $key, $value, $tempTTL );
789 }
790
791 if ( $lockAcquired ) {
792 $this->cache->unlock( $key );
793 }
794
795 if ( $value !== false && $ttl >= 0 ) {
796 // Update the cache; this will fail if the key is tombstoned
797 $setOpts['lockTSE'] = $lockTSE;
798 $this->set( $key, $value, $ttl, $setOpts );
799 }
800
801 return $value;
802 }
803
804 /**
805 * @see BagOStuff::makeKey()
806 * @param string ... Key component
807 * @return string
808 * @since 1.27
809 */
810 public function makeKey() {
811 return call_user_func_array( array( $this->cache, __FUNCTION__ ), func_get_args() );
812 }
813
814 /**
815 * @see BagOStuff::makeGlobalKey()
816 * @param string ... Key component
817 * @return string
818 * @since 1.27
819 */
820 public function makeGlobalKey() {
821 return call_user_func_array( array( $this->cache, __FUNCTION__ ), func_get_args() );
822 }
823
824 /**
825 * Get the "last error" registered; clearLastError() should be called manually
826 * @return int ERR_* constant for the "last error" registry
827 */
828 final public function getLastError() {
829 if ( $this->lastRelayError ) {
830 // If the cache and the relayer failed, focus on the later.
831 // An update not making it to the relayer means it won't show up
832 // in other DCs (nor will consistent re-hashing see up-to-date values).
833 // On the other hand, if just the cache update failed, then it should
834 // eventually be applied by the relayer.
835 return $this->lastRelayError;
836 }
837
838 $code = $this->cache->getLastError();
839 switch ( $code ) {
840 case BagOStuff::ERR_NONE:
841 return self::ERR_NONE;
842 case BagOStuff::ERR_NO_RESPONSE:
843 return self::ERR_NO_RESPONSE;
844 case BagOStuff::ERR_UNREACHABLE:
845 return self::ERR_UNREACHABLE;
846 default:
847 return self::ERR_UNEXPECTED;
848 }
849 }
850
851 /**
852 * Clear the "last error" registry
853 */
854 final public function clearLastError() {
855 $this->cache->clearLastError();
856 $this->lastRelayError = self::ERR_NONE;
857 }
858
859 /**
860 * Do the actual async bus purge of a key
861 *
862 * This must set the key to "PURGED:<UNIX timestamp>"
863 *
864 * @param string $key Cache key
865 * @param integer $ttl How long to keep the tombstone [seconds]
866 * @return bool Success
867 */
868 protected function relayPurge( $key, $ttl ) {
869 $event = $this->cache->modifySimpleRelayEvent( array(
870 'cmd' => 'set',
871 'key' => $key,
872 'val' => 'PURGED:$UNIXTIME$',
873 'ttl' => max( $ttl, 1 ),
874 'sbt' => true, // substitute $UNIXTIME$ with actual microtime
875 ) );
876
877 $ok = $this->relayer->notify( "{$this->pool}:purge", $event );
878 if ( !$ok ) {
879 $this->lastRelayError = self::ERR_RELAY;
880 }
881
882 return $ok;
883 }
884
885 /**
886 * Do the actual async bus delete of a key
887 *
888 * @param string $key Cache key
889 * @return bool Success
890 */
891 protected function relayDelete( $key ) {
892 $event = $this->cache->modifySimpleRelayEvent( array(
893 'cmd' => 'delete',
894 'key' => $key,
895 ) );
896
897 $ok = $this->relayer->notify( "{$this->pool}:purge", $event );
898 if ( !$ok ) {
899 $this->lastRelayError = self::ERR_RELAY;
900 }
901
902 return $ok;
903 }
904
905 /**
906 * Check if a key should be regenerated (using random probability)
907 *
908 * This returns false if $curTTL >= $lowTTL. Otherwise, the chance
909 * of returning true increases steadily from 0% to 100% as the $curTTL
910 * moves from $lowTTL to 0 seconds. This handles widely varying
911 * levels of cache access traffic.
912 *
913 * @param float $curTTL Approximate TTL left on the key if present
914 * @param float $lowTTL Consider a refresh when $curTTL is less than this
915 * @return bool
916 */
917 protected function worthRefresh( $curTTL, $lowTTL ) {
918 if ( $curTTL >= $lowTTL ) {
919 return false;
920 } elseif ( $curTTL <= 0 ) {
921 return true;
922 }
923
924 $chance = ( 1 - $curTTL / $lowTTL );
925
926 return mt_rand( 1, 1e9 ) <= 1e9 * $chance;
927 }
928
929 /**
930 * Do not use this method outside WANObjectCache
931 *
932 * @param mixed $value
933 * @param integer $ttl [0=forever]
934 * @return array
935 */
936 protected function wrap( $value, $ttl ) {
937 return array(
938 self::FLD_VERSION => self::VERSION,
939 self::FLD_VALUE => $value,
940 self::FLD_TTL => $ttl,
941 self::FLD_TIME => microtime( true )
942 );
943 }
944
945 /**
946 * Do not use this method outside WANObjectCache
947 *
948 * @param array|string|bool $wrapped
949 * @param float $now Unix Current timestamp (preferrable pre-query)
950 * @return array (mixed; false if absent/invalid, current time left)
951 */
952 protected function unwrap( $wrapped, $now ) {
953 // Check if the value is a tombstone
954 $purgeTimestamp = self::parsePurgeValue( $wrapped );
955 if ( is_float( $purgeTimestamp ) ) {
956 // Purged values should always have a negative current $ttl
957 $curTTL = min( $purgeTimestamp - $now, self::TINY_NEGATIVE );
958 return array( false, $curTTL );
959 }
960
961 if ( !is_array( $wrapped ) // not found
962 || !isset( $wrapped[self::FLD_VERSION] ) // wrong format
963 || $wrapped[self::FLD_VERSION] !== self::VERSION // wrong version
964 ) {
965 return array( false, null );
966 }
967
968 $flags = isset( $wrapped[self::FLD_FLAGS] ) ? $wrapped[self::FLD_FLAGS] : 0;
969 if ( ( $flags & self::FLG_STALE ) == self::FLG_STALE ) {
970 // Treat as expired, with the cache time as the expiration
971 $age = $now - $wrapped[self::FLD_TIME];
972 $curTTL = min( -$age, self::TINY_NEGATIVE );
973 } elseif ( $wrapped[self::FLD_TTL] > 0 ) {
974 // Get the approximate time left on the key
975 $age = $now - $wrapped[self::FLD_TIME];
976 $curTTL = max( $wrapped[self::FLD_TTL] - $age, 0.0 );
977 } else {
978 // Key had no TTL, so the time left is unbounded
979 $curTTL = INF;
980 }
981
982 return array( $wrapped[self::FLD_VALUE], $curTTL );
983 }
984
985 /**
986 * @param array $keys
987 * @param string $prefix
988 * @return string[]
989 */
990 protected static function prefixCacheKeys( array $keys, $prefix ) {
991 $res = array();
992 foreach ( $keys as $key ) {
993 $res[] = $prefix . $key;
994 }
995
996 return $res;
997 }
998
999 /**
1000 * @param string $value String like "PURGED:<timestamp>"
1001 * @return float|bool UNIX timestamp or false on failure
1002 */
1003 protected static function parsePurgeValue( $value ) {
1004 $m = array();
1005 if ( is_string( $value ) &&
1006 preg_match( '/^' . self::PURGE_VAL_PREFIX . '([^:]+)$/', $value, $m )
1007 ) {
1008 return (float)$m[1];
1009 } else {
1010 return false;
1011 }
1012 }
1013 }