MediaWiki  1.29.2
JobQueueRedis.php
Go to the documentation of this file.
1 <?php
23 use Psr\Log\LoggerInterface;
24 
67 class JobQueueRedis extends JobQueue {
69  protected $redisPool;
71  protected $logger;
72 
74  protected $server;
76  protected $compression;
77 
78  const MAX_PUSH_SIZE = 25; // avoid tying up the server
79 
93  public function __construct( array $params ) {
94  parent::__construct( $params );
95  $params['redisConfig']['serializer'] = 'none'; // make it easy to use Lua
96  $this->server = $params['redisServer'];
97  $this->compression = isset( $params['compression'] ) ? $params['compression'] : 'none';
98  $this->redisPool = RedisConnectionPool::singleton( $params['redisConfig'] );
99  if ( empty( $params['daemonized'] ) ) {
100  throw new InvalidArgumentException(
101  "Non-daemonized mode is no longer supported. Please install the " .
102  "mediawiki/services/jobrunner service and update \$wgJobTypeConf as needed." );
103  }
104  $this->logger = \MediaWiki\Logger\LoggerFactory::getInstance( 'redis' );
105  }
106 
107  protected function supportedOrders() {
108  return [ 'timestamp', 'fifo' ];
109  }
110 
111  protected function optimalOrder() {
112  return 'fifo';
113  }
114 
115  protected function supportsDelayedJobs() {
116  return true;
117  }
118 
124  protected function doIsEmpty() {
125  return $this->doGetSize() == 0;
126  }
127 
133  protected function doGetSize() {
134  $conn = $this->getConnection();
135  try {
136  return $conn->lSize( $this->getQueueKey( 'l-unclaimed' ) );
137  } catch ( RedisException $e ) {
138  $this->throwRedisException( $conn, $e );
139  }
140  }
141 
147  protected function doGetAcquiredCount() {
148  $conn = $this->getConnection();
149  try {
150  $conn->multi( Redis::PIPELINE );
151  $conn->zSize( $this->getQueueKey( 'z-claimed' ) );
152  $conn->zSize( $this->getQueueKey( 'z-abandoned' ) );
153 
154  return array_sum( $conn->exec() );
155  } catch ( RedisException $e ) {
156  $this->throwRedisException( $conn, $e );
157  }
158  }
159 
165  protected function doGetDelayedCount() {
166  $conn = $this->getConnection();
167  try {
168  return $conn->zSize( $this->getQueueKey( 'z-delayed' ) );
169  } catch ( RedisException $e ) {
170  $this->throwRedisException( $conn, $e );
171  }
172  }
173 
179  protected function doGetAbandonedCount() {
180  $conn = $this->getConnection();
181  try {
182  return $conn->zSize( $this->getQueueKey( 'z-abandoned' ) );
183  } catch ( RedisException $e ) {
184  $this->throwRedisException( $conn, $e );
185  }
186  }
187 
195  protected function doBatchPush( array $jobs, $flags ) {
196  // Convert the jobs into field maps (de-duplicated against each other)
197  $items = []; // (job ID => job fields map)
198  foreach ( $jobs as $job ) {
199  $item = $this->getNewJobFields( $job );
200  if ( strlen( $item['sha1'] ) ) { // hash identifier => de-duplicate
201  $items[$item['sha1']] = $item;
202  } else {
203  $items[$item['uuid']] = $item;
204  }
205  }
206 
207  if ( !count( $items ) ) {
208  return; // nothing to do
209  }
210 
211  $conn = $this->getConnection();
212  try {
213  // Actually push the non-duplicate jobs into the queue...
214  if ( $flags & self::QOS_ATOMIC ) {
215  $batches = [ $items ]; // all or nothing
216  } else {
217  $batches = array_chunk( $items, self::MAX_PUSH_SIZE );
218  }
219  $failed = 0;
220  $pushed = 0;
221  foreach ( $batches as $itemBatch ) {
222  $added = $this->pushBlobs( $conn, $itemBatch );
223  if ( is_int( $added ) ) {
224  $pushed += $added;
225  } else {
226  $failed += count( $itemBatch );
227  }
228  }
229  JobQueue::incrStats( 'inserts', $this->type, count( $items ) );
230  JobQueue::incrStats( 'inserts_actual', $this->type, $pushed );
231  JobQueue::incrStats( 'dupe_inserts', $this->type,
232  count( $items ) - $failed - $pushed );
233  if ( $failed > 0 ) {
234  $err = "Could not insert {$failed} {$this->type} job(s).";
235  wfDebugLog( 'JobQueueRedis', $err );
236  throw new RedisException( $err );
237  }
238  } catch ( RedisException $e ) {
239  $this->throwRedisException( $conn, $e );
240  }
241  }
242 
249  protected function pushBlobs( RedisConnRef $conn, array $items ) {
250  $args = [ $this->encodeQueueName() ];
251  // Next args come in 4s ([id, sha1, rtime, blob [, id, sha1, rtime, blob ... ] ] )
252  foreach ( $items as $item ) {
253  $args[] = (string)$item['uuid'];
254  $args[] = (string)$item['sha1'];
255  $args[] = (string)$item['rtimestamp'];
256  $args[] = (string)$this->serialize( $item );
257  }
258  static $script =
260 <<<LUA
261  local kUnclaimed, kSha1ById, kIdBySha1, kDelayed, kData, kQwJobs = unpack(KEYS)
262  -- First argument is the queue ID
263  local queueId = ARGV[1]
264  -- Next arguments all come in 4s (one per job)
265  local variadicArgCount = #ARGV - 1
266  if variadicArgCount % 4 ~= 0 then
267  return redis.error_reply('Unmatched arguments')
268  end
269  -- Insert each job into this queue as needed
270  local pushed = 0
271  for i = 2,#ARGV,4 do
272  local id,sha1,rtimestamp,blob = ARGV[i],ARGV[i+1],ARGV[i+2],ARGV[i+3]
273  if sha1 == '' or redis.call('hExists',kIdBySha1,sha1) == 0 then
274  if 1*rtimestamp > 0 then
275  -- Insert into delayed queue (release time as score)
276  redis.call('zAdd',kDelayed,rtimestamp,id)
277  else
278  -- Insert into unclaimed queue
279  redis.call('lPush',kUnclaimed,id)
280  end
281  if sha1 ~= '' then
282  redis.call('hSet',kSha1ById,id,sha1)
283  redis.call('hSet',kIdBySha1,sha1,id)
284  end
285  redis.call('hSet',kData,id,blob)
286  pushed = pushed + 1
287  end
288  end
289  -- Mark this queue as having jobs
290  redis.call('sAdd',kQwJobs,queueId)
291  return pushed
292 LUA;
293  return $conn->luaEval( $script,
294  array_merge(
295  [
296  $this->getQueueKey( 'l-unclaimed' ), # KEYS[1]
297  $this->getQueueKey( 'h-sha1ById' ), # KEYS[2]
298  $this->getQueueKey( 'h-idBySha1' ), # KEYS[3]
299  $this->getQueueKey( 'z-delayed' ), # KEYS[4]
300  $this->getQueueKey( 'h-data' ), # KEYS[5]
301  $this->getGlobalKey( 's-queuesWithJobs' ), # KEYS[6]
302  ],
303  $args
304  ),
305  6 # number of first argument(s) that are keys
306  );
307  }
308 
314  protected function doPop() {
315  $job = false;
316 
317  $conn = $this->getConnection();
318  try {
319  do {
320  $blob = $this->popAndAcquireBlob( $conn );
321  if ( !is_string( $blob ) ) {
322  break; // no jobs; nothing to do
323  }
324 
325  JobQueue::incrStats( 'pops', $this->type );
326  $item = $this->unserialize( $blob );
327  if ( $item === false ) {
328  wfDebugLog( 'JobQueueRedis', "Could not unserialize {$this->type} job." );
329  continue;
330  }
331 
332  // If $item is invalid, the runner loop recyling will cleanup as needed
333  $job = $this->getJobFromFields( $item ); // may be false
334  } while ( !$job ); // job may be false if invalid
335  } catch ( RedisException $e ) {
336  $this->throwRedisException( $conn, $e );
337  }
338 
339  return $job;
340  }
341 
347  protected function popAndAcquireBlob( RedisConnRef $conn ) {
348  static $script =
350 <<<LUA
351  local kUnclaimed, kSha1ById, kIdBySha1, kClaimed, kAttempts, kData = unpack(KEYS)
352  local rTime = unpack(ARGV)
353  -- Pop an item off the queue
354  local id = redis.call('rPop',kUnclaimed)
355  if not id then
356  return false
357  end
358  -- Allow new duplicates of this job
359  local sha1 = redis.call('hGet',kSha1ById,id)
360  if sha1 then redis.call('hDel',kIdBySha1,sha1) end
361  redis.call('hDel',kSha1ById,id)
362  -- Mark the jobs as claimed and return it
363  redis.call('zAdd',kClaimed,rTime,id)
364  redis.call('hIncrBy',kAttempts,id,1)
365  return redis.call('hGet',kData,id)
366 LUA;
367  return $conn->luaEval( $script,
368  [
369  $this->getQueueKey( 'l-unclaimed' ), # KEYS[1]
370  $this->getQueueKey( 'h-sha1ById' ), # KEYS[2]
371  $this->getQueueKey( 'h-idBySha1' ), # KEYS[3]
372  $this->getQueueKey( 'z-claimed' ), # KEYS[4]
373  $this->getQueueKey( 'h-attempts' ), # KEYS[5]
374  $this->getQueueKey( 'h-data' ), # KEYS[6]
375  time(), # ARGV[1] (injected to be replication-safe)
376  ],
377  6 # number of first argument(s) that are keys
378  );
379  }
380 
388  protected function doAck( Job $job ) {
389  if ( !isset( $job->metadata['uuid'] ) ) {
390  throw new UnexpectedValueException( "Job of type '{$job->getType()}' has no UUID." );
391  }
392 
393  $uuid = $job->metadata['uuid'];
394  $conn = $this->getConnection();
395  try {
396  static $script =
398 <<<LUA
399  local kClaimed, kAttempts, kData = unpack(KEYS)
400  local id = unpack(ARGV)
401  -- Unmark the job as claimed
402  local removed = redis.call('zRem',kClaimed,id)
403  -- Check if the job was recycled
404  if removed == 0 then
405  return 0
406  end
407  -- Delete the retry data
408  redis.call('hDel',kAttempts,id)
409  -- Delete the job data itself
410  return redis.call('hDel',kData,id)
411 LUA;
412  $res = $conn->luaEval( $script,
413  [
414  $this->getQueueKey( 'z-claimed' ), # KEYS[1]
415  $this->getQueueKey( 'h-attempts' ), # KEYS[2]
416  $this->getQueueKey( 'h-data' ), # KEYS[3]
417  $uuid # ARGV[1]
418  ],
419  3 # number of first argument(s) that are keys
420  );
421 
422  if ( !$res ) {
423  wfDebugLog( 'JobQueueRedis', "Could not acknowledge {$this->type} job $uuid." );
424 
425  return false;
426  }
427 
428  JobQueue::incrStats( 'acks', $this->type );
429  } catch ( RedisException $e ) {
430  $this->throwRedisException( $conn, $e );
431  }
432 
433  return true;
434  }
435 
444  if ( !$job->hasRootJobParams() ) {
445  throw new LogicException( "Cannot register root job; missing parameters." );
446  }
447  $params = $job->getRootJobParams();
448 
449  $key = $this->getRootJobCacheKey( $params['rootJobSignature'] );
450 
451  $conn = $this->getConnection();
452  try {
453  $timestamp = $conn->get( $key ); // current last timestamp of this job
454  if ( $timestamp && $timestamp >= $params['rootJobTimestamp'] ) {
455  return true; // a newer version of this root job was enqueued
456  }
457 
458  // Update the timestamp of the last root job started at the location...
459  return $conn->set( $key, $params['rootJobTimestamp'], self::ROOTJOB_TTL ); // 2 weeks
460  } catch ( RedisException $e ) {
461  $this->throwRedisException( $conn, $e );
462  }
463  }
464 
471  protected function doIsRootJobOldDuplicate( Job $job ) {
472  if ( !$job->hasRootJobParams() ) {
473  return false; // job has no de-deplication info
474  }
475  $params = $job->getRootJobParams();
476 
477  $conn = $this->getConnection();
478  try {
479  // Get the last time this root job was enqueued
480  $timestamp = $conn->get( $this->getRootJobCacheKey( $params['rootJobSignature'] ) );
481  } catch ( RedisException $e ) {
482  $timestamp = false;
483  $this->throwRedisException( $conn, $e );
484  }
485 
486  // Check if a new root job was started at the location after this one's...
487  return ( $timestamp && $timestamp > $params['rootJobTimestamp'] );
488  }
489 
495  protected function doDelete() {
496  static $props = [ 'l-unclaimed', 'z-claimed', 'z-abandoned',
497  'z-delayed', 'h-idBySha1', 'h-sha1ById', 'h-attempts', 'h-data' ];
498 
499  $conn = $this->getConnection();
500  try {
501  $keys = [];
502  foreach ( $props as $prop ) {
503  $keys[] = $this->getQueueKey( $prop );
504  }
505 
506  $ok = ( $conn->delete( $keys ) !== false );
507  $conn->sRem( $this->getGlobalKey( 's-queuesWithJobs' ), $this->encodeQueueName() );
508 
509  return $ok;
510  } catch ( RedisException $e ) {
511  $this->throwRedisException( $conn, $e );
512  }
513  }
514 
520  public function getAllQueuedJobs() {
521  $conn = $this->getConnection();
522  try {
523  $uids = $conn->lRange( $this->getQueueKey( 'l-unclaimed' ), 0, -1 );
524  } catch ( RedisException $e ) {
525  $this->throwRedisException( $conn, $e );
526  }
527 
528  return $this->getJobIterator( $conn, $uids );
529  }
530 
536  public function getAllDelayedJobs() {
537  $conn = $this->getConnection();
538  try {
539  $uids = $conn->zRange( $this->getQueueKey( 'z-delayed' ), 0, -1 );
540  } catch ( RedisException $e ) {
541  $this->throwRedisException( $conn, $e );
542  }
543 
544  return $this->getJobIterator( $conn, $uids );
545  }
546 
552  public function getAllAcquiredJobs() {
553  $conn = $this->getConnection();
554  try {
555  $uids = $conn->zRange( $this->getQueueKey( 'z-claimed' ), 0, -1 );
556  } catch ( RedisException $e ) {
557  $this->throwRedisException( $conn, $e );
558  }
559 
560  return $this->getJobIterator( $conn, $uids );
561  }
562 
568  public function getAllAbandonedJobs() {
569  $conn = $this->getConnection();
570  try {
571  $uids = $conn->zRange( $this->getQueueKey( 'z-abandoned' ), 0, -1 );
572  } catch ( RedisException $e ) {
573  $this->throwRedisException( $conn, $e );
574  }
575 
576  return $this->getJobIterator( $conn, $uids );
577  }
578 
584  protected function getJobIterator( RedisConnRef $conn, array $uids ) {
585  return new MappedIterator(
586  $uids,
587  function ( $uid ) use ( $conn ) {
588  return $this->getJobFromUidInternal( $uid, $conn );
589  },
590  [ 'accept' => function ( $job ) {
591  return is_object( $job );
592  } ]
593  );
594  }
595 
596  public function getCoalesceLocationInternal() {
597  return "RedisServer:" . $this->server;
598  }
599 
600  protected function doGetSiblingQueuesWithJobs( array $types ) {
601  return array_keys( array_filter( $this->doGetSiblingQueueSizes( $types ) ) );
602  }
603 
604  protected function doGetSiblingQueueSizes( array $types ) {
605  $sizes = []; // (type => size)
606  $types = array_values( $types ); // reindex
607  $conn = $this->getConnection();
608  try {
609  $conn->multi( Redis::PIPELINE );
610  foreach ( $types as $type ) {
611  $conn->lSize( $this->getQueueKey( 'l-unclaimed', $type ) );
612  }
613  $res = $conn->exec();
614  if ( is_array( $res ) ) {
615  foreach ( $res as $i => $size ) {
616  $sizes[$types[$i]] = $size;
617  }
618  }
619  } catch ( RedisException $e ) {
620  $this->throwRedisException( $conn, $e );
621  }
622 
623  return $sizes;
624  }
625 
635  public function getJobFromUidInternal( $uid, RedisConnRef $conn ) {
636  try {
637  $data = $conn->hGet( $this->getQueueKey( 'h-data' ), $uid );
638  if ( $data === false ) {
639  return false; // not found
640  }
641  $item = $this->unserialize( $data );
642  if ( !is_array( $item ) ) { // this shouldn't happen
643  throw new UnexpectedValueException( "Could not find job with ID '$uid'." );
644  }
645  $title = Title::makeTitle( $item['namespace'], $item['title'] );
646  $job = Job::factory( $item['type'], $title, $item['params'] );
647  $job->metadata['uuid'] = $item['uuid'];
648  $job->metadata['timestamp'] = $item['timestamp'];
649  // Add in attempt count for debugging at showJobs.php
650  $job->metadata['attempts'] = $conn->hGet( $this->getQueueKey( 'h-attempts' ), $uid );
651 
652  return $job;
653  } catch ( RedisException $e ) {
654  $this->throwRedisException( $conn, $e );
655  }
656  }
657 
663  public function getServerQueuesWithJobs() {
664  $queues = [];
665 
666  $conn = $this->getConnection();
667  try {
668  $set = $conn->sMembers( $this->getGlobalKey( 's-queuesWithJobs' ) );
669  foreach ( $set as $queue ) {
670  $queues[] = $this->decodeQueueName( $queue );
671  }
672  } catch ( RedisException $e ) {
673  $this->throwRedisException( $conn, $e );
674  }
675 
676  return $queues;
677  }
678 
683  protected function getNewJobFields( IJobSpecification $job ) {
684  return [
685  // Fields that describe the nature of the job
686  'type' => $job->getType(),
687  'namespace' => $job->getTitle()->getNamespace(),
688  'title' => $job->getTitle()->getDBkey(),
689  'params' => $job->getParams(),
690  // Some jobs cannot run until a "release timestamp"
691  'rtimestamp' => $job->getReleaseTimestamp() ?: 0,
692  // Additional job metadata
694  'sha1' => $job->ignoreDuplicates()
695  ? Wikimedia\base_convert( sha1( serialize( $job->getDeduplicationInfo() ) ), 16, 36, 31 )
696  : '',
697  'timestamp' => time() // UNIX timestamp
698  ];
699  }
700 
705  protected function getJobFromFields( array $fields ) {
706  $title = Title::makeTitle( $fields['namespace'], $fields['title'] );
707  $job = Job::factory( $fields['type'], $title, $fields['params'] );
708  $job->metadata['uuid'] = $fields['uuid'];
709  $job->metadata['timestamp'] = $fields['timestamp'];
710 
711  return $job;
712  }
713 
718  protected function serialize( array $fields ) {
719  $blob = serialize( $fields );
720  if ( $this->compression === 'gzip'
721  && strlen( $blob ) >= 1024
722  && function_exists( 'gzdeflate' )
723  ) {
724  $object = (object)[ 'blob' => gzdeflate( $blob ), 'enc' => 'gzip' ];
725  $blobz = serialize( $object );
726 
727  return ( strlen( $blobz ) < strlen( $blob ) ) ? $blobz : $blob;
728  } else {
729  return $blob;
730  }
731  }
732 
737  protected function unserialize( $blob ) {
738  $fields = unserialize( $blob );
739  if ( is_object( $fields ) ) {
740  if ( $fields->enc === 'gzip' && function_exists( 'gzinflate' ) ) {
741  $fields = unserialize( gzinflate( $fields->blob ) );
742  } else {
743  $fields = false;
744  }
745  }
746 
747  return is_array( $fields ) ? $fields : false;
748  }
749 
756  protected function getConnection() {
757  $conn = $this->redisPool->getConnection( $this->server, $this->logger );
758  if ( !$conn ) {
759  throw new JobQueueConnectionError(
760  "Unable to connect to redis server {$this->server}." );
761  }
762 
763  return $conn;
764  }
765 
771  protected function throwRedisException( RedisConnRef $conn, $e ) {
772  $this->redisPool->handleError( $conn, $e );
773  throw new JobQueueError( "Redis server error: {$e->getMessage()}\n" );
774  }
775 
779  private function encodeQueueName() {
780  return json_encode( [ $this->type, $this->wiki ] );
781  }
782 
787  private function decodeQueueName( $name ) {
788  return json_decode( $name );
789  }
790 
795  private function getGlobalKey( $name ) {
796  $parts = [ 'global', 'jobqueue', $name ];
797  foreach ( $parts as $part ) {
798  if ( !preg_match( '/[a-zA-Z0-9_-]+/', $part ) ) {
799  throw new InvalidArgumentException( "Key part characters are out of range." );
800  }
801  }
802 
803  return implode( ':', $parts );
804  }
805 
811  private function getQueueKey( $prop, $type = null ) {
812  $type = is_string( $type ) ? $type : $this->type;
813  list( $db, $prefix ) = wfSplitWikiID( $this->wiki );
814  $keyspace = $prefix ? "$db-$prefix" : $db;
815 
816  $parts = [ $keyspace, 'jobqueue', $type, $prop ];
817 
818  // Parts are typically ASCII, but encode for sanity to escape ":"
819  return implode( ':', array_map( 'rawurlencode', $parts ) );
820  }
821 }
MappedIterator
Convenience class for generating iterators from iterators.
Definition: MappedIterator.php:29
object
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
Definition: globals.txt:25
UIDGenerator\QUICK_RAND
const QUICK_RAND
Definition: UIDGenerator.php:46
RedisConnectionPool\singleton
static singleton(array $options)
Definition: RedisConnectionPool.php:148
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
JobQueue\incrStats
static incrStats( $key, $type, $delta=1)
Call wfIncrStats() for the queue overall and for the queue type.
Definition: JobQueue.php:710
JobQueueRedis\doGetAcquiredCount
doGetAcquiredCount()
Definition: JobQueueRedis.php:147
is
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for except in special pages derived from QueryPage It s a common pitfall for new developers to submit code containing SQL queries which examine huge numbers of rows Remember that COUNT * is(N), counting rows in atable is like counting beans in a bucket.------------------------------------------------------------------------ Replication------------------------------------------------------------------------The largest installation of MediaWiki, Wikimedia, uses a large set ofslave MySQL servers replicating writes made to a master MySQL server. Itis important to understand the issues associated with this setup if youwant to write code destined for Wikipedia.It 's often the case that the best algorithm to use for a given taskdepends on whether or not replication is in use. Due to our unabashedWikipedia-centrism, we often just use the replication-friendly version, but if you like, you can use wfGetLB() ->getServerCount() > 1 tocheck to see if replication is in use.===Lag===Lag primarily occurs when large write queries are sent to the master.Writes on the master are executed in parallel, but they are executed inserial when they are replicated to the slaves. The master writes thequery to the binlog when the transaction is committed. The slaves pollthe binlog and start executing the query as soon as it appears. They canservice reads while they are performing a write query, but will not readanything more from the binlog and thus will perform no more writes. Thismeans that if the write query runs for a long time, the slaves will lagbehind the master for the time it takes for the write query to complete.Lag can be exacerbated by high read load. MediaWiki 's load balancer willstop sending reads to a slave when it is lagged by more than 30 seconds.If the load ratios are set incorrectly, or if there is too much loadgenerally, this may lead to a slave permanently hovering around 30seconds lag.If all slaves are lagged by more than 30 seconds, MediaWiki will stopwriting to the database. All edits and other write operations will berefused, with an error returned to the user. This gives the slaves achance to catch up. Before we had this mechanism, the slaves wouldregularly lag by several minutes, making review of recent editsdifficult.In addition to this, MediaWiki attempts to ensure that the user seesevents occurring on the wiki in chronological order. A few seconds of lagcan be tolerated, as long as the user sees a consistent picture fromsubsequent requests. This is done by saving the master binlog positionin the session, and then at the start of each request, waiting for theslave to catch up to that position before doing any reads from it. Ifthis wait times out, reads are allowed anyway, but the request isconsidered to be in "lagged slave mode". Lagged slave mode can bechecked by calling wfGetLB() ->getLaggedSlaveMode(). The onlypractical consequence at present is a warning displayed in the pagefooter.===Lag avoidance===To avoid excessive lag, queries which write large numbers of rows shouldbe split up, generally to write one row at a time. Multi-row INSERT ...SELECT queries are the worst offenders should be avoided altogether.Instead do the select first and then the insert.===Working with lag===Despite our best efforts, it 's not practical to guarantee a low-lagenvironment. Lag will usually be less than one second, but mayoccasionally be up to 30 seconds. For scalability, it 's very importantto keep load on the master low, so simply sending all your queries tothe master is not the answer. So when you have a genuine need forup-to-date data, the following approach is advised:1) Do a quick query to the master for a sequence number or timestamp 2) Run the full query on the slave and check if it matches the data you gotfrom the master 3) If it doesn 't, run the full query on the masterTo avoid swamping the master every time the slaves lag, use of thisapproach should be kept to a minimum. In most cases you should just readfrom the slave and let the user deal with the delay.------------------------------------------------------------------------ Lock contention------------------------------------------------------------------------Due to the high write rate on Wikipedia(and some other wikis), MediaWiki developers need to be very careful to structure their writesto avoid long-lasting locks. By default, MediaWiki opens a transactionat the first query, and commits it before the output is sent. Locks willbe held from the time when the query is done until the commit. So youcan reduce lock time by doing as much processing as possible before youdo your write queries.Often this approach is not good enough, and it becomes necessary toenclose small groups of queries in their own transaction. Use thefollowing syntax:$dbw=wfGetDB(DB_MASTER
JobQueueRedis\__construct
__construct(array $params)
Definition: JobQueueRedis.php:93
JobQueueRedis\$server
string $server
Server address.
Definition: JobQueueRedis.php:74
captcha-old.count
count
Definition: captcha-old.py:225
JobQueueRedis\MAX_PUSH_SIZE
const MAX_PUSH_SIZE
Definition: JobQueueRedis.php:78
JobQueueRedis\$compression
string $compression
Compression method to use.
Definition: JobQueueRedis.php:76
MediaWiki\Logger\LoggerFactory\getInstance
static getInstance( $channel)
Get a named logger instance from the currently configured logger factory.
Definition: LoggerFactory.php:93
wiki
Prior to maintenance scripts were a hodgepodge of code that had no cohesion or formal method of action Beginning maintenance scripts have been cleaned up to use a unified class Directory structure How to run a script How to write your own DIRECTORY STRUCTURE The maintenance directory of a MediaWiki installation contains several all of which have unique purposes HOW TO RUN A SCRIPT Ridiculously just call php someScript php that s in the top level maintenance directory if not default wiki
Definition: maintenance.txt:1
JobQueueRedis\getAllAcquiredJobs
getAllAcquiredJobs()
Definition: JobQueueRedis.php:552
JobQueueRedis\encodeQueueName
encodeQueueName()
Definition: JobQueueRedis.php:779
JobQueueRedis\doBatchPush
doBatchPush(array $jobs, $flags)
Definition: JobQueueRedis.php:195
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
JobQueueRedis\doDeduplicateRootJob
doDeduplicateRootJob(IJobSpecification $job)
Definition: JobQueueRedis.php:443
it
=Architecture==Two class hierarchies are used to provide the functionality associated with the different content models:*Content interface(and AbstractContent base class) define functionality that acts on the concrete content of a page, and *ContentHandler base class provides functionality specific to a content model, but not acting on concrete content. The most important function of ContentHandler is to act as a factory for the appropriate implementation of Content. These Content objects are to be used by MediaWiki everywhere, instead of passing page content around as text. All manipulation and analysis of page content must be done via the appropriate methods of the Content object. For each content model, a subclass of ContentHandler has to be registered with $wgContentHandlers. The ContentHandler object for a given content model can be obtained using ContentHandler::getForModelID($id). Also Title, WikiPage and Revision now have getContentHandler() methods for convenience. ContentHandler objects are singletons that provide functionality specific to the content type, but not directly acting on the content of some page. ContentHandler::makeEmptyContent() and ContentHandler::unserializeContent() can be used to create a Content object of the appropriate type. However, it is recommended to instead use WikiPage::getContent() resp. Revision::getContent() to get a page 's content as a Content object. These two methods should be the ONLY way in which page content is accessed. Another important function of ContentHandler objects is to define custom action handlers for a content model, see ContentHandler::getActionOverrides(). This is similar to what WikiPage::getActionOverrides() was already doing.==Serialization==With the ContentHandler facility, page content no longer has to be text based. Objects implementing the Content interface are used to represent and handle the content internally. For storage and data exchange, each content model supports at least one serialization format via ContentHandler::serializeContent($content). The list of supported formats for a given content model can be accessed using ContentHandler::getSupportedFormats(). Content serialization formats are identified using MIME type like strings. The following formats are built in:*text/x-wiki - wikitext *text/javascript - for js pages *text/css - for css pages *text/plain - for future use, e.g. with plain text messages. *text/html - for future use, e.g. with plain html messages. *application/vnd.php.serialized - for future use with the api and for extensions *application/json - for future use with the api, and for use by extensions *application/xml - for future use with the api, and for use by extensions In PHP, use the corresponding CONTENT_FORMAT_XXX constant. Note that when using the API to access page content, especially action=edit, action=parse and action=query &prop=revisions, the model and format of the content should always be handled explicitly. Without that information, interpretation of the provided content is not reliable. The same applies to XML dumps generated via maintenance/dumpBackup.php or Special:Export. Also note that the API will provide encapsulated, serialized content - so if the API was called with format=json, and contentformat is also json(or rather, application/json), the page content is represented as a string containing an escaped json structure. Extensions that use JSON to serialize some types of page content may provide specialized API modules that allow access to that content in a more natural form.==Compatibility==The ContentHandler facility is introduced in a way that should allow all existing code to keep functioning at least for pages that contain wikitext or other text based content. However, a number of functions and hooks have been deprecated in favor of new versions that are aware of the page 's content model, and will now generate warnings when used. Most importantly, the following functions have been deprecated:*Revisions::getText() is deprecated in favor Revisions::getContent() *WikiPage::getText() is deprecated in favor WikiPage::getContent() Also, the old Article::getContent()(which returns text) is superceded by Article::getContentObject(). However, both methods should be avoided since they do not provide clean access to the page 's actual content. For instance, they may return a system message for non-existing pages. Use WikiPage::getContent() instead. Code that relies on a textual representation of the page content should eventually be rewritten. However, ContentHandler::getContentText() provides a stop-gap that can be used to get text for a page. Its behavior is controlled by $wgContentHandlerTextFallback it
Definition: contenthandler.txt:104
JobQueueRedis\doGetSiblingQueuesWithJobs
doGetSiblingQueuesWithJobs(array $types)
Definition: JobQueueRedis.php:600
$params
$params
Definition: styleTest.css.php:40
id
font id
Definition: parserTests.txt:17448
JobQueueRedis\getJobFromFields
getJobFromFields(array $fields)
Definition: JobQueueRedis.php:705
wfSplitWikiID
wfSplitWikiID( $wiki)
Split a wiki ID into DB name and table prefix.
Definition: GlobalFunctions.php:3027
$res
$res
Definition: database.txt:21
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
JobQueueRedis\getAllQueuedJobs
getAllQueuedJobs()
Definition: JobQueueRedis.php:520
JobQueueRedis\doPop
doPop()
Definition: JobQueueRedis.php:314
wfDebugLog
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
Definition: GlobalFunctions.php:1092
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
JobQueueRedis\getJobIterator
getJobIterator(RedisConnRef $conn, array $uids)
Definition: JobQueueRedis.php:584
JobQueueRedis\getJobFromUidInternal
getJobFromUidInternal( $uid, RedisConnRef $conn)
This function should not be called outside JobQueueRedis.
Definition: JobQueueRedis.php:635
UIDGenerator\newRawUUIDv4
static newRawUUIDv4( $flags=0)
Return an RFC4122 compliant v4 UUID.
Definition: UIDGenerator.php:312
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:31
JobQueueRedis\getAllDelayedJobs
getAllDelayedJobs()
Definition: JobQueueRedis.php:536
Job\factory
static factory( $command, Title $title, $params=[])
Create the appropriate object to handle a specific job.
Definition: Job.php:68
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
JobQueueRedis\getServerQueuesWithJobs
getServerQueuesWithJobs()
Definition: JobQueueRedis.php:663
$blob
$blob
Definition: testCompression.php:63
JobQueue\$type
string $type
Job type.
Definition: JobQueue.php:36
JobQueueRedis\getNewJobFields
getNewJobFields(IJobSpecification $job)
Definition: JobQueueRedis.php:683
in
null for the wiki Added in
Definition: hooks.txt:1572
not
if not
Definition: COPYING.txt:307
$queue
$queue
Definition: mergeMessageFileList.php:161
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
JobQueueRedis\doGetAbandonedCount
doGetAbandonedCount()
Definition: JobQueueRedis.php:179
JobQueueRedis\optimalOrder
optimalOrder()
Get the default queue order to use if configuration does not specify one.
Definition: JobQueueRedis.php:111
JobQueueError
Definition: JobQueue.php:724
string
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition: hooks.txt:177
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
or
or
Definition: COPYING.txt:140
JobQueueRedis\getCoalesceLocationInternal
getCoalesceLocationInternal()
Do not use this function outside of JobQueue/JobQueueGroup.
Definition: JobQueueRedis.php:596
RedisConnectionPool
Helper class to manage Redis connections.
Definition: RedisConnectionPool.php:41
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2122
JobQueueRedis\getConnection
getConnection()
Get a connection to the server that handles all sub-queues for this queue.
Definition: JobQueueRedis.php:756
JobQueueRedis\pushBlobs
pushBlobs(RedisConnRef $conn, array $items)
Definition: JobQueueRedis.php:249
RedisConnRef\luaEval
luaEval( $script, array $params, $numKeys)
Definition: RedisConnRef.php:125
JobQueueRedis\supportedOrders
supportedOrders()
Get the allowed queue orders for configuration validation.
Definition: JobQueueRedis.php:107
JobQueueRedis\getQueueKey
getQueueKey( $prop, $type=null)
Definition: JobQueueRedis.php:811
First
The First
Definition: primes.txt:1
JobQueueRedis\throwRedisException
throwRedisException(RedisConnRef $conn, $e)
Definition: JobQueueRedis.php:771
JobQueueConnectionError
Definition: JobQueue.php:727
JobQueueRedis\doGetDelayedCount
doGetDelayedCount()
Definition: JobQueueRedis.php:165
$args
if( $line===false) $args
Definition: cdb.php:63
JobQueue\getRootJobCacheKey
getRootJobCacheKey( $signature)
Definition: JobQueue.php:529
and
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
JobQueueRedis\doDelete
doDelete()
Definition: JobQueueRedis.php:495
type
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
Definition: postgres.txt:22
JobQueueRedis\$logger
LoggerInterface $logger
Definition: JobQueueRedis.php:71
JobQueueRedis\$redisPool
RedisConnectionPool $redisPool
Definition: JobQueueRedis.php:69
release
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the release
Definition: skin.txt:10
JobQueueRedis\serialize
serialize(array $fields)
Definition: JobQueueRedis.php:718
JobQueueRedis\doGetSize
doGetSize()
Definition: JobQueueRedis.php:133
JobQueueRedis\getGlobalKey
getGlobalKey( $name)
Definition: JobQueueRedis.php:795
are
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types are
Definition: contenthandler.txt:5
JobQueueRedis\doIsEmpty
doIsEmpty()
Definition: JobQueueRedis.php:124
JobQueueRedis\supportsDelayedJobs
supportsDelayedJobs()
Find out if delayed jobs are supported for configuration validation.
Definition: JobQueueRedis.php:115
$job
if(count( $args)< 1) $job
Definition: recompressTracked.php:47
JobQueueRedis\doIsRootJobOldDuplicate
doIsRootJobOldDuplicate(Job $job)
Definition: JobQueueRedis.php:471
needed
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when needed(most notably, OutputPage::addWikiText()). The StandardSkin object is a complete implementation
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
JobQueue
Class to handle enqueueing and running of background jobs.
Definition: JobQueue.php:32
RedisConnRef
Helper class to handle automatically marking connectons as reusable (via RAII pattern)
Definition: RedisConnRef.php:32
$keys
$keys
Definition: testCompression.php:65
JobQueueRedis\doAck
doAck(Job $job)
Definition: JobQueueRedis.php:388
of
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
Definition: globals.txt:10
JobQueueRedis\unserialize
unserialize( $blob)
Definition: JobQueueRedis.php:737
that
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if that
Definition: deferred.txt:11
JobQueueRedis\doGetSiblingQueueSizes
doGetSiblingQueueSizes(array $types)
Definition: JobQueueRedis.php:604
JobQueueRedis\decodeQueueName
decodeQueueName( $name)
Definition: JobQueueRedis.php:787
JobQueueRedis\popAndAcquireBlob
popAndAcquireBlob(RedisConnRef $conn)
Definition: JobQueueRedis.php:347
JobQueueRedis\getAllAbandonedJobs
getAllAbandonedJobs()
Definition: JobQueueRedis.php:568
then
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been the default skin since then
Definition: skin.txt:10
server
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server
Definition: distributors.txt:53
IJobSpecification
Job queue task description interface.
Definition: JobSpecification.php:30
$flags
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2749
data
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
Definition: hooks.txt:6
array
the array() calling protocol came about after MediaWiki 1.4rc1.
JobQueueRedis
Class to handle job queues stored in Redis.
Definition: JobQueueRedis.php:67