1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
<?php
/**
* Class to invalidate the HTML cache of all the pages linking to a given title.
* Small numbers of links will be done immediately, large numbers are pushed onto
* the job queue.
*
* This class is designed to work efficiently with small numbers of links, and
* to work reasonably well with up to ~10^5 links. Above ~10^6 links, the memory
* and time requirements of loading all backlinked IDs in doUpdate() might become
* prohibitive. The requirements measured at Wikimedia are approximately:
*
* memory: 48 bytes per row
* time: 16us per row for the query plus processing
*
* The reason this query is done is to support partitioning of the job
* by backlinked ID. The memory issue could be allieviated by doing this query in
* batches, but of course LIMIT with an offset is inefficient on the DB side.
*
* The class is nevertheless a vast improvement on the previous method of using
* File::getLinksTo() and Title::touchArray(), which uses about 2KB of memory per
* link.
*
* @ingroup Cache
*/
class HTMLCacheUpdate implements DeferrableUpdate {
/**
* @var Title
*/
public $mTitle;
public $mTable, $mPrefix, $mStart, $mEnd;
public $mRowsPerJob, $mRowsPerQuery;
/**
* @param $titleTo
* @param $table
* @param $start bool
* @param $end bool
*/
function __construct( $titleTo, $table, $start = false, $end = false ) {
global $wgUpdateRowsPerJob, $wgUpdateRowsPerQuery;
$this->mTitle = $titleTo;
$this->mTable = $table;
$this->mStart = $start;
$this->mEnd = $end;
$this->mRowsPerJob = $wgUpdateRowsPerJob;
$this->mRowsPerQuery = $wgUpdateRowsPerQuery;
$this->mCache = $this->mTitle->getBacklinkCache();
}
public function doUpdate() {
if ( $this->mStart || $this->mEnd ) {
$this->doPartialUpdate();
return;
}
# Get an estimate of the number of rows from the BacklinkCache
$numRows = $this->mCache->getNumLinks( $this->mTable );
if ( $numRows > $this->mRowsPerJob * 2 ) {
# Do fast cached partition
$this->insertJobs();
} else {
# Get the links from the DB
$titleArray = $this->mCache->getLinks( $this->mTable );
# Check if the row count estimate was correct
if ( $titleArray->count() > $this->mRowsPerJob * 2 ) {
# Not correct, do accurate partition
wfDebug( __METHOD__.": row count estimate was incorrect, repartitioning\n" );
$this->insertJobsFromTitles( $titleArray );
} else {
$this->invalidateTitles( $titleArray );
}
}
}
/**
* Update some of the backlinks, defined by a page ID range
*/
protected function doPartialUpdate() {
$titleArray = $this->mCache->getLinks( $this->mTable, $this->mStart, $this->mEnd );
if ( $titleArray->count() <= $this->mRowsPerJob * 2 ) {
# This partition is small enough, do the update
$this->invalidateTitles( $titleArray );
} else {
# Partitioning was excessively inaccurate. Divide the job further.
# This can occur when a large number of links are added in a short
# period of time, say by updating a heavily-used template.
$this->insertJobsFromTitles( $titleArray );
}
}
/**
* Partition the current range given by $this->mStart and $this->mEnd,
* using a pre-calculated title array which gives the links in that range.
* Queue the resulting jobs.
*
* @param $titleArray array
*/
protected function insertJobsFromTitles( $titleArray ) {
# We make subpartitions in the sense that the start of the first job
# will be the start of the parent partition, and the end of the last
# job will be the end of the parent partition.
$jobs = array();
$start = $this->mStart; # start of the current job
$numTitles = 0;
foreach ( $titleArray as $title ) {
$id = $title->getArticleID();
# $numTitles is now the number of titles in the current job not
# including the current ID
if ( $numTitles >= $this->mRowsPerJob ) {
# Add a job up to but not including the current ID
$params = array(
'table' => $this->mTable,
'start' => $start,
'end' => $id - 1
);
$jobs[] = new HTMLCacheUpdateJob( $this->mTitle, $params );
$start = $id;
$numTitles = 0;
}
$numTitles++;
}
# Last job
$params = array(
'table' => $this->mTable,
'start' => $start,
'end' => $this->mEnd
);
$jobs[] = new HTMLCacheUpdateJob( $this->mTitle, $params );
wfDebug( __METHOD__.": repartitioning into " . count( $jobs ) . " jobs\n" );
if ( count( $jobs ) < 2 ) {
# I don't think this is possible at present, but handling this case
# makes the code a bit more robust against future code updates and
# avoids a potential infinite loop of repartitioning
wfDebug( __METHOD__.": repartitioning failed!\n" );
$this->invalidateTitles( $titleArray );
return;
}
Job::batchInsert( $jobs );
}
/**
* @return mixed
*/
protected function insertJobs() {
$batches = $this->mCache->partition( $this->mTable, $this->mRowsPerJob );
if ( !$batches ) {
return;
}
$jobs = array();
foreach ( $batches as $batch ) {
$params = array(
'table' => $this->mTable,
'start' => $batch[0],
'end' => $batch[1],
);
$jobs[] = new HTMLCacheUpdateJob( $this->mTitle, $params );
}
Job::batchInsert( $jobs );
}
/**
* Invalidate an array (or iterator) of Title objects, right now
* @param $titleArray array
*/
protected function invalidateTitles( $titleArray ) {
global $wgUseFileCache, $wgUseSquid;
$dbw = wfGetDB( DB_MASTER );
$timestamp = $dbw->timestamp();
# Get all IDs in this query into an array
$ids = array();
foreach ( $titleArray as $title ) {
$ids[] = $title->getArticleID();
}
if ( !$ids ) {
return;
}
# Update page_touched
$batches = array_chunk( $ids, $this->mRowsPerQuery );
foreach ( $batches as $batch ) {
$dbw->update( 'page',
array( 'page_touched' => $timestamp ),
array( 'page_id' => $batch ),
__METHOD__
);
}
# Update squid
if ( $wgUseSquid ) {
$u = SquidUpdate::newFromTitles( $titleArray );
$u->doUpdate();
}
# Update file cache
if ( $wgUseFileCache ) {
foreach ( $titleArray as $title ) {
HTMLFileCache::clearFileCache( $title );
}
}
}
}
/**
* Job wrapper for HTMLCacheUpdate. Gets run whenever a related
* job gets called from the queue.
*
* @ingroup JobQueue
*/
class HTMLCacheUpdateJob extends Job {
var $table, $start, $end;
/**
* Construct a job
* @param $title Title: the title linked to
* @param $params Array: job parameters (table, start and end page_ids)
* @param $id Integer: job id
*/
function __construct( $title, $params, $id = 0 ) {
parent::__construct( 'htmlCacheUpdate', $title, $params, $id );
$this->table = $params['table'];
$this->start = $params['start'];
$this->end = $params['end'];
}
public function run() {
$update = new HTMLCacheUpdate( $this->title, $this->table, $this->start, $this->end );
$update->doUpdate();
return true;
}
}
|