3 * Object caching using Redis (http://redis.io/).
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
24 * Redis-based caching module for redis server >= 2.6.12
26 * @note: avoid use of Redis::MULTI transactions for twemproxy support
28 class RedisBagOStuff
extends BagOStuff
{
29 /** @var RedisConnectionPool */
31 /** @var array List of server names */
33 /** @var array Map of (tag => server name) */
34 protected $serverTagMap;
36 protected $automaticFailover;
39 * Construct a RedisBagOStuff object. Parameters are:
41 * - servers: An array of server names. A server name may be a hostname,
42 * a hostname/port combination or the absolute path of a UNIX socket.
43 * If a hostname is specified but no port, the standard port number
44 * 6379 will be used. Arrays keys can be used to specify the tag to
45 * hash on in place of the host/port. Required.
47 * - connectTimeout: The timeout for new connections, in seconds. Optional,
48 * default is 1 second.
50 * - persistent: Set this to true to allow connections to persist across
51 * multiple web requests. False by default.
53 * - password: The authentication password, will be sent to Redis in
54 * clear text. Optional, if it is unspecified, no AUTH command will be
57 * - automaticFailover: If this is false, then each key will be mapped to
58 * a single server, and if that server is down, any requests for that key
59 * will fail. If this is true, a connection failure will cause the client
60 * to immediately try the next server in the list (as determined by a
61 * consistent hashing algorithm). True by default. This has the
62 * potential to create consistency issues if a server is slow enough to
63 * flap, for example if it is in swap death.
64 * @param array $params
66 function __construct( $params ) {
67 parent
::__construct( $params );
68 $redisConf = [ 'serializer' => 'none' ]; // manage that in this class
69 foreach ( [ 'connectTimeout', 'persistent', 'password' ] as $opt ) {
70 if ( isset( $params[$opt] ) ) {
71 $redisConf[$opt] = $params[$opt];
74 $this->redisPool
= RedisConnectionPool
::singleton( $redisConf );
76 $this->servers
= $params['servers'];
77 foreach ( $this->servers
as $key => $server ) {
78 $this->serverTagMap
[is_int( $key ) ?
$server : $key] = $server;
81 if ( isset( $params['automaticFailover'] ) ) {
82 $this->automaticFailover
= $params['automaticFailover'];
84 $this->automaticFailover
= true;
87 $this->attrMap
[self
::ATTR_SYNCWRITES
] = self
::QOS_SYNCWRITES_NONE
;
90 protected function doGet( $key, $flags = 0 ) {
91 list( $server, $conn ) = $this->getConnection( $key );
96 $value = $conn->get( $key );
97 $result = $this->unserialize( $value );
98 } catch ( RedisException
$e ) {
100 $this->handleException( $conn, $e );
103 $this->logRequest( 'get', $key, $server, $result );
107 public function set( $key, $value, $expiry = 0, $flags = 0 ) {
108 list( $server, $conn ) = $this->getConnection( $key );
112 $expiry = $this->convertToRelative( $expiry );
115 $result = $conn->setex( $key, $expiry, $this->serialize( $value ) );
117 // No expiry, that is very different from zero expiry in Redis
118 $result = $conn->set( $key, $this->serialize( $value ) );
120 } catch ( RedisException
$e ) {
122 $this->handleException( $conn, $e );
125 $this->logRequest( 'set', $key, $server, $result );
129 public function delete( $key ) {
130 list( $server, $conn ) = $this->getConnection( $key );
135 $conn->delete( $key );
136 // Return true even if the key didn't exist
138 } catch ( RedisException
$e ) {
140 $this->handleException( $conn, $e );
143 $this->logRequest( 'delete', $key, $server, $result );
147 public function getMulti( array $keys, $flags = 0 ) {
150 foreach ( $keys as $key ) {
151 list( $server, $conn ) = $this->getConnection( $key );
155 $conns[$server] = $conn;
156 $batches[$server][] = $key;
159 foreach ( $batches as $server => $batchKeys ) {
160 $conn = $conns[$server];
162 $conn->multi( Redis
::PIPELINE
);
163 foreach ( $batchKeys as $key ) {
166 $batchResult = $conn->exec();
167 if ( $batchResult === false ) {
168 $this->debug( "multi request to $server failed" );
171 foreach ( $batchResult as $i => $value ) {
172 if ( $value !== false ) {
173 $result[$batchKeys[$i]] = $this->unserialize( $value );
176 } catch ( RedisException
$e ) {
177 $this->handleException( $conn, $e );
181 $this->debug( "getMulti for " . count( $keys ) . " keys " .
182 "returned " . count( $result ) . " results" );
191 public function setMulti( array $data, $expiry = 0 ) {
194 foreach ( $data as $key => $value ) {
195 list( $server, $conn ) = $this->getConnection( $key );
199 $conns[$server] = $conn;
200 $batches[$server][] = $key;
203 $expiry = $this->convertToRelative( $expiry );
205 foreach ( $batches as $server => $batchKeys ) {
206 $conn = $conns[$server];
208 $conn->multi( Redis
::PIPELINE
);
209 foreach ( $batchKeys as $key ) {
211 $conn->setex( $key, $expiry, $this->serialize( $data[$key] ) );
213 $conn->set( $key, $this->serialize( $data[$key] ) );
216 $batchResult = $conn->exec();
217 if ( $batchResult === false ) {
218 $this->debug( "setMulti request to $server failed" );
221 foreach ( $batchResult as $value ) {
222 if ( $value === false ) {
226 } catch ( RedisException
$e ) {
227 $this->handleException( $server, $conn, $e );
235 public function add( $key, $value, $expiry = 0 ) {
236 list( $server, $conn ) = $this->getConnection( $key );
240 $expiry = $this->convertToRelative( $expiry );
243 $result = $conn->set(
245 $this->serialize( $value ),
246 [ 'nx', 'ex' => $expiry ]
249 $result = $conn->setnx( $key, $this->serialize( $value ) );
251 } catch ( RedisException
$e ) {
253 $this->handleException( $conn, $e );
256 $this->logRequest( 'add', $key, $server, $result );
261 * Non-atomic implementation of incr().
263 * Probably all callers actually want incr() to atomically initialise
264 * values to zero if they don't exist, as provided by the Redis INCR
265 * command. But we are constrained by the memcached-like interface to
266 * return null in that case. Once the key exists, further increments are
268 * @param string $key Key to increase
269 * @param int $value Value to add to $key (Default 1)
270 * @return int|bool New value or false on failure
272 public function incr( $key, $value = 1 ) {
273 list( $server, $conn ) = $this->getConnection( $key );
278 if ( !$conn->exists( $key ) ) {
281 // @FIXME: on races, the key may have a 0 TTL
282 $result = $conn->incrBy( $key, $value );
283 } catch ( RedisException
$e ) {
285 $this->handleException( $conn, $e );
288 $this->logRequest( 'incr', $key, $server, $result );
292 public function changeTTL( $key, $expiry = 0 ) {
293 list( $server, $conn ) = $this->getConnection( $key );
298 $expiry = $this->convertToRelative( $expiry );
300 $result = $conn->expire( $key, $expiry );
301 } catch ( RedisException
$e ) {
303 $this->handleException( $conn, $e );
306 $this->logRequest( 'expire', $key, $server, $result );
310 public function modifySimpleRelayEvent( array $event ) {
311 if ( array_key_exists( 'val', $event ) ) {
312 $event['val'] = serialize( $event['val'] ); // this class uses PHP serialization
322 protected function serialize( $data ) {
323 // Serialize anything but integers so INCR/DECR work
324 // Do not store integer-like strings as integers to avoid type confusion (bug 60563)
325 return is_int( $data ) ?
$data : serialize( $data );
329 * @param string $data
332 protected function unserialize( $data ) {
333 $int = intval( $data );
334 return $data === (string)$int ?
$int : unserialize( $data );
338 * Get a Redis object with a connection suitable for fetching the specified key
340 * @return array (server, RedisConnRef) or (false, false)
342 protected function getConnection( $key ) {
343 $candidates = array_keys( $this->serverTagMap
);
345 if ( count( $this->servers
) > 1 ) {
346 ArrayUtils
::consistentHashSort( $candidates, $key, '/' );
347 if ( !$this->automaticFailover
) {
348 $candidates = array_slice( $candidates, 0, 1 );
352 while ( ( $tag = array_shift( $candidates ) ) !== null ) {
353 $server = $this->serverTagMap
[$tag];
354 $conn = $this->redisPool
->getConnection( $server, $this->logger
);
359 // If automatic failover is enabled, check that the server's link
360 // to its master (if any) is up -- but only if there are other
361 // viable candidates left to consider. Also, getMasterLinkStatus()
362 // does not work with twemproxy, though $candidates will be empty
363 // by now in such cases.
364 if ( $this->automaticFailover
&& $candidates ) {
366 if ( $this->getMasterLinkStatus( $conn ) === 'down' ) {
367 // If the master cannot be reached, fail-over to the next server.
368 // If masters are in data-center A, and replica DBs in data-center B,
369 // this helps avoid the case were fail-over happens in A but not
370 // to the corresponding server in B (e.g. read/write mismatch).
373 } catch ( RedisException
$e ) {
374 // Server is not accepting commands
375 $this->handleException( $conn, $e );
380 return [ $server, $conn ];
383 $this->setLastError( BagOStuff
::ERR_UNREACHABLE
);
385 return [ false, false ];
389 * Check the master link status of a Redis server that is configured as a replica DB.
390 * @param RedisConnRef $conn
391 * @return string|null Master link status (either 'up' or 'down'), or null
392 * if the server is not a replica DB.
394 protected function getMasterLinkStatus( RedisConnRef
$conn ) {
395 $info = $conn->info();
396 return isset( $info['master_link_status'] )
397 ?
$info['master_link_status']
405 protected function logError( $msg ) {
406 $this->logger
->error( "Redis error: $msg" );
410 * The redis extension throws an exception in response to various read, write
411 * and protocol errors. Sometimes it also closes the connection, sometimes
412 * not. The safest response for us is to explicitly destroy the connection
413 * object and let it be reopened during the next request.
414 * @param RedisConnRef $conn
415 * @param Exception $e
417 protected function handleException( RedisConnRef
$conn, $e ) {
418 $this->setLastError( BagOStuff
::ERR_UNEXPECTED
);
419 $this->redisPool
->handleError( $conn, $e );
423 * Send information about a single request to the debug log
424 * @param string $method
426 * @param string $server
427 * @param bool $result
429 public function logRequest( $method, $key, $server, $result ) {
430 $this->debug( "$method $key on $server: " .
431 ( $result === false ?
"failure" : "success" ) );