Manual:ManageJobs.php/pl
Plik MediaWiki: manageJobs.php | |
---|---|
Lokalizacja: | maintenance/ |
Kod źródłowy: | master • 1.42.3 • 1.41.4 • 1.39.10 |
Klasy: | ManageJobs |
Szczegóły
manageJobs.php is a maintenance script to manually either delete jobs from the Kolejka zadań or put abandoned jobs back into circulation. Note that, while the script can put abandoned jobs back into circulation, it won't execute them. Use runJobs.php for that.
Opcje/argumenty
Opcja/Parametr | Opis | Wymagane? |
---|---|---|
--action |
|
Wymagane |
--type | Must be one of the job types, typically the ones listed when you run showJobs.php --group . | Wymagane |
Użycie
php manageJobs.php [ --action | --type ]
Both parameters are mandatory.
First find what job types are abandoned with showJobs.php :
Terminal
$ php maintenance/showJobs.php --group refreshLinks: 0 queued; 38 claimed (0 active, 38 abandoned); 0 delayed refreshLinksPrioritized: 0 queued; 992 claimed (22 active, 970 abandoned); 0 delayed refreshLinksDynamic: 0 queued; 132 claimed (0 active, 132 abandoned); 0 delayed
Then add abandoned jobs back into circulation with --action repush-abandoned:
Terminal
$ php maintenance/manageJobs.php --type refreshLinks --action repush-abandoned Last re-push time: 19700101000001; current time: 20211111104139 Re-pushed 0 job(s) [0 skipped].
Then you can run runJobs.php to actually execute them.