1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
|
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace Wikimedia\ObjectCache;
use ArrayUtils;
use Exception;
use Redis;
use RedisException;
/**
* Store data in Redis.
*
* This requires the php-redis PECL extension (2.2.4 or later) and
* a Redis server (2.6.12 or later).
*
* @see http://redis.io/
* @see https://github.com/phpredis/phpredis/blob/d310ed7c8/Changelog.md
*
* @note Avoid use of Redis::MULTI transactions for twemproxy support
*
* @ingroup Cache
* @ingroup Redis
* @phan-file-suppress PhanTypeComparisonFromArray It's unclear whether exec() can return false
*/
class RedisBagOStuff extends MediumSpecificBagOStuff {
/** @var RedisConnectionPool */
protected $redisPool;
/** @var array List of server names */
protected $servers;
/** @var array Map of (tag => server name) */
protected $serverTagMap;
/** @var bool */
protected $automaticFailover;
/**
* Construct a RedisBagOStuff object. Parameters are:
*
* - servers: An array of server names. A server name may be a hostname,
* a hostname/port combination or the absolute path of a UNIX socket.
* If a hostname is specified but no port, the standard port number
* 6379 will be used. Arrays keys can be used to specify the tag to
* hash on in place of the host/port. Required.
*
* - connectTimeout: The timeout for new connections, in seconds. Optional,
* default is 1 second.
*
* - persistent: Set this to true to allow connections to persist across
* multiple web requests. False by default.
*
* - password: The authentication password, will be sent to Redis in
* clear text. Optional, if it is unspecified, no AUTH command will be
* sent.
*
* - automaticFailover: If this is false, then each key will be mapped to
* a single server, and if that server is down, any requests for that key
* will fail. If this is true, a connection failure will cause the client
* to immediately try the next server in the list (as determined by a
* consistent hashing algorithm). True by default. This has the
* potential to create consistency issues if a server is slow enough to
* flap, for example if it is in swap death.
*
* @param array $params
*/
public function __construct( $params ) {
parent::__construct( $params );
$redisConf = [ 'serializer' => 'none' ]; // manage that in this class
foreach ( [ 'connectTimeout', 'persistent', 'password' ] as $opt ) {
if ( isset( $params[$opt] ) ) {
$redisConf[$opt] = $params[$opt];
}
}
$this->redisPool = RedisConnectionPool::singleton( $redisConf );
$this->servers = $params['servers'];
foreach ( $this->servers as $key => $server ) {
$this->serverTagMap[is_int( $key ) ? $server : $key] = $server;
}
$this->automaticFailover = $params['automaticFailover'] ?? true;
// ...and uses rdb snapshots (redis.conf default)
$this->attrMap[self::ATTR_DURABILITY] = self::QOS_DURABILITY_DISK;
}
protected function doGet( $key, $flags = 0, &$casToken = null ) {
$getToken = ( $casToken === self::PASS_BY_REF );
$casToken = null;
$conn = $this->getConnection( $key );
if ( !$conn ) {
return false;
}
$e = null;
try {
$blob = $conn->get( $key );
if ( $blob !== false ) {
$value = $this->unserialize( $blob );
$valueSize = strlen( $blob );
} else {
$value = false;
$valueSize = false;
}
if ( $getToken && $value !== false ) {
$casToken = $blob;
}
} catch ( RedisException $e ) {
$value = false;
$valueSize = false;
$this->handleException( $conn, $e );
}
$this->logRequest( 'get', $key, $conn->getServer(), $e );
$this->updateOpStats( self::METRIC_OP_GET, [ $key => [ 0, $valueSize ] ] );
return $value;
}
protected function doSet( $key, $value, $exptime = 0, $flags = 0 ) {
$conn = $this->getConnection( $key );
if ( !$conn ) {
return false;
}
$ttl = $this->getExpirationAsTTL( $exptime );
$serialized = $this->getSerialized( $value, $key );
$valueSize = strlen( $serialized );
$e = null;
try {
if ( $ttl ) {
$result = $conn->setex( $key, $ttl, $serialized );
} else {
$result = $conn->set( $key, $serialized );
}
} catch ( RedisException $e ) {
$result = false;
$this->handleException( $conn, $e );
}
$this->logRequest( 'set', $key, $conn->getServer(), $e );
$this->updateOpStats( self::METRIC_OP_SET, [ $key => [ $valueSize, 0 ] ] );
return $result;
}
protected function doDelete( $key, $flags = 0 ) {
$conn = $this->getConnection( $key );
if ( !$conn ) {
return false;
}
$e = null;
try {
// Note that redis does not return false if the key was not there
$result = ( $conn->del( $key ) !== false );
} catch ( RedisException $e ) {
$result = false;
$this->handleException( $conn, $e );
}
$this->logRequest( 'delete', $key, $conn->getServer(), $e );
$this->updateOpStats( self::METRIC_OP_DELETE, [ $key ] );
return $result;
}
protected function doGetMulti( array $keys, $flags = 0 ) {
$blobsFound = [];
[ $keysByServer, $connByServer ] = $this->getConnectionsForKeys( $keys );
foreach ( $keysByServer as $server => $batchKeys ) {
$conn = $connByServer[$server];
$e = null;
try {
// Avoid mget() to reduce CPU hogging from a single request
$conn->multi( Redis::PIPELINE );
foreach ( $batchKeys as $key ) {
$conn->get( $key );
}
$batchResult = $conn->exec();
if ( $batchResult === false ) {
$this->logRequest( 'get', implode( ',', $batchKeys ), $server, true );
continue;
}
foreach ( $batchResult as $i => $blob ) {
if ( $blob !== false ) {
$blobsFound[$batchKeys[$i]] = $blob;
}
}
} catch ( RedisException $e ) {
$this->handleException( $conn, $e );
}
$this->logRequest( 'get', implode( ',', $batchKeys ), $server, $e );
}
// Preserve the order of $keys
$result = [];
$valueSizesByKey = [];
foreach ( $keys as $key ) {
if ( array_key_exists( $key, $blobsFound ) ) {
$blob = $blobsFound[$key];
$value = $this->unserialize( $blob );
if ( $value !== false ) {
$result[$key] = $value;
}
$valueSize = strlen( $blob );
} else {
$valueSize = false;
}
$valueSizesByKey[$key] = [ 0, $valueSize ];
}
$this->updateOpStats( self::METRIC_OP_GET, $valueSizesByKey );
return $result;
}
protected function doSetMulti( array $data, $exptime = 0, $flags = 0 ) {
$ttl = $this->getExpirationAsTTL( $exptime );
$op = $ttl ? 'setex' : 'set';
$keys = array_keys( $data );
$valueSizesByKey = [];
[ $keysByServer, $connByServer, $result ] = $this->getConnectionsForKeys( $keys );
foreach ( $keysByServer as $server => $batchKeys ) {
$conn = $connByServer[$server];
$e = null;
try {
// Avoid mset() to reduce CPU hogging from a single request
$conn->multi( Redis::PIPELINE );
foreach ( $batchKeys as $key ) {
$serialized = $this->getSerialized( $data[$key], $key );
if ( $ttl ) {
$conn->setex( $key, $ttl, $serialized );
} else {
$conn->set( $key, $serialized );
}
$valueSizesByKey[$key] = [ strlen( $serialized ), 0 ];
}
$batchResult = $conn->exec();
if ( $batchResult === false ) {
$result = false;
$this->logRequest( $op, implode( ',', $batchKeys ), $server, true );
continue;
}
$result = $result && !in_array( false, $batchResult, true );
} catch ( RedisException $e ) {
$this->handleException( $conn, $e );
$result = false;
}
$this->logRequest( $op, implode( ',', $batchKeys ), $server, $e );
}
$this->updateOpStats( self::METRIC_OP_SET, $valueSizesByKey );
return $result;
}
protected function doDeleteMulti( array $keys, $flags = 0 ) {
[ $keysByServer, $connByServer, $result ] = $this->getConnectionsForKeys( $keys );
foreach ( $keysByServer as $server => $batchKeys ) {
$conn = $connByServer[$server];
$e = null;
try {
// Avoid delete() with array to reduce CPU hogging from a single request
$conn->multi( Redis::PIPELINE );
foreach ( $batchKeys as $key ) {
$conn->del( $key );
}
$batchResult = $conn->exec();
if ( $batchResult === false ) {
$result = false;
$this->logRequest( 'delete', implode( ',', $batchKeys ), $server, true );
continue;
}
// Note that redis does not return false if the key was not there
$result = $result && !in_array( false, $batchResult, true );
} catch ( RedisException $e ) {
$this->handleException( $conn, $e );
$result = false;
}
$this->logRequest( 'delete', implode( ',', $batchKeys ), $server, $e );
}
$this->updateOpStats( self::METRIC_OP_DELETE, array_values( $keys ) );
return $result;
}
public function doChangeTTLMulti( array $keys, $exptime, $flags = 0 ) {
$relative = $this->isRelativeExpiration( $exptime );
$op = ( $exptime == self::TTL_INDEFINITE )
? 'persist'
: ( $relative ? 'expire' : 'expireAt' );
[ $keysByServer, $connByServer, $result ] = $this->getConnectionsForKeys( $keys );
foreach ( $keysByServer as $server => $batchKeys ) {
$conn = $connByServer[$server];
$e = null;
try {
$conn->multi( Redis::PIPELINE );
foreach ( $batchKeys as $key ) {
if ( $exptime == self::TTL_INDEFINITE ) {
$conn->persist( $key );
} elseif ( $relative ) {
$conn->expire( $key, $this->getExpirationAsTTL( $exptime ) );
} else {
$conn->expireAt( $key, $this->getExpirationAsTimestamp( $exptime ) );
}
}
$batchResult = $conn->exec();
if ( $batchResult === false ) {
$result = false;
$this->logRequest( $op, implode( ',', $batchKeys ), $server, true );
continue;
}
$result = in_array( false, $batchResult, true ) ? false : $result;
} catch ( RedisException $e ) {
$this->handleException( $conn, $e );
$result = false;
}
$this->logRequest( $op, implode( ',', $batchKeys ), $server, $e );
}
$this->updateOpStats( self::METRIC_OP_CHANGE_TTL, array_values( $keys ) );
return $result;
}
protected function doAdd( $key, $value, $exptime = 0, $flags = 0 ) {
$conn = $this->getConnection( $key );
if ( !$conn ) {
return false;
}
$ttl = $this->getExpirationAsTTL( $exptime );
$serialized = $this->getSerialized( $value, $key );
$valueSize = strlen( $serialized );
try {
$result = $conn->set(
$key,
$serialized,
$ttl ? [ 'nx', 'ex' => $ttl ] : [ 'nx' ]
);
} catch ( RedisException $e ) {
$result = false;
$this->handleException( $conn, $e );
}
$this->logRequest( 'add', $key, $conn->getServer(), $result );
$this->updateOpStats( self::METRIC_OP_ADD, [ $key => [ $valueSize, 0 ] ] );
return $result;
}
protected function doIncrWithInit( $key, $exptime, $step, $init, $flags ) {
$conn = $this->getConnection( $key );
if ( !$conn ) {
return false;
}
$ttl = $this->getExpirationAsTTL( $exptime );
try {
static $script =
/** @lang Lua */
<<<LUA
local key = KEYS[1]
local ttl, step, init = unpack( ARGV )
if redis.call( 'exists', key ) == 1 then
return redis.call( 'incrBy', key, step )
end
if 1 * ttl ~= 0 then
redis.call( 'setex', key, ttl, init )
else
redis.call( 'set', key, init )
end
return 1 * init
LUA;
$result = $conn->luaEval( $script, [ $key, $ttl, $step, $init ], 1 );
} catch ( RedisException $e ) {
$result = false;
$this->handleException( $conn, $e );
}
$this->logRequest( 'incrWithInit', $key, $conn->getServer(), $result );
return $result;
}
protected function doChangeTTL( $key, $exptime, $flags ) {
$conn = $this->getConnection( $key );
if ( !$conn ) {
return false;
}
$relative = $this->isRelativeExpiration( $exptime );
try {
if ( $exptime == self::TTL_INDEFINITE ) {
$result = $conn->persist( $key );
$this->logRequest( 'persist', $key, $conn->getServer(), $result );
} elseif ( $relative ) {
$result = $conn->expire( $key, $this->getExpirationAsTTL( $exptime ) );
$this->logRequest( 'expire', $key, $conn->getServer(), $result );
} else {
$result = $conn->expireAt( $key, $this->getExpirationAsTimestamp( $exptime ) );
$this->logRequest( 'expireAt', $key, $conn->getServer(), $result );
}
} catch ( RedisException $e ) {
$result = false;
$this->handleException( $conn, $e );
}
$this->updateOpStats( self::METRIC_OP_CHANGE_TTL, [ $key ] );
return $result;
}
/**
* @param string[] $keys
*
* @return array ((server => redis handle wrapper), (server => key batch), success)
* @phan-return array{0:array<string,string[]>,1:array<string,RedisConnRef|Redis>,2:bool}
*/
protected function getConnectionsForKeys( array $keys ) {
$keysByServer = [];
$connByServer = [];
$success = true;
foreach ( $keys as $key ) {
$candidateTags = $this->getCandidateServerTagsForKey( $key );
$conn = null;
// Find a suitable server for this key...
// phpcs:ignore Generic.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition
while ( ( $tag = array_shift( $candidateTags ) ) !== null ) {
$server = $this->serverTagMap[$tag];
// Reuse connection handles for keys mapping to the same server
if ( isset( $connByServer[$server] ) ) {
$conn = $connByServer[$server];
} else {
$conn = $this->redisPool->getConnection( $server, $this->logger );
if ( !$conn ) {
continue;
}
// If automatic failover is enabled, check that the server's link
// to its master (if any) is up -- but only if there are other
// viable candidates left to consider. Also, getMasterLinkStatus()
// does not work with twemproxy, though $candidates will be empty
// by now in such cases.
if ( $this->automaticFailover && $candidateTags ) {
try {
/** @var string[] $info */
$info = $conn->info();
if ( ( $info['master_link_status'] ?? null ) === 'down' ) {
// If the master cannot be reached, fail-over to the next server.
// If masters are in data-center A, and replica DBs in data-center B,
// this helps avoid the case were fail-over happens in A but not
// to the corresponding server in B (e.g. read/write mismatch).
continue;
}
} catch ( RedisException $e ) {
// Server is not accepting commands
$this->redisPool->handleError( $conn, $e );
continue;
}
}
// Use this connection handle
$connByServer[$server] = $conn;
}
// Use this server for this key
$keysByServer[$server][] = $key;
break;
}
if ( !$conn ) {
// No suitable server found for this key
$success = false;
$this->setLastError( BagOStuff::ERR_UNREACHABLE );
}
}
return [ $keysByServer, $connByServer, $success ];
}
/**
* @param string $key
*
* @return RedisConnRef|Redis|null Redis handle wrapper for the key or null on failure
*/
protected function getConnection( $key ) {
[ , $connByServer ] = $this->getConnectionsForKeys( [ $key ] );
return reset( $connByServer ) ?: null;
}
private function getCandidateServerTagsForKey( string $key ): array {
$candidates = array_keys( $this->serverTagMap );
if ( count( $this->servers ) > 1 ) {
ArrayUtils::consistentHashSort( $candidates, $key, '/' );
if ( !$this->automaticFailover ) {
$candidates = array_slice( $candidates, 0, 1 );
}
}
return $candidates;
}
/**
* Log a fatal error
*
* @param string $msg
*/
protected function logError( $msg ) {
$this->logger->error( "Redis error: $msg" );
}
/**
* The redis extension throws an exception in response to various read, write
* and protocol errors. Sometimes it also closes the connection, sometimes
* not. The safest response for us is to explicitly destroy the connection
* object and let it be reopened during the next request.
*
* @param RedisConnRef $conn
* @param RedisException $e
*/
protected function handleException( RedisConnRef $conn, RedisException $e ) {
$this->setLastError( BagOStuff::ERR_UNEXPECTED );
$this->redisPool->handleError( $conn, $e );
}
/**
* Send information about a single request to the debug log
*
* @param string $op
* @param string $keys
* @param string $server
* @param Exception|bool|null $e
*/
public function logRequest( $op, $keys, $server, $e = null ) {
$this->debug( "$op($keys) on $server: " . ( $e ? "failure" : "success" ) );
}
}
/** @deprecated class alias since 1.43 */
class_alias( RedisBagOStuff::class, 'RedisBagOStuff' );
|