MediaWiki  1.34.0
PoolCounterRedis.php
Go to the documentation of this file.
1 <?php
20 use Psr\Log\LoggerInterface;
21 
55  protected $ring;
57  protected $pool;
59  protected $logger;
61  protected $serversByLabel;
63  protected $keySha1;
65  protected $lockTTL;
66 
68  protected $conn;
70  protected $slot;
72  protected $onRelease;
74  protected $session;
76  protected $slotTime;
77 
78  const AWAKE_ONE = 1; // wake-up if when a slot can be taken from an existing process
79  const AWAKE_ALL = 2; // wake-up if an existing process finishes and wake up such others
80 
82  protected static $active = null;
83 
84  function __construct( $conf, $type, $key ) {
85  parent::__construct( $conf, $type, $key );
86 
87  $this->serversByLabel = $conf['servers'];
88 
89  $serverLabels = array_keys( $conf['servers'] );
90  $this->ring = new HashRing( array_fill_keys( $serverLabels, 10 ) );
91 
92  $conf['redisConfig']['serializer'] = 'none'; // for use with Lua
93  $this->pool = RedisConnectionPool::singleton( $conf['redisConfig'] );
94  $this->logger = \MediaWiki\Logger\LoggerFactory::getInstance( 'redis' );
95 
96  $this->keySha1 = sha1( $this->key );
97  $met = ini_get( 'max_execution_time' ); // usually 0 in CLI mode
98  $this->lockTTL = $met ? 2 * $met : 3600;
99 
100  if ( self::$active === null ) {
101  self::$active = [];
102  register_shutdown_function( [ __CLASS__, 'releaseAll' ] );
103  }
104  }
105 
109  protected function getConnection() {
110  if ( !isset( $this->conn ) ) {
111  $conn = false;
112  $servers = $this->ring->getLocations( $this->key, 3 );
113  ArrayUtils::consistentHashSort( $servers, $this->key );
114  foreach ( $servers as $server ) {
115  $conn = $this->pool->getConnection( $this->serversByLabel[$server], $this->logger );
116  if ( $conn ) {
117  break;
118  }
119  }
120  if ( !$conn ) {
121  return Status::newFatal( 'pool-servererror', implode( ', ', $servers ) );
122  }
123  $this->conn = $conn;
124  }
125  return Status::newGood( $this->conn );
126  }
127 
128  function acquireForMe() {
129  $status = $this->precheckAcquire();
130  if ( !$status->isGood() ) {
131  return $status;
132  }
133 
134  return $this->waitForSlotOrNotif( self::AWAKE_ONE );
135  }
136 
137  function acquireForAnyone() {
138  $status = $this->precheckAcquire();
139  if ( !$status->isGood() ) {
140  return $status;
141  }
142 
143  return $this->waitForSlotOrNotif( self::AWAKE_ALL );
144  }
145 
146  function release() {
147  if ( $this->slot === null ) {
148  return Status::newGood( PoolCounter::NOT_LOCKED ); // not locked
149  }
150 
151  $status = $this->getConnection();
152  if ( !$status->isOK() ) {
153  return $status;
154  }
156  $conn = $status->value;
157  '@phan-var RedisConnRef $conn';
158 
159  // phpcs:disable Generic.Files.LineLength
160  static $script =
162 <<<LUA
163  local kSlots,kSlotsNextRelease,kWakeup,kWaiting = unpack(KEYS)
164  local rMaxWorkers,rExpiry,rSlot,rSlotTime,rAwakeAll,rTime = unpack(ARGV)
165  -- Add the slots back to the list (if rSlot is "w" then it is not a slot).
166  -- Treat the list as expired if the "next release" time sorted-set is missing.
167  if rSlot ~= 'w' and redis.call('exists',kSlotsNextRelease) == 1 then
168  if 1*redis.call('zScore',kSlotsNextRelease,rSlot) ~= (rSlotTime + rExpiry) then
169  -- Slot lock expired and was released already
170  elseif redis.call('lLen',kSlots) >= 1*rMaxWorkers then
171  -- Slots somehow got out of sync; reset the list for sanity
172  redis.call('del',kSlots,kSlotsNextRelease)
173  elseif redis.call('lLen',kSlots) == (1*rMaxWorkers - 1) and redis.call('zCard',kWaiting) == 0 then
174  -- Slot list will be made full; clear it to save space (it re-inits as needed)
175  -- since nothing is waiting on being unblocked by a push to the list
176  redis.call('del',kSlots,kSlotsNextRelease)
177  else
178  -- Add slot back to pool and update the "next release" time
179  redis.call('rPush',kSlots,rSlot)
180  redis.call('zAdd',kSlotsNextRelease,rTime + 30,rSlot)
181  -- Always keep renewing the expiry on use
182  redis.call('expireAt',kSlots,math.ceil(rTime + rExpiry))
183  redis.call('expireAt',kSlotsNextRelease,math.ceil(rTime + rExpiry))
184  end
185  end
186  -- Update an ephemeral list to wake up other clients that can
187  -- reuse any cached work from this process. Only do this if no
188  -- slots are currently free (e.g. clients could be waiting).
189  if 1*rAwakeAll == 1 then
190  local count = redis.call('zCard',kWaiting)
191  for i = 1,count do
192  redis.call('rPush',kWakeup,'w')
193  end
194  redis.call('pexpire',kWakeup,1)
195  end
196  return 1
197 LUA;
198  // phpcs:enable
199 
200  try {
201  $conn->luaEval( $script,
202  [
203  $this->getSlotListKey(),
204  $this->getSlotRTimeSetKey(),
205  $this->getWakeupListKey(),
206  $this->getWaitSetKey(),
207  $this->workers,
208  $this->lockTTL,
209  $this->slot,
210  $this->slotTime, // used for CAS-style sanity check
211  ( $this->onRelease === self::AWAKE_ALL ) ? 1 : 0,
212  microtime( true )
213  ],
214  4 # number of first argument(s) that are keys
215  );
216  } catch ( RedisException $e ) {
217  return Status::newFatal( 'pool-error-unknown', $e->getMessage() );
218  }
219 
220  $this->slot = null;
221  $this->slotTime = null;
222  $this->onRelease = null;
223  unset( self::$active[$this->session] );
224 
225  $this->onRelease();
226 
228  }
229 
234  protected function waitForSlotOrNotif( $doWakeup ) {
235  if ( $this->slot !== null ) {
236  return Status::newGood( PoolCounter::LOCK_HELD ); // already acquired
237  }
238 
239  $status = $this->getConnection();
240  if ( !$status->isOK() ) {
241  return $status;
242  }
244  $conn = $status->value;
245  '@phan-var RedisConnRef $conn';
246 
247  $now = microtime( true );
248  try {
249  $slot = $this->initAndPopPoolSlotList( $conn, $now );
250  if ( ctype_digit( $slot ) ) {
251  // Pool slot acquired by this process
252  $slotTime = $now;
253  } elseif ( $slot === 'QUEUE_FULL' ) {
254  // Too many processes are waiting for pooled processes to finish
256  } elseif ( $slot === 'QUEUE_WAIT' ) {
257  // This process is now registered as waiting
258  $keys = ( $doWakeup == self::AWAKE_ALL )
259  // Wait for an open slot or wake-up signal (preferring the latter)
260  ? [ $this->getWakeupListKey(), $this->getSlotListKey() ]
261  // Just wait for an actual pool slot
262  : [ $this->getSlotListKey() ];
263 
264  $res = $conn->blPop( $keys, $this->timeout );
265  if ( $res === [] ) {
266  $conn->zRem( $this->getWaitSetKey(), $this->session ); // no longer waiting
268  }
269 
270  $slot = $res[1]; // pool slot or "w" for wake-up notifications
271  $slotTime = microtime( true ); // last microtime() was a few RTTs ago
272  // Unregister this process as waiting and bump slot "next release" time
274  } else {
275  return Status::newFatal( 'pool-error-unknown', "Server gave slot '$slot'." );
276  }
277  } catch ( RedisException $e ) {
278  return Status::newFatal( 'pool-error-unknown', $e->getMessage() );
279  }
280 
281  if ( $slot !== 'w' ) {
282  $this->slot = $slot;
283  $this->slotTime = $slotTime;
284  $this->onRelease = $doWakeup;
285  self::$active[$this->session] = $this;
286  }
287 
288  $this->onAcquire();
289 
291  }
292 
298  protected function initAndPopPoolSlotList( RedisConnRef $conn, $now ) {
299  static $script =
301 <<<LUA
302  local kSlots,kSlotsNextRelease,kSlotWaits = unpack(KEYS)
303  local rMaxWorkers,rMaxQueue,rTimeout,rExpiry,rSess,rTime = unpack(ARGV)
304  -- Initialize if the "next release" time sorted-set is empty. The slot key
305  -- itself is empty if all slots are busy or when nothing is initialized.
306  -- If the list is empty but the set is not, then it is the latter case.
307  -- For sanity, if the list exists but not the set, then reset everything.
308  if redis.call('exists',kSlotsNextRelease) == 0 then
309  redis.call('del',kSlots)
310  for i = 1,1*rMaxWorkers do
311  redis.call('rPush',kSlots,i)
312  redis.call('zAdd',kSlotsNextRelease,-1,i)
313  end
314  -- Otherwise do maintenance to clean up after network partitions
315  else
316  -- Find stale slot locks and add free them (avoid duplicates for sanity)
317  local staleLocks = redis.call('zRangeByScore',kSlotsNextRelease,0,rTime)
318  for k,slot in ipairs(staleLocks) do
319  redis.call('lRem',kSlots,0,slot)
320  redis.call('rPush',kSlots,slot)
321  redis.call('zAdd',kSlotsNextRelease,rTime + 30,slot)
322  end
323  -- Find stale wait slot entries and remove them
324  redis.call('zRemRangeByScore',kSlotWaits,0,rTime - 2*rTimeout)
325  end
326  local slot
327  -- Try to acquire a slot if possible now
328  if redis.call('lLen',kSlots) > 0 then
329  slot = redis.call('lPop',kSlots)
330  -- Update the slot "next release" time
331  redis.call('zAdd',kSlotsNextRelease,rTime + rExpiry,slot)
332  elseif redis.call('zCard',kSlotWaits) >= 1*rMaxQueue then
333  slot = 'QUEUE_FULL'
334  else
335  slot = 'QUEUE_WAIT'
336  -- Register this process as waiting
337  redis.call('zAdd',kSlotWaits,rTime,rSess)
338  redis.call('expireAt',kSlotWaits,math.ceil(rTime + 2*rTimeout))
339  end
340  -- Always keep renewing the expiry on use
341  redis.call('expireAt',kSlots,math.ceil(rTime + rExpiry))
342  redis.call('expireAt',kSlotsNextRelease,math.ceil(rTime + rExpiry))
343  return slot
344 LUA;
345  return $conn->luaEval( $script,
346  [
347  $this->getSlotListKey(),
348  $this->getSlotRTimeSetKey(),
349  $this->getWaitSetKey(),
350  $this->workers,
351  $this->maxqueue,
352  $this->timeout,
353  $this->lockTTL,
354  $this->session,
355  $now
356  ],
357  3 # number of first argument(s) that are keys
358  );
359  }
360 
367  protected function registerAcquisitionTime( RedisConnRef $conn, $slot, $now ) {
368  static $script =
370 <<<LUA
371  local kSlots,kSlotsNextRelease,kSlotWaits = unpack(KEYS)
372  local rSlot,rExpiry,rSess,rTime = unpack(ARGV)
373  -- If rSlot is 'w' then the client was told to wake up but got no slot
374  if rSlot ~= 'w' then
375  -- Update the slot "next release" time
376  redis.call('zAdd',kSlotsNextRelease,rTime + rExpiry,rSlot)
377  -- Always keep renewing the expiry on use
378  redis.call('expireAt',kSlots,math.ceil(rTime + rExpiry))
379  redis.call('expireAt',kSlotsNextRelease,math.ceil(rTime + rExpiry))
380  end
381  -- Unregister this process as waiting
382  redis.call('zRem',kSlotWaits,rSess)
383  return 1
384 LUA;
385  return $conn->luaEval( $script,
386  [
387  $this->getSlotListKey(),
388  $this->getSlotRTimeSetKey(),
389  $this->getWaitSetKey(),
390  $slot,
391  $this->lockTTL,
392  $this->session,
393  $now
394  ],
395  3 # number of first argument(s) that are keys
396  );
397  }
398 
402  protected function getSlotListKey() {
403  return "poolcounter:l-slots-{$this->keySha1}-{$this->workers}";
404  }
405 
409  protected function getSlotRTimeSetKey() {
410  return "poolcounter:z-renewtime-{$this->keySha1}-{$this->workers}";
411  }
412 
416  protected function getWaitSetKey() {
417  return "poolcounter:z-wait-{$this->keySha1}-{$this->workers}";
418  }
419 
423  protected function getWakeupListKey() {
424  return "poolcounter:l-wakeup-{$this->keySha1}-{$this->workers}";
425  }
426 
430  public static function releaseAll() {
431  foreach ( self::$active as $poolCounter ) {
432  try {
433  if ( $poolCounter->slot !== null ) {
434  $poolCounter->release();
435  }
436  } catch ( Exception $e ) {
437  }
438  }
439  }
440 }
PoolCounterRedis\AWAKE_ONE
const AWAKE_ONE
Definition: PoolCounterRedis.php:78
PoolCounterRedis\$onRelease
int $onRelease
AWAKE_* constant.
Definition: PoolCounterRedis.php:72
ArrayUtils\consistentHashSort
static consistentHashSort(&$array, $key, $separator="\000")
Sort the given array in a pseudo-random order which depends only on the given key and each element va...
Definition: ArrayUtils.php:49
RedisConnectionPool\singleton
static singleton(array $options)
Definition: RedisConnectionPool.php:146
PoolCounterRedis\getWakeupListKey
getWakeupListKey()
Definition: PoolCounterRedis.php:423
StatusValue\newFatal
static newFatal( $message,... $parameters)
Factory function for fatal errors.
Definition: StatusValue.php:69
PoolCounterRedis\acquireForMe
acquireForMe()
I want to do this task and I need to do it myself.
Definition: PoolCounterRedis.php:128
PoolCounterRedis\$conn
RedisConnRef $conn
Definition: PoolCounterRedis.php:68
PoolCounterRedis\getConnection
getConnection()
Definition: PoolCounterRedis.php:109
PoolCounterRedis\$slot
string $slot
Pool slot value.
Definition: PoolCounterRedis.php:70
PoolCounter\onAcquire
onAcquire()
Update any lock tracking information when the lock is acquired.
Definition: PoolCounter.php:183
PoolCounterRedis\$lockTTL
int $lockTTL
TTL for locks to expire (work should finish in this time)
Definition: PoolCounterRedis.php:65
PoolCounter\LOCK_HELD
const LOCK_HELD
Definition: PoolCounter.php:55
MediaWiki\Logger\LoggerFactory\getInstance
static getInstance( $channel)
Get a named logger instance from the currently configured logger factory.
Definition: LoggerFactory.php:92
PoolCounterRedis\$pool
RedisConnectionPool $pool
Definition: PoolCounterRedis.php:57
PoolCounter\NOT_LOCKED
const NOT_LOCKED
Definition: PoolCounter.php:52
PoolCounter\LOCKED
const LOCKED
Definition: PoolCounter.php:47
PoolCounterRedis\waitForSlotOrNotif
waitForSlotOrNotif( $doWakeup)
Definition: PoolCounterRedis.php:234
PoolCounterRedis\AWAKE_ALL
const AWAKE_ALL
Definition: PoolCounterRedis.php:79
PoolCounterRedis\$session
string $session
Unique string to identify this process.
Definition: PoolCounterRedis.php:74
$res
$res
Definition: testCompression.php:52
PoolCounterRedis\initAndPopPoolSlotList
initAndPopPoolSlotList(RedisConnRef $conn, $now)
Definition: PoolCounterRedis.php:298
PoolCounter\onRelease
onRelease()
Update any lock tracking information when the lock is released.
Definition: PoolCounter.php:191
PoolCounter
When you have many workers (threads/servers) giving service, and a cached item expensive to produce e...
Definition: PoolCounter.php:45
PoolCounterRedis\$serversByLabel
array $serversByLabel
(server label => host) map
Definition: PoolCounterRedis.php:61
PoolCounterRedis\$logger
LoggerInterface $logger
Definition: PoolCounterRedis.php:59
PoolCounterRedis\acquireForAnyone
acquireForAnyone()
I want to do this task, but if anyone else does it instead, it's also fine for me.
Definition: PoolCounterRedis.php:137
PoolCounter\$key
string $key
All workers with the same key share the lock.
Definition: PoolCounter.php:58
PoolCounterRedis\$ring
HashRing $ring
Definition: PoolCounterRedis.php:55
RedisConnectionPool
Helper class to manage Redis connections.
Definition: RedisConnectionPool.php:41
PoolCounter\QUEUE_FULL
const QUEUE_FULL
Definition: PoolCounter.php:53
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
PoolCounterRedis\registerAcquisitionTime
registerAcquisitionTime(RedisConnRef $conn, $slot, $now)
Definition: PoolCounterRedis.php:367
PoolCounterRedis\releaseAll
static releaseAll()
Try to make sure that locks get released (even with exceptions and fatals)
Definition: PoolCounterRedis.php:430
RedisConnRef\luaEval
luaEval( $script, array $params, $numKeys)
Definition: RedisConnRef.php:244
PoolCounterRedis\getWaitSetKey
getWaitSetKey()
Definition: PoolCounterRedis.php:416
PoolCounterRedis\__construct
__construct( $conf, $type, $key)
Definition: PoolCounterRedis.php:84
$status
return $status
Definition: SyntaxHighlight.php:347
PoolCounterRedis\$slotTime
int $slotTime
UNIX timestamp.
Definition: PoolCounterRedis.php:76
PoolCounterRedis\getSlotRTimeSetKey
getSlotRTimeSetKey()
Definition: PoolCounterRedis.php:409
RedisConnRef
Helper class to handle automatically marking connectons as reusable (via RAII pattern)
Definition: RedisConnRef.php:31
$keys
$keys
Definition: testCompression.php:67
PoolCounterRedis\release
release()
I have successfully finished my task.
Definition: PoolCounterRedis.php:146
PoolCounterRedis\getSlotListKey
getSlotListKey()
Definition: PoolCounterRedis.php:402
PoolCounterRedis\$active
static PoolCounterRedis[] $active
List of active PoolCounterRedis objects in this script.
Definition: PoolCounterRedis.php:82
PoolCounter\RELEASED
const RELEASED
Definition: PoolCounter.php:48
PoolCounter\TIMEOUT
const TIMEOUT
Definition: PoolCounter.php:54
HashRing
Convenience class for weighted consistent hash rings.
Definition: HashRing.php:39
Update
Definition: update.php:9
PoolCounter\precheckAcquire
precheckAcquire()
Checks that the lock request is sane.
Definition: PoolCounter.php:158
PoolCounter\DONE
const DONE
Definition: PoolCounter.php:49
PoolCounterRedis
Version of PoolCounter that uses Redis.
Definition: PoolCounterRedis.php:53
PoolCounterRedis\$keySha1
string $keySha1
SHA-1 of the key.
Definition: PoolCounterRedis.php:63
$type
$type
Definition: testCompression.php:48