Designed for administration purposes, not to be exposed to front end users Useful for administration purposes (like WMF with job runners), we can look at the "highest" jobs, and find out whether enwiki is just busy, or the jobs have been there a while (signalling that the job runners potentially have issues)
2 lines
139 B
SQL
2 lines
139 B
SQL
ALTER TABLE /*_*/job ADD COLUMN job_timestamp varbinary(14) NULL default NULL;
|
|
CREATE INDEX /*i*/job_timestamp ON /*_*/job(job_timestamp);
|