Manual:copyJobQueue.php

MediaWiki version:
1.22

Details edit

copyJobQueue.php file is a maintenance script to copy all jobs from one job queue system to another.

This script requires setting $wgJobQueueMigrationConfig before running. This script processes 500 items in a batch.


The $wgJobQueueMigrationConfig configuration variable consists of keys with array values. These array values are passed to JobQueue::factory(). The parameters in the array should not have wiki or type settings as it will be injected by script itself.

$wgJobQueueMigrationConfig = [
    'db' => [
        'class' => 'JobQueueDB',
        'idGenerator' => 'uniqueId1'
    ],
    'redis' => [
        'class' => 'JobQueueRedis',
        'redisServer' => 'localhost',
        'redisConfig' => [ 'connectTimeout' => 1 ],
        'idGenerator' => 'uniqueId2'
    ]
];

Options/Arguments edit

Option Description Required?
--src Key to $wgJobQueueMigrationConfig for source Required
--dst Key to $wgJobQueueMigrationConfig for destination Required
--type Types of jobs to copy (use "all" for all) Required

Usage edit

php maintenance/copyJobQueue.php --src scrKey --dst dstKey --type jobType


Terminal

See also edit