use slave for row estimate in updateCollation.php
[lhc/web/wiklou.git] / maintenance / updateCollation.php
1 <?php
2 /**
3 * Find all rows in the categorylinks table whose collation is out-of-date
4 * (cl_collation != $wgCategoryCollation) and repopulate cl_sortkey
5 * using the page title and cl_sortkey_prefix.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
21 *
22 * @file
23 * @ingroup Maintenance
24 * @author Aryeh Gregor (Simetrical)
25 */
26
27 require_once __DIR__ . '/Maintenance.php';
28
29 /**
30 * Maintenance script that will find all rows in the categorylinks table
31 * whose collation is out-of-date.
32 *
33 * @ingroup Maintenance
34 */
35 class UpdateCollation extends Maintenance {
36 const BATCH_SIZE = 100; // Number of rows to process in one batch
37 const SYNC_INTERVAL = 20; // Wait for slaves after this many batches
38
39 public $sizeHistogram = [];
40
41 public function __construct() {
42 parent::__construct();
43
44 global $wgCategoryCollation;
45 $this->addDescription( <<<TEXT
46 This script will find all rows in the categorylinks table whose collation is
47 out-of-date (cl_collation != '$wgCategoryCollation') and repopulate cl_sortkey
48 using the page title and cl_sortkey_prefix. If all collations are
49 up-to-date, it will do nothing.
50 TEXT
51 );
52
53 $this->addOption( 'force', 'Run on all rows, even if the collation is ' .
54 'supposed to be up-to-date.', false, false, 'f' );
55 $this->addOption( 'previous-collation', 'Set the previous value of ' .
56 '$wgCategoryCollation here to speed up this script, especially if your ' .
57 'categorylinks table is large. This will only update rows with that ' .
58 'collation, though, so it may miss out-of-date rows with a different, ' .
59 'even older collation.', false, true );
60 $this->addOption( 'target-collation', 'Set this to the new collation type to ' .
61 'use instead of $wgCategoryCollation. Usually you should not use this, ' .
62 'you should just update $wgCategoryCollation in LocalSettings.php.',
63 false, true );
64 $this->addOption( 'dry-run', 'Don\'t actually change the collations, just ' .
65 'compile statistics.' );
66 $this->addOption( 'verbose-stats', 'Show more statistics.' );
67 }
68
69 public function execute() {
70 global $wgCategoryCollation;
71
72 $dbw = $this->getDB( DB_MASTER );
73 $dbr = $this->getDB( DB_SLAVE );
74 $force = $this->getOption( 'force' );
75 $dryRun = $this->getOption( 'dry-run' );
76 $verboseStats = $this->getOption( 'verbose-stats' );
77 if ( $this->hasOption( 'target-collation' ) ) {
78 $collationName = $this->getOption( 'target-collation' );
79 $collation = Collation::factory( $collationName );
80 } else {
81 $collationName = $wgCategoryCollation;
82 $collation = Collation::singleton();
83 }
84
85 // Collation sanity check: in some cases the constructor will work,
86 // but this will raise an exception, breaking all category pages
87 $collation->getFirstLetter( 'MediaWiki' );
88
89 // Locally at least, (my local is a rather old version of mysql)
90 // mysql seems to filesort if there is both an equality
91 // (but not for an inequality) condition on cl_collation in the
92 // WHERE and it is also the first item in the ORDER BY.
93 if ( $this->hasOption( 'previous-collation' ) ) {
94 $orderBy = 'cl_to, cl_type, cl_from';
95 } else {
96 $orderBy = 'cl_collation, cl_to, cl_type, cl_from';
97 }
98 $options = [
99 'LIMIT' => self::BATCH_SIZE,
100 'ORDER BY' => $orderBy,
101 ];
102
103 if ( $force || $dryRun ) {
104 $collationConds = [];
105 } else {
106 if ( $this->hasOption( 'previous-collation' ) ) {
107 $collationConds['cl_collation'] = $this->getOption( 'previous-collation' );
108 } else {
109 $collationConds = [ 0 =>
110 'cl_collation != ' . $dbw->addQuotes( $collationName )
111 ];
112 }
113
114 $count = $dbr->estimateRowCount(
115 'categorylinks',
116 '*',
117 $collationConds,
118 __METHOD__
119 );
120 // Improve estimate if feasible
121 if ( $count < 1000000 ) {
122 $count = $dbr->selectField(
123 'categorylinks',
124 'COUNT(*)',
125 $collationConds,
126 __METHOD__
127 );
128 }
129 if ( $count == 0 ) {
130 $this->output( "Collations up-to-date.\n" );
131
132 return;
133 }
134 $this->output( "Fixing collation for $count rows.\n" );
135 wfWaitForSlaves();
136 }
137 $count = 0;
138 $batchCount = 0;
139 $batchConds = [];
140 do {
141 $this->output( "Selecting next " . self::BATCH_SIZE . " rows..." );
142
143 // cl_type must be selected as a number for proper paging because
144 // enums suck.
145 if ( $dbw->getType() === 'mysql' ) {
146 $clType = 'cl_type+0 AS "cl_type_numeric"';
147 } else {
148 $clType = 'cl_type';
149 }
150 $res = $dbw->select(
151 [ 'categorylinks', 'page' ],
152 [ 'cl_from', 'cl_to', 'cl_sortkey_prefix', 'cl_collation',
153 'cl_sortkey', $clType,
154 'page_namespace', 'page_title'
155 ],
156 array_merge( $collationConds, $batchConds, [ 'cl_from = page_id' ] ),
157 __METHOD__,
158 $options
159 );
160 $this->output( " processing..." );
161
162 if ( !$dryRun ) {
163 $this->beginTransaction( $dbw, __METHOD__ );
164 }
165 foreach ( $res as $row ) {
166 $title = Title::newFromRow( $row );
167 if ( !$row->cl_collation ) {
168 # This is an old-style row, so the sortkey needs to be
169 # converted.
170 if ( $row->cl_sortkey == $title->getText()
171 || $row->cl_sortkey == $title->getPrefixedText()
172 ) {
173 $prefix = '';
174 } else {
175 # Custom sortkey, use it as a prefix
176 $prefix = $row->cl_sortkey;
177 }
178 } else {
179 $prefix = $row->cl_sortkey_prefix;
180 }
181 # cl_type will be wrong for lots of pages if cl_collation is 0,
182 # so let's update it while we're here.
183 if ( $title->getNamespace() == NS_CATEGORY ) {
184 $type = 'subcat';
185 } elseif ( $title->getNamespace() == NS_FILE ) {
186 $type = 'file';
187 } else {
188 $type = 'page';
189 }
190 $newSortKey = $collation->getSortKey(
191 $title->getCategorySortkey( $prefix ) );
192 if ( $verboseStats ) {
193 $this->updateSortKeySizeHistogram( $newSortKey );
194 }
195
196 if ( !$dryRun ) {
197 $dbw->update(
198 'categorylinks',
199 [
200 'cl_sortkey' => $newSortKey,
201 'cl_sortkey_prefix' => $prefix,
202 'cl_collation' => $collationName,
203 'cl_type' => $type,
204 'cl_timestamp = cl_timestamp',
205 ],
206 [ 'cl_from' => $row->cl_from, 'cl_to' => $row->cl_to ],
207 __METHOD__
208 );
209 }
210 if ( $row ) {
211 $batchConds = [ $this->getBatchCondition( $row, $dbw ) ];
212 }
213 }
214 if ( !$dryRun ) {
215 $this->commitTransaction( $dbw, __METHOD__ );
216 }
217
218 $count += $res->numRows();
219 $this->output( "$count done.\n" );
220
221 if ( !$dryRun && ++$batchCount % self::SYNC_INTERVAL == 0 ) {
222 $this->output( "Waiting for slaves ... " );
223 wfWaitForSlaves();
224 $this->output( "done\n" );
225 }
226 } while ( $res->numRows() == self::BATCH_SIZE );
227
228 $this->output( "$count rows processed\n" );
229
230 if ( $verboseStats ) {
231 $this->output( "\n" );
232 $this->showSortKeySizeHistogram();
233 }
234 }
235
236 /**
237 * Return an SQL expression selecting rows which sort above the given row,
238 * assuming an ordering of cl_collation, cl_to, cl_type, cl_from
239 * @param stdClass $row
240 * @param DatabaseBase $dbw
241 * @return string
242 */
243 function getBatchCondition( $row, $dbw ) {
244 if ( $this->hasOption( 'previous-collation' ) ) {
245 $fields = [ 'cl_to', 'cl_type', 'cl_from' ];
246 } else {
247 $fields = [ 'cl_collation', 'cl_to', 'cl_type', 'cl_from' ];
248 }
249 $first = true;
250 $cond = false;
251 $prefix = false;
252 foreach ( $fields as $field ) {
253 if ( $dbw->getType() === 'mysql' && $field === 'cl_type' ) {
254 // Range conditions with enums are weird in mysql
255 // This must be a numeric literal, or it won't work.
256 $encValue = intval( $row->cl_type_numeric );
257 } else {
258 $encValue = $dbw->addQuotes( $row->$field );
259 }
260 $inequality = "$field > $encValue";
261 $equality = "$field = $encValue";
262 if ( $first ) {
263 $cond = $inequality;
264 $prefix = $equality;
265 $first = false;
266 } else {
267 $cond .= " OR ($prefix AND $inequality)";
268 $prefix .= " AND $equality";
269 }
270 }
271
272 return $cond;
273 }
274
275 function updateSortKeySizeHistogram( $key ) {
276 $length = strlen( $key );
277 if ( !isset( $this->sizeHistogram[$length] ) ) {
278 $this->sizeHistogram[$length] = 0;
279 }
280 $this->sizeHistogram[$length]++;
281 }
282
283 function showSortKeySizeHistogram() {
284 $maxLength = max( array_keys( $this->sizeHistogram ) );
285 if ( $maxLength == 0 ) {
286 return;
287 }
288 $numBins = 20;
289 $coarseHistogram = array_fill( 0, $numBins, 0 );
290 $coarseBoundaries = [];
291 $boundary = 0;
292 for ( $i = 0; $i < $numBins - 1; $i++ ) {
293 $boundary += $maxLength / $numBins;
294 $coarseBoundaries[$i] = round( $boundary );
295 }
296 $coarseBoundaries[$numBins - 1] = $maxLength + 1;
297 $raw = '';
298 for ( $i = 0; $i <= $maxLength; $i++ ) {
299 if ( $raw !== '' ) {
300 $raw .= ', ';
301 }
302 if ( !isset( $this->sizeHistogram[$i] ) ) {
303 $val = 0;
304 } else {
305 $val = $this->sizeHistogram[$i];
306 }
307 for ( $coarseIndex = 0; $coarseIndex < $numBins - 1; $coarseIndex++ ) {
308 if ( $coarseBoundaries[$coarseIndex] > $i ) {
309 $coarseHistogram[$coarseIndex] += $val;
310 break;
311 }
312 }
313 if ( $coarseIndex == $numBins - 1 ) {
314 $coarseHistogram[$coarseIndex] += $val;
315 }
316 $raw .= $val;
317 }
318
319 $this->output( "Sort key size histogram\nRaw data: $raw\n\n" );
320
321 $maxBinVal = max( $coarseHistogram );
322 $scale = 60 / $maxBinVal;
323 $prevBoundary = 0;
324 for ( $coarseIndex = 0; $coarseIndex < $numBins; $coarseIndex++ ) {
325 if ( !isset( $coarseHistogram[$coarseIndex] ) ) {
326 $val = 0;
327 } else {
328 $val = $coarseHistogram[$coarseIndex];
329 }
330 $boundary = $coarseBoundaries[$coarseIndex];
331 $this->output( sprintf( "%-10s %-10d |%s\n",
332 $prevBoundary . '-' . ( $boundary - 1 ) . ': ',
333 $val,
334 str_repeat( '*', $scale * $val ) ) );
335 $prevBoundary = $boundary;
336 }
337 }
338 }
339
340 $maintClass = "UpdateCollation";
341 require_once RUN_MAINTENANCE_IF_MAIN;