MediaWiki  1.32.5
populateContentTables.php
Go to the documentation of this file.
1 <?php
27 use Wikimedia\Assert\Assert;
30 
31 require_once __DIR__ . '/Maintenance.php';
32 
38 
40  private $dbw;
41 
44 
46  private $blobStore;
47 
49  private $mainRoleId;
50 
52  private $contentRowMap = null;
53 
54  private $count = 0, $totalCount = 0;
55 
56  public function __construct() {
57  parent::__construct();
58 
59  $this->addDescription( 'Populate content and slot tables' );
60  $this->addOption( 'table', 'revision or archive table, or `all` to populate both', false,
61  true );
62  $this->addOption( 'reuse-content',
63  'Reuse content table rows when the address and model are the same. '
64  . 'This will increase the script\'s time and memory usage, perhaps significantly.',
65  false, false );
66  $this->addOption( 'start-revision', 'The rev_id to start at', false, true );
67  $this->addOption( 'start-archive', 'The ar_rev_id to start at', false, true );
68  $this->setBatchSize( 500 );
69  }
70 
71  private function initServices() {
72  $this->dbw = $this->getDB( DB_MASTER );
73  $this->contentModelStore = MediaWikiServices::getInstance()->getContentModelStore();
74  $this->blobStore = MediaWikiServices::getInstance()->getBlobStore();
75  $this->mainRoleId = MediaWikiServices::getInstance()->getSlotRoleStore()
76  ->acquireId( SlotRecord::MAIN );
77  }
78 
79  public function execute() {
81 
82  $t0 = microtime( true );
83 
85  $this->writeln(
86  '...cannot update while \$wgMultiContentRevisionSchemaMigrationStage '
87  . 'does not have the SCHEMA_COMPAT_WRITE_NEW bit set.'
88  );
89  return false;
90  }
91 
92  $this->initServices();
93 
94  if ( $this->getOption( 'reuse-content', false ) ) {
95  $this->loadContentMap();
96  }
97 
98  foreach ( $this->getTables() as $table ) {
99  $this->populateTable( $table );
100  }
101 
102  $elapsed = microtime( true ) - $t0;
103  $this->writeln( "Done. Processed $this->totalCount rows in $elapsed seconds" );
104  return true;
105  }
106 
110  private function getTables() {
111  $table = $this->getOption( 'table', 'all' );
112  $validTableOptions = [ 'all', 'revision', 'archive' ];
113 
114  if ( !in_array( $table, $validTableOptions ) ) {
115  $this->fatalError( 'Invalid table. Must be either `revision` or `archive` or `all`' );
116  }
117 
118  if ( $table === 'all' ) {
119  $tables = [ 'revision', 'archive' ];
120  } else {
121  $tables = [ $table ];
122  }
123 
124  return $tables;
125  }
126 
127  private function loadContentMap() {
128  $t0 = microtime( true );
129  $this->writeln( "Loading existing content table rows..." );
130  $this->contentRowMap = [];
131  $dbr = $this->getDB( DB_REPLICA );
132  $from = false;
133  while ( true ) {
134  $res = $dbr->select(
135  'content',
136  [ 'content_id', 'content_address', 'content_model' ],
137  $from ? "content_id > $from" : '',
138  __METHOD__,
139  [ 'ORDER BY' => 'content_id', 'LIMIT' => $this->getBatchSize() ]
140  );
141  if ( !$res || !$res->numRows() ) {
142  break;
143  }
144  foreach ( $res as $row ) {
145  $from = $row->content_id;
146  $this->contentRowMap["{$row->content_model}:{$row->content_address}"] = $row->content_id;
147  }
148  }
149  $elapsed = microtime( true ) - $t0;
150  $this->writeln( "Loaded " . count( $this->contentRowMap ) . " rows in $elapsed seconds" );
151  }
152 
156  private function populateTable( $table ) {
157  $t0 = microtime( true );
158  $this->count = 0;
159  $this->writeln( "Populating $table..." );
160 
161  if ( $table === 'revision' ) {
162  $idField = 'rev_id';
163  $tables = [ 'revision', 'slots', 'page' ];
164  $fields = [
165  'rev_id',
166  'len' => 'rev_len',
167  'sha1' => 'rev_sha1',
168  'text_id' => 'rev_text_id',
169  'content_model' => 'rev_content_model',
170  'namespace' => 'page_namespace',
171  'title' => 'page_title',
172  ];
173  $joins = [
174  'slots' => [ 'LEFT JOIN', 'rev_id=slot_revision_id' ],
175  'page' => [ 'LEFT JOIN', 'rev_page=page_id' ],
176  ];
177  $startOption = 'start-revision';
178  } else {
179  $idField = 'ar_rev_id';
180  $tables = [ 'archive', 'slots' ];
181  $fields = [
182  'rev_id' => 'ar_rev_id',
183  'len' => 'ar_len',
184  'sha1' => 'ar_sha1',
185  'text_id' => 'ar_text_id',
186  'content_model' => 'ar_content_model',
187  'namespace' => 'ar_namespace',
188  'title' => 'ar_title',
189  ];
190  $joins = [
191  'slots' => [ 'LEFT JOIN', 'ar_rev_id=slot_revision_id' ],
192  ];
193  $startOption = 'start-archive';
194  }
195 
196  $minmax = $this->dbw->selectRow(
197  $table,
198  [ 'min' => "MIN( $idField )", 'max' => "MAX( $idField )" ],
199  '',
200  __METHOD__
201  );
202  if ( $this->hasOption( $startOption ) ) {
203  $minmax->min = (int)$this->getOption( $startOption );
204  }
205  if ( !$minmax || !is_numeric( $minmax->min ) || !is_numeric( $minmax->max ) ) {
206  // No rows?
207  $minmax = (object)[ 'min' => 1, 'max' => 0 ];
208  }
209 
210  $batchSize = $this->getBatchSize();
211 
212  for ( $startId = $minmax->min; $startId <= $minmax->max; $startId += $batchSize ) {
213  $endId = min( $startId + $batchSize - 1, $minmax->max );
214  $rows = $this->dbw->select(
215  $tables,
216  $fields,
217  [
218  "$idField >= $startId",
219  "$idField <= $endId",
220  'slot_revision_id IS NULL',
221  ],
222  __METHOD__,
223  [ 'ORDER BY' => 'rev_id' ],
224  $joins
225  );
226  if ( $rows->numRows() !== 0 ) {
227  $this->populateContentTablesForRowBatch( $rows, $startId, $table );
228  }
229 
230  $elapsed = microtime( true ) - $t0;
231  $this->writeln(
232  "... $table processed up to revision id $endId of {$minmax->max}"
233  . " ($this->count rows in $elapsed seconds)"
234  );
235  }
236 
237  $elapsed = microtime( true ) - $t0;
238  $this->writeln( "Done populating $table table. Processed $this->count rows in $elapsed seconds" );
239  }
240 
247  private function populateContentTablesForRowBatch( ResultWrapper $rows, $startId, $table ) {
248  $this->beginTransaction( $this->dbw, __METHOD__ );
249 
250  if ( $this->contentRowMap === null ) {
251  $map = [];
252  } else {
253  $map = &$this->contentRowMap;
254  }
255  $contentKeys = [];
256 
257  try {
258  // Step 1: Figure out content rows needing insertion.
259  $contentRows = [];
260  foreach ( $rows as $row ) {
261  $revisionId = $row->rev_id;
262 
263  Assert::invariant( $revisionId !== null, 'rev_id must not be null' );
264 
265  $model = $this->getContentModel( $row );
266  $modelId = $this->contentModelStore->acquireId( $model );
267  $address = SqlBlobStore::makeAddressFromTextId( $row->text_id );
268 
269  $key = "{$modelId}:{$address}";
270  $contentKeys[$revisionId] = $key;
271 
272  if ( !isset( $map[$key] ) ) {
273  $this->fillMissingFields( $row, $model, $address );
274 
275  $map[$key] = false;
276  $contentRows[] = [
277  'content_size' => (int)$row->len,
278  'content_sha1' => $row->sha1,
279  'content_model' => $modelId,
280  'content_address' => $address,
281  ];
282  }
283  }
284 
285  // Step 2: Insert them, then read them back in for use in the next step.
286  if ( $contentRows ) {
287  $id = $this->dbw->selectField( 'content', 'MAX(content_id)', '', __METHOD__ );
288  $this->dbw->insert( 'content', $contentRows, __METHOD__ );
289  $res = $this->dbw->select(
290  'content',
291  [ 'content_id', 'content_model', 'content_address' ],
292  'content_id > ' . (int)$id,
293  __METHOD__
294  );
295  foreach ( $res as $row ) {
296  $key = $row->content_model . ':' . $row->content_address;
297  $map[$key] = $row->content_id;
298  }
299  }
300 
301  // Step 3: Insert the slot rows.
302  $slotRows = [];
303  foreach ( $rows as $row ) {
304  $revisionId = $row->rev_id;
305  $contentId = $map[$contentKeys[$revisionId]] ?? false;
306  if ( $contentId === false ) {
307  throw new \RuntimeException( "Content row for $revisionId not found after content insert" );
308  }
309  $slotRows[] = [
310  'slot_revision_id' => $revisionId,
311  'slot_role_id' => $this->mainRoleId,
312  'slot_content_id' => $contentId,
313  // There's no way to really know the previous revision, so assume no inheriting.
314  // rev_parent_id can get changed on undeletions, and deletions can screw up
315  // rev_timestamp ordering.
316  'slot_origin' => $revisionId,
317  ];
318  }
319  $this->dbw->insert( 'slots', $slotRows, __METHOD__ );
320  $this->count += count( $slotRows );
321  $this->totalCount += count( $slotRows );
322  } catch ( \Exception $e ) {
323  $this->rollbackTransaction( $this->dbw, __METHOD__ );
324  $this->fatalError( "Failed to populate content table $table row batch starting at $startId "
325  . "due to exception: " . $e->__toString() );
326  }
327 
328  $this->commitTransaction( $this->dbw, __METHOD__ );
329  }
330 
335  private function getContentModel( $row ) {
336  if ( isset( $row->content_model ) ) {
337  return $row->content_model;
338  }
339 
340  $title = Title::makeTitle( $row->namespace, $row->title );
341 
343  }
344 
348  private function writeln( $msg ) {
349  $this->output( "$msg\n" );
350  }
351 
360  private function fillMissingFields( $row, $model, $address ) {
361  if ( !isset( $row->content_model ) ) {
362  // just for completeness
363  $row->content_model = $model;
364  }
365 
366  if ( isset( $row->len ) && isset( $row->sha1 ) && $row->sha1 !== '' ) {
367  // No need to load the content, quite now.
368  return;
369  }
370 
371  $blob = $this->blobStore->getBlob( $address );
372 
373  if ( !isset( $row->len ) ) {
374  // NOTE: The nominal size of the content may not be the length of the raw blob.
376  $content = $handler->unserializeContent( $blob );
377 
378  $row->len = $content->getSize();
379  }
380 
381  if ( !isset( $row->sha1 ) || $row->sha1 === '' ) {
382  $row->sha1 = SlotRecord::base36Sha1( $blob );
383  }
384  }
385 }
386 
387 $maintClass = 'PopulateContentTables';
388 require_once RUN_MAINTENANCE_IF_MAIN;
PopulateContentTables\$totalCount
$totalCount
Definition: populateContentTables.php:54
PopulateContentTables\$blobStore
BlobStore $blobStore
Definition: populateContentTables.php:46
ContentHandler\getForModelID
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
Definition: ContentHandler.php:297
PopulateContentTables\$count
$count
Definition: populateContentTables.php:54
Maintenance\fatalError
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Definition: Maintenance.php:465
captcha-old.count
count
Definition: captcha-old.py:249
MediaWiki\Storage\SqlBlobStore
Service for storing and loading Content objects.
Definition: SqlBlobStore.php:50
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:317
PopulateContentTables\$mainRoleId
int $mainRoleId
Definition: populateContentTables.php:49
PopulateContentTables\loadContentMap
loadContentMap()
Definition: populateContentTables.php:127
PopulateContentTables\populateTable
populateTable( $table)
Definition: populateContentTables.php:156
$tables
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
Definition: hooks.txt:1018
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
$wgMultiContentRevisionSchemaMigrationStage
int $wgMultiContentRevisionSchemaMigrationStage
RevisionStore table schema migration stage (content, slots, content_models & slot_roles tables).
Definition: DefaultSettings.php:8993
$maintClass
$maintClass
Definition: populateContentTables.php:387
$res
$res
Definition: database.txt:21
Wikimedia\Rdbms\ResultWrapper
Result wrapper for grabbing data queried from an IDatabase object.
Definition: ResultWrapper.php:24
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
PopulateContentTables\fillMissingFields
fillMissingFields( $row, $model, $address)
Compute any missing fields in $row.
Definition: populateContentTables.php:360
PopulateContentTables\$contentRowMap
array null $contentRowMap
Map "{$modelId}:{$address}" to content_id.
Definition: populateContentTables.php:52
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
PopulateContentTables\$dbw
IDatabase $dbw
Definition: populateContentTables.php:40
$dbr
$dbr
Definition: testCompression.php:50
Maintenance\rollbackTransaction
rollbackTransaction(IDatabase $dbw, $fname)
Rollback the transcation on a DB handle.
Definition: Maintenance.php:1413
Maintenance\beginTransaction
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
Definition: Maintenance.php:1378
PopulateContentTables\populateContentTablesForRowBatch
populateContentTablesForRowBatch(ResultWrapper $rows, $startId, $table)
Definition: populateContentTables.php:247
PopulateContentTables
Populate the content and slot tables.
Definition: populateContentTables.php:37
PopulateContentTables\writeln
writeln( $msg)
Definition: populateContentTables.php:348
ContentHandler\getDefaultModelFor
static getDefaultModelFor(Title $title)
Returns the name of the default content model to be used for the page with the given title.
Definition: ContentHandler.php:182
PopulateContentTables\$contentModelStore
NameTableStore $contentModelStore
Definition: populateContentTables.php:43
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
PopulateContentTables\getTables
getTables()
Definition: populateContentTables.php:110
$blob
$blob
Definition: testCompression.php:65
PopulateContentTables\__construct
__construct()
Default constructor.
Definition: populateContentTables.php:56
PopulateContentTables\execute
execute()
Do the actual work.
Definition: populateContentTables.php:79
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:236
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:545
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
DB_MASTER
const DB_MASTER
Definition: defines.php:26
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
PopulateContentTables\initServices
initServices()
Definition: populateContentTables.php:71
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2221
SCHEMA_COMPAT_WRITE_NEW
const SCHEMA_COMPAT_WRITE_NEW
Definition: Defines.php:286
Maintenance\commitTransaction
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
Definition: Maintenance.php:1393
MediaWiki\Storage\NameTableStore
Definition: NameTableStore.php:35
$handler
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition: hooks.txt:813
MediaWiki\Storage\BlobStore
Service for loading and storing data blobs.
Definition: BlobStore.php:33
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:271
$rows
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition: hooks.txt:2683
Maintenance\getBatchSize
getBatchSize()
Returns batch size.
Definition: Maintenance.php:347
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Maintenance\getDB
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1351
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:414
$content
$content
Definition: pageupdater.txt:72
PopulateContentTables\getContentModel
getContentModel( $row)
Definition: populateContentTables.php:335
object
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
Definition: globals.txt:25
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular option exists.
Definition: Maintenance.php:257
Revision\SlotRecord
Value object representing a content slot associated with a page revision.
Definition: SlotRecord.php:39
Maintenance\setBatchSize
setBatchSize( $s=0)
Set the batch size.
Definition: Maintenance.php:355