3 * Redis-backed job queue code.
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
21 * @author Aaron Schulz
23 use Psr\Log\LoggerInterface
;
26 * Class to handle job queues stored in Redis
28 * This is a faster and less resource-intensive job queue than JobQueueDB.
29 * All data for a queue using this class is placed into one redis server.
30 * The mediawiki/services/jobrunner background service must be set up and running.
32 * There are eight main redis keys (per queue) used to track jobs:
33 * - l-unclaimed : A list of job IDs used for ready unclaimed jobs
34 * - z-claimed : A sorted set of (job ID, UNIX timestamp as score) used for job retries
35 * - z-abandoned : A sorted set of (job ID, UNIX timestamp as score) used for broken jobs
36 * - z-delayed : A sorted set of (job ID, UNIX timestamp as score) used for delayed jobs
37 * - h-idBySha1 : A hash of (SHA1 => job ID) for unclaimed jobs used for de-duplication
38 * - h-sha1ById : A hash of (job ID => SHA1) for unclaimed jobs used for de-duplication
39 * - h-attempts : A hash of (job ID => attempt count) used for job claiming/retries
40 * - h-data : A hash of (job ID => serialized blobs) for job storage
41 * A job ID can be in only one of z-delayed, l-unclaimed, z-claimed, and z-abandoned.
42 * If an ID appears in any of those lists, it should have a h-data entry for its ID.
43 * If a job has a SHA1 de-duplication value and its ID is in l-unclaimed or z-delayed, then
44 * there should be no other such jobs with that SHA1. Every h-idBySha1 entry has an h-sha1ById
45 * entry and every h-sha1ById must refer to an ID that is l-unclaimed. If a job has its
46 * ID in z-claimed or z-abandoned, then it must also have an h-attempts entry for its ID.
48 * The following keys are used to track queue states:
49 * - s-queuesWithJobs : A set of all queues with non-abandoned jobs
51 * The background service takes care of undelaying, recycling, and pruning jobs as well as
52 * removing s-queuesWithJobs entries as queues empty.
54 * Additionally, "rootjob:* keys track "root jobs" used for additional de-duplication.
55 * Aside from root job keys, all keys have no expiry, and are only removed when jobs are run.
56 * All the keys are prefixed with the relevant wiki ID information.
58 * This class requires Redis 2.6 as it makes use Lua scripts for fast atomic operations.
59 * Additionally, it should be noted that redis has different persistence modes, such
60 * as rdb snapshots, journaling, and no persistence. Appropriate configuration should be
61 * made on the servers based on what queues are using it and what tolerance they have.
67 class JobQueueRedis
extends JobQueue
{
68 /** @var RedisConnectionPool */
70 /** @var LoggerInterface */
73 /** @var string Server address */
75 /** @var string Compression method to use */
76 protected $compression;
79 * @param array $params Possible keys:
80 * - redisConfig : An array of parameters to RedisConnectionPool::__construct().
81 * Note that the serializer option is ignored as "none" is always used.
82 * - redisServer : A hostname/port combination or the absolute path of a UNIX socket.
83 * If a hostname is specified but no port, the standard port number
84 * 6379 will be used. Required.
85 * - compression : The type of compression to use; one of (none,gzip).
86 * - daemonized : Set to true if the redisJobRunnerService runs in the background.
87 * This will disable job recycling/undelaying from the MediaWiki side
88 * to avoid redundance and out-of-sync configuration.
89 * @throws InvalidArgumentException
91 public function __construct( array $params ) {
92 parent
::__construct( $params );
93 $params['redisConfig']['serializer'] = 'none'; // make it easy to use Lua
94 $this->server
= $params['redisServer'];
95 $this->compression
= isset( $params['compression'] ) ?
$params['compression'] : 'none';
96 $this->redisPool
= RedisConnectionPool
::singleton( $params['redisConfig'] );
97 if ( empty( $params['daemonized'] ) ) {
98 throw new InvalidArgumentException(
99 "Non-daemonized mode is no longer supported. Please install the " .
100 "mediawiki/services/jobrunner service and update \$wgJobTypeConf as needed." );
102 $this->logger
= \MediaWiki\Logger\LoggerFactory
::getInstance( 'redis' );
105 protected function supportedOrders() {
106 return [ 'timestamp', 'fifo' ];
109 protected function optimalOrder() {
113 protected function supportsDelayedJobs() {
118 * @see JobQueue::doIsEmpty()
120 * @throws JobQueueError
122 protected function doIsEmpty() {
123 return $this->doGetSize() == 0;
127 * @see JobQueue::doGetSize()
129 * @throws JobQueueError
131 protected function doGetSize() {
132 $conn = $this->getConnection();
134 return $conn->lSize( $this->getQueueKey( 'l-unclaimed' ) );
135 } catch ( RedisException
$e ) {
136 $this->throwRedisException( $conn, $e );
141 * @see JobQueue::doGetAcquiredCount()
143 * @throws JobQueueError
145 protected function doGetAcquiredCount() {
146 $conn = $this->getConnection();
148 $conn->multi( Redis
::PIPELINE
);
149 $conn->zSize( $this->getQueueKey( 'z-claimed' ) );
150 $conn->zSize( $this->getQueueKey( 'z-abandoned' ) );
152 return array_sum( $conn->exec() );
153 } catch ( RedisException
$e ) {
154 $this->throwRedisException( $conn, $e );
159 * @see JobQueue::doGetDelayedCount()
161 * @throws JobQueueError
163 protected function doGetDelayedCount() {
164 $conn = $this->getConnection();
166 return $conn->zSize( $this->getQueueKey( 'z-delayed' ) );
167 } catch ( RedisException
$e ) {
168 $this->throwRedisException( $conn, $e );
173 * @see JobQueue::doGetAbandonedCount()
175 * @throws JobQueueError
177 protected function doGetAbandonedCount() {
178 $conn = $this->getConnection();
180 return $conn->zSize( $this->getQueueKey( 'z-abandoned' ) );
181 } catch ( RedisException
$e ) {
182 $this->throwRedisException( $conn, $e );
187 * @see JobQueue::doBatchPush()
188 * @param IJobSpecification[] $jobs
191 * @throws JobQueueError
193 protected function doBatchPush( array $jobs, $flags ) {
194 // Convert the jobs into field maps (de-duplicated against each other)
195 $items = []; // (job ID => job fields map)
196 foreach ( $jobs as $job ) {
197 $item = $this->getNewJobFields( $job );
198 if ( strlen( $item['sha1'] ) ) { // hash identifier => de-duplicate
199 $items[$item['sha1']] = $item;
201 $items[$item['uuid']] = $item;
205 if ( !count( $items ) ) {
206 return; // nothing to do
209 $conn = $this->getConnection();
211 // Actually push the non-duplicate jobs into the queue...
212 if ( $flags & self
::QOS_ATOMIC
) {
213 $batches = [ $items ]; // all or nothing
215 $batches = array_chunk( $items, 100 ); // avoid tying up the server
219 foreach ( $batches as $itemBatch ) {
220 $added = $this->pushBlobs( $conn, $itemBatch );
221 if ( is_int( $added ) ) {
224 $failed +
= count( $itemBatch );
227 JobQueue
::incrStats( 'inserts', $this->type
, count( $items ) );
228 JobQueue
::incrStats( 'inserts_actual', $this->type
, $pushed );
229 JobQueue
::incrStats( 'dupe_inserts', $this->type
,
230 count( $items ) - $failed - $pushed );
232 $err = "Could not insert {$failed} {$this->type} job(s).";
233 wfDebugLog( 'JobQueueRedis', $err );
234 throw new RedisException( $err );
236 } catch ( RedisException
$e ) {
237 $this->throwRedisException( $conn, $e );
242 * @param RedisConnRef $conn
243 * @param array $items List of results from JobQueueRedis::getNewJobFields()
244 * @return int Number of jobs inserted (duplicates are ignored)
245 * @throws RedisException
247 protected function pushBlobs( RedisConnRef
$conn, array $items ) {
248 $args = [ $this->encodeQueueName() ];
249 // Next args come in 4s ([id, sha1, rtime, blob [, id, sha1, rtime, blob ... ] ] )
250 foreach ( $items as $item ) {
251 $args[] = (string)$item['uuid'];
252 $args[] = (string)$item['sha1'];
253 $args[] = (string)$item['rtimestamp'];
254 $args[] = (string)$this->serialize( $item );
259 local kUnclaimed, kSha1ById, kIdBySha1, kDelayed, kData, kQwJobs = unpack(KEYS)
260 -- First argument is the queue ID
261 local queueId = ARGV[1]
262 -- Next arguments all come in 4s (one per job)
263 local variadicArgCount = #ARGV - 1
264 if variadicArgCount % 4 ~= 0 then
265 return redis.error_reply('Unmatched arguments')
267 -- Insert each job into this queue as needed
270 local id,sha1,rtimestamp,blob = ARGV[i],ARGV[i+1],ARGV[i+2],ARGV[i+3]
271 if sha1 == '' or redis.call('hExists',kIdBySha1,sha1) == 0 then
272 if 1*rtimestamp > 0 then
273 -- Insert into delayed queue (release time as score)
274 redis.call('zAdd',kDelayed,rtimestamp,id)
276 -- Insert into unclaimed queue
277 redis.call('lPush',kUnclaimed,id)
280 redis.call('hSet',kSha1ById,id,sha1)
281 redis.call('hSet',kIdBySha1,sha1,id)
283 redis.call('hSet',kData,id,blob)
287 -- Mark this queue as having jobs
288 redis.call('sAdd',kQwJobs,queueId)
291 return $conn->luaEval( $script,
294 $this->getQueueKey( 'l-unclaimed' ), # KEYS[1]
295 $this->getQueueKey( 'h-sha1ById' ), # KEYS[2]
296 $this->getQueueKey( 'h-idBySha1' ), # KEYS[3]
297 $this->getQueueKey( 'z-delayed' ), # KEYS[4]
298 $this->getQueueKey( 'h-data' ), # KEYS[5]
299 $this->getGlobalKey( 's-queuesWithJobs' ), # KEYS[6]
303 6 # number of first argument(s) that are keys
308 * @see JobQueue::doPop()
310 * @throws JobQueueError
312 protected function doPop() {
315 $conn = $this->getConnection();
318 $blob = $this->popAndAcquireBlob( $conn );
319 if ( !is_string( $blob ) ) {
320 break; // no jobs; nothing to do
323 JobQueue
::incrStats( 'pops', $this->type
);
324 $item = $this->unserialize( $blob );
325 if ( $item === false ) {
326 wfDebugLog( 'JobQueueRedis', "Could not unserialize {$this->type} job." );
330 // If $item is invalid, the runner loop recyling will cleanup as needed
331 $job = $this->getJobFromFields( $item ); // may be false
332 } while ( !$job ); // job may be false if invalid
333 } catch ( RedisException
$e ) {
334 $this->throwRedisException( $conn, $e );
341 * @param RedisConnRef $conn
342 * @return array Serialized string or false
343 * @throws RedisException
345 protected function popAndAcquireBlob( RedisConnRef
$conn ) {
349 local kUnclaimed, kSha1ById, kIdBySha1, kClaimed, kAttempts, kData = unpack(KEYS)
350 local rTime = unpack(ARGV)
351 -- Pop an item off the queue
352 local id = redis.call('rPop',kUnclaimed)
356 -- Allow new duplicates of this job
357 local sha1 = redis.call('hGet',kSha1ById,id)
358 if sha1 then redis.call('hDel',kIdBySha1,sha1) end
359 redis.call('hDel',kSha1ById,id)
360 -- Mark the jobs as claimed and return it
361 redis.call('zAdd',kClaimed,rTime,id)
362 redis.call('hIncrBy',kAttempts,id,1)
363 return redis.call('hGet',kData,id)
365 return $conn->luaEval( $script,
367 $this->getQueueKey( 'l-unclaimed' ), # KEYS[1]
368 $this->getQueueKey( 'h-sha1ById' ), # KEYS[2]
369 $this->getQueueKey( 'h-idBySha1' ), # KEYS[3]
370 $this->getQueueKey( 'z-claimed' ), # KEYS[4]
371 $this->getQueueKey( 'h-attempts' ), # KEYS[5]
372 $this->getQueueKey( 'h-data' ), # KEYS[6]
373 time(), # ARGV[1] (injected to be replication-safe)
375 6 # number of first argument(s) that are keys
380 * @see JobQueue::doAck()
383 * @throws UnexpectedValueException
384 * @throws JobQueueError
386 protected function doAck( Job
$job ) {
387 if ( !isset( $job->metadata
['uuid'] ) ) {
388 throw new UnexpectedValueException( "Job of type '{$job->getType()}' has no UUID." );
391 $uuid = $job->metadata
['uuid'];
392 $conn = $this->getConnection();
397 local kClaimed, kAttempts, kData = unpack(KEYS)
398 local id = unpack(ARGV)
399 -- Unmark the job as claimed
400 local removed = redis.call('zRem',kClaimed,id)
401 -- Check if the job was recycled
405 -- Delete the retry data
406 redis.call('hDel',kAttempts,id)
407 -- Delete the job data itself
408 return redis.call('hDel',kData,id)
410 $res = $conn->luaEval( $script,
412 $this->getQueueKey( 'z-claimed' ), # KEYS[1]
413 $this->getQueueKey( 'h-attempts' ), # KEYS[2]
414 $this->getQueueKey( 'h-data' ), # KEYS[3]
417 3 # number of first argument(s) that are keys
421 wfDebugLog( 'JobQueueRedis', "Could not acknowledge {$this->type} job $uuid." );
426 JobQueue
::incrStats( 'acks', $this->type
);
427 } catch ( RedisException
$e ) {
428 $this->throwRedisException( $conn, $e );
435 * @see JobQueue::doDeduplicateRootJob()
436 * @param IJobSpecification $job
438 * @throws JobQueueError
439 * @throws LogicException
441 protected function doDeduplicateRootJob( IJobSpecification
$job ) {
442 if ( !$job->hasRootJobParams() ) {
443 throw new LogicException( "Cannot register root job; missing parameters." );
445 $params = $job->getRootJobParams();
447 $key = $this->getRootJobCacheKey( $params['rootJobSignature'] );
449 $conn = $this->getConnection();
451 $timestamp = $conn->get( $key ); // current last timestamp of this job
452 if ( $timestamp && $timestamp >= $params['rootJobTimestamp'] ) {
453 return true; // a newer version of this root job was enqueued
456 // Update the timestamp of the last root job started at the location...
457 return $conn->set( $key, $params['rootJobTimestamp'], self
::ROOTJOB_TTL
); // 2 weeks
458 } catch ( RedisException
$e ) {
459 $this->throwRedisException( $conn, $e );
464 * @see JobQueue::doIsRootJobOldDuplicate()
467 * @throws JobQueueError
469 protected function doIsRootJobOldDuplicate( Job
$job ) {
470 if ( !$job->hasRootJobParams() ) {
471 return false; // job has no de-deplication info
473 $params = $job->getRootJobParams();
475 $conn = $this->getConnection();
477 // Get the last time this root job was enqueued
478 $timestamp = $conn->get( $this->getRootJobCacheKey( $params['rootJobSignature'] ) );
479 } catch ( RedisException
$e ) {
481 $this->throwRedisException( $conn, $e );
484 // Check if a new root job was started at the location after this one's...
485 return ( $timestamp && $timestamp > $params['rootJobTimestamp'] );
489 * @see JobQueue::doDelete()
491 * @throws JobQueueError
493 protected function doDelete() {
494 static $props = [ 'l-unclaimed', 'z-claimed', 'z-abandoned',
495 'z-delayed', 'h-idBySha1', 'h-sha1ById', 'h-attempts', 'h-data' ];
497 $conn = $this->getConnection();
500 foreach ( $props as $prop ) {
501 $keys[] = $this->getQueueKey( $prop );
504 $ok = ( $conn->delete( $keys ) !== false );
505 $conn->sRem( $this->getGlobalKey( 's-queuesWithJobs' ), $this->encodeQueueName() );
508 } catch ( RedisException
$e ) {
509 $this->throwRedisException( $conn, $e );
514 * @see JobQueue::getAllQueuedJobs()
516 * @throws JobQueueError
518 public function getAllQueuedJobs() {
519 $conn = $this->getConnection();
521 $uids = $conn->lRange( $this->getQueueKey( 'l-unclaimed' ), 0, -1 );
522 } catch ( RedisException
$e ) {
523 $this->throwRedisException( $conn, $e );
526 return $this->getJobIterator( $conn, $uids );
530 * @see JobQueue::getAllDelayedJobs()
532 * @throws JobQueueError
534 public function getAllDelayedJobs() {
535 $conn = $this->getConnection();
537 $uids = $conn->zRange( $this->getQueueKey( 'z-delayed' ), 0, -1 );
538 } catch ( RedisException
$e ) {
539 $this->throwRedisException( $conn, $e );
542 return $this->getJobIterator( $conn, $uids );
546 * @see JobQueue::getAllAcquiredJobs()
548 * @throws JobQueueError
550 public function getAllAcquiredJobs() {
551 $conn = $this->getConnection();
553 $uids = $conn->zRange( $this->getQueueKey( 'z-claimed' ), 0, -1 );
554 } catch ( RedisException
$e ) {
555 $this->throwRedisException( $conn, $e );
558 return $this->getJobIterator( $conn, $uids );
562 * @see JobQueue::getAllAbandonedJobs()
564 * @throws JobQueueError
566 public function getAllAbandonedJobs() {
567 $conn = $this->getConnection();
569 $uids = $conn->zRange( $this->getQueueKey( 'z-abandoned' ), 0, -1 );
570 } catch ( RedisException
$e ) {
571 $this->throwRedisException( $conn, $e );
574 return $this->getJobIterator( $conn, $uids );
578 * @param RedisConnRef $conn
579 * @param array $uids List of job UUIDs
580 * @return MappedIterator
582 protected function getJobIterator( RedisConnRef
$conn, array $uids ) {
583 return new MappedIterator(
585 function ( $uid ) use ( $conn ) {
586 return $this->getJobFromUidInternal( $uid, $conn );
588 [ 'accept' => function ( $job ) {
589 return is_object( $job );
594 public function getCoalesceLocationInternal() {
595 return "RedisServer:" . $this->server
;
598 protected function doGetSiblingQueuesWithJobs( array $types ) {
599 return array_keys( array_filter( $this->doGetSiblingQueueSizes( $types ) ) );
602 protected function doGetSiblingQueueSizes( array $types ) {
603 $sizes = []; // (type => size)
604 $types = array_values( $types ); // reindex
605 $conn = $this->getConnection();
607 $conn->multi( Redis
::PIPELINE
);
608 foreach ( $types as $type ) {
609 $conn->lSize( $this->getQueueKey( 'l-unclaimed', $type ) );
611 $res = $conn->exec();
612 if ( is_array( $res ) ) {
613 foreach ( $res as $i => $size ) {
614 $sizes[$types[$i]] = $size;
617 } catch ( RedisException
$e ) {
618 $this->throwRedisException( $conn, $e );
625 * This function should not be called outside JobQueueRedis
628 * @param RedisConnRef $conn
629 * @return Job|bool Returns false if the job does not exist
630 * @throws JobQueueError
631 * @throws UnexpectedValueException
633 public function getJobFromUidInternal( $uid, RedisConnRef
$conn ) {
635 $data = $conn->hGet( $this->getQueueKey( 'h-data' ), $uid );
636 if ( $data === false ) {
637 return false; // not found
639 $item = $this->unserialize( $data );
640 if ( !is_array( $item ) ) { // this shouldn't happen
641 throw new UnexpectedValueException( "Could not find job with ID '$uid'." );
643 $title = Title
::makeTitle( $item['namespace'], $item['title'] );
644 $job = Job
::factory( $item['type'], $title, $item['params'] );
645 $job->metadata
['uuid'] = $item['uuid'];
646 $job->metadata
['timestamp'] = $item['timestamp'];
647 // Add in attempt count for debugging at showJobs.php
648 $job->metadata
['attempts'] = $conn->hGet( $this->getQueueKey( 'h-attempts' ), $uid );
651 } catch ( RedisException
$e ) {
652 $this->throwRedisException( $conn, $e );
657 * @return array List of (wiki,type) tuples for queues with non-abandoned jobs
658 * @throws JobQueueConnectionError
659 * @throws JobQueueError
661 public function getServerQueuesWithJobs() {
664 $conn = $this->getConnection();
666 $set = $conn->sMembers( $this->getGlobalKey( 's-queuesWithJobs' ) );
667 foreach ( $set as $queue ) {
668 $queues[] = $this->decodeQueueName( $queue );
670 } catch ( RedisException
$e ) {
671 $this->throwRedisException( $conn, $e );
678 * @param IJobSpecification $job
681 protected function getNewJobFields( IJobSpecification
$job ) {
683 // Fields that describe the nature of the job
684 'type' => $job->getType(),
685 'namespace' => $job->getTitle()->getNamespace(),
686 'title' => $job->getTitle()->getDBkey(),
687 'params' => $job->getParams(),
688 // Some jobs cannot run until a "release timestamp"
689 'rtimestamp' => $job->getReleaseTimestamp() ?
: 0,
690 // Additional job metadata
691 'uuid' => UIDGenerator
::newRawUUIDv4( UIDGenerator
::QUICK_RAND
),
692 'sha1' => $job->ignoreDuplicates()
693 ? Wikimedia\base_convert
( sha1( serialize( $job->getDeduplicationInfo() ) ), 16, 36, 31 )
695 'timestamp' => time() // UNIX timestamp
700 * @param array $fields
703 protected function getJobFromFields( array $fields ) {
704 $title = Title
::makeTitle( $fields['namespace'], $fields['title'] );
705 $job = Job
::factory( $fields['type'], $title, $fields['params'] );
706 $job->metadata
['uuid'] = $fields['uuid'];
707 $job->metadata
['timestamp'] = $fields['timestamp'];
713 * @param array $fields
714 * @return string Serialized and possibly compressed version of $fields
716 protected function serialize( array $fields ) {
717 $blob = serialize( $fields );
718 if ( $this->compression
=== 'gzip'
719 && strlen( $blob ) >= 1024
720 && function_exists( 'gzdeflate' )
722 $object = (object)[ 'blob' => gzdeflate( $blob ), 'enc' => 'gzip' ];
723 $blobz = serialize( $object );
725 return ( strlen( $blobz ) < strlen( $blob ) ) ?
$blobz : $blob;
732 * @param string $blob
733 * @return array|bool Unserialized version of $blob or false
735 protected function unserialize( $blob ) {
736 $fields = unserialize( $blob );
737 if ( is_object( $fields ) ) {
738 if ( $fields->enc
=== 'gzip' && function_exists( 'gzinflate' ) ) {
739 $fields = unserialize( gzinflate( $fields->blob
) );
745 return is_array( $fields ) ?
$fields : false;
749 * Get a connection to the server that handles all sub-queues for this queue
751 * @return RedisConnRef
752 * @throws JobQueueConnectionError
754 protected function getConnection() {
755 $conn = $this->redisPool
->getConnection( $this->server
, $this->logger
);
757 throw new JobQueueConnectionError(
758 "Unable to connect to redis server {$this->server}." );
765 * @param RedisConnRef $conn
766 * @param RedisException $e
767 * @throws JobQueueError
769 protected function throwRedisException( RedisConnRef
$conn, $e ) {
770 $this->redisPool
->handleError( $conn, $e );
771 throw new JobQueueError( "Redis server error: {$e->getMessage()}\n" );
775 * @return string JSON
777 private function encodeQueueName() {
778 return json_encode( [ $this->type
, $this->wiki
] );
782 * @param string $name JSON
783 * @return array (type, wiki)
785 private function decodeQueueName( $name ) {
786 return json_decode( $name );
790 * @param string $name
793 private function getGlobalKey( $name ) {
794 $parts = [ 'global', 'jobqueue', $name ];
795 foreach ( $parts as $part ) {
796 if ( !preg_match( '/[a-zA-Z0-9_-]+/', $part ) ) {
797 throw new InvalidArgumentException( "Key part characters are out of range." );
801 return implode( ':', $parts );
805 * @param string $prop
806 * @param string|null $type Override this for sibling queues
809 private function getQueueKey( $prop, $type = null ) {
810 $type = is_string( $type ) ?
$type : $this->type
;
811 list( $db, $prefix ) = wfSplitWikiID( $this->wiki
);
812 $keyspace = $prefix ?
"$db-$prefix" : $db;
814 $parts = [ $keyspace, 'jobqueue', $type, $prop ];
816 // Parts are typically ASCII, but encode for sanity to escape ":"
817 return implode( ':', array_map( 'rawurlencode', $parts ) );