46 require_once __DIR__ .
'/../Maintenance.php';
55 parent::__construct();
57 $this->
addOption(
'type',
'Set compression type to either: gzip|concat',
false,
true,
't' );
60 'Maximum number of revisions in a concat chunk',
67 'Earliest date to check for uncompressed revisions',
72 $this->
addOption(
'end-date',
'Latest revision date to compress',
false,
true,
'e' );
75 'The id to start from (gzip -> text table, concat -> page table)',
82 'Store specified revisions in an external cluster (untested)',
88 'The page_id to stop at (only when using concat compression type)',
97 if ( !function_exists(
"gzdeflate" ) ) {
98 $this->
fatalError(
"You must enable zlib support in PHP to compress old revisions!\n" .
99 "Please see https://www.php.net/manual/en/ref.zlib.php\n" );
103 $chunkSize = $this->
getOption(
'chunksize', 20 );
104 $startId = $this->
getOption(
'startid', 0 );
105 $beginDate = $this->
getOption(
'begin-date',
'' );
106 $endDate = $this->
getOption(
'end-date',
'' );
107 $extDB = $this->
getOption(
'extdb',
'' );
108 $endId = $this->
getOption(
'endid',
false );
111 $this->
error(
"Type \"{$type}\" not supported" );
114 if ( $extDB !=
'' ) {
115 $this->
output(
"Compressing database {$wgDBname} to external cluster {$extDB}\n"
116 . str_repeat(
'-', 76 ) .
"\n\n" );
118 $this->
output(
"Compressing database {$wgDBname}\n"
119 . str_repeat(
'-', 76 ) .
"\n\n" );
123 if (
$type ==
'concat' ) {
125 $endDate, $extDB, $endId );
131 $this->
output(
"Done.\n" );
143 $this->
output(
"Starting from old_id $start...\n" );
148 [
'old_id',
'old_flags',
'old_text' ],
151 [
'ORDER BY' =>
'old_id',
'LIMIT' => $chunksize,
'FOR UPDATE' ]
154 if (
$res->numRows() == 0 ) {
160 foreach (
$res as $row ) {
161 # print " {$row->old_id} - {$row->old_namespace}:{$row->old_title}\n";
163 $last = $row->old_id;
166 $start =
$last + 1; # Deletion may leave
long empty stretches
167 $this->
output(
"$start...\n" );
179 if ( strpos( $row->old_flags,
'gzip' ) !==
false
180 || strpos( $row->old_flags,
'object' ) !==
false
182 # print "Already compressed row {$row->old_id}\n";
186 $flags = $row->old_flags ?
"{$row->old_flags},gzip" :
"gzip";
187 $compress = gzdeflate( $row->old_text );
189 # Store in external storage if required
190 if ( $extdb !==
'' ) {
191 $esFactory = MediaWikiServices::getInstance()->getExternalStoreFactory();
193 $storeObj = $esFactory->getStore(
'DB' );
194 $compress = $storeObj->store( $extdb, $compress );
195 if ( $compress ===
false ) {
196 $this->
error(
"Unable to store object" );
203 $dbw->update(
'text',
205 'old_flags' => $flags,
206 'old_text' => $compress
208 'old_id' => $row->old_id
229 $endDate, $extdb =
"", $maxPageId =
false
236 # Set up external storage
237 if ( $extdb !=
'' ) {
238 $esFactory = MediaWikiServices::getInstance()->getExternalStoreFactory();
240 $storeObj = $esFactory->getStore(
'DB' );
243 $blobStore = MediaWikiServices::getInstance()
244 ->getBlobStoreFactory()
247 # Get all articles by page_id
249 $maxPageId =
$dbr->selectField(
'page',
'max(page_id)',
'', __METHOD__ );
251 $this->
output(
"Starting from $startId of $maxPageId\n" );
264 # For each article, get a list of revisions which fit the criteria
266 # No recompression, use a condition on old_flags
267 # Don't compress object type entities, because that might produce data loss when
268 # overwriting bulk storage concat rows. Don't compress external references, because
269 # the script doesn't yet delete rows from external storage.
271 'old_flags NOT ' .
$dbr->buildLike(
$dbr->anyString(),
'object',
$dbr->anyString() )
272 .
' AND old_flags NOT '
273 .
$dbr->buildLike(
$dbr->anyString(),
'external',
$dbr->anyString() )
277 if ( !preg_match(
'/^\d{14}$/', $beginDate ) ) {
278 $this->
error(
"Invalid begin date \"$beginDate\"\n" );
282 $conds[] =
"rev_timestamp>'" . $beginDate .
"'";
285 if ( !preg_match(
'/^\d{14}$/', $endDate ) ) {
286 $this->
error(
"Invalid end date \"$endDate\"\n" );
290 $conds[] =
"rev_timestamp<'" . $endDate .
"'";
294 $tables = [
'revision',
'text' ];
295 $conds[] =
'rev_text_id=old_id';
297 $slotRoleStore = MediaWikiServices::getInstance()->getSlotRoleStore();
298 $tables = [
'revision',
'slots',
'content',
'text' ];
299 $conds = array_merge( [
300 'rev_id=slot_revision_id',
301 'slot_role_id=' . $slotRoleStore->getId( SlotRecord::MAIN ),
302 'content_id=slot_content_id',
303 'SUBSTRING(content_address, 1, 3)=' .
$dbr->addQuotes(
'tt:' ),
304 'SUBSTRING(content_address, 4)=old_id',
308 $fields = [
'rev_id',
'old_id',
'old_flags',
'old_text' ];
309 $revLoadOptions =
'FOR UPDATE';
311 # Don't work with current revisions
312 # Don't lock the page table for update either -- TS 2006-04-04
313 # $tables[] = 'page';
314 # $conds[] = 'page_id=rev_page AND rev_id != page_latest';
316 for ( $pageId = $startId; $pageId <= $maxPageId; $pageId++ ) {
323 $pageRes =
$dbr->select(
'page',
324 [
'page_id',
'page_namespace',
'page_title',
'page_latest' ],
325 $pageConds + [
'page_id' => $pageId ], __METHOD__ );
326 if ( $pageRes->numRows() == 0 ) {
329 $pageRow =
$dbr->fetchObject( $pageRes );
332 $titleObj =
Title::makeTitle( $pageRow->page_namespace, $pageRow->page_title );
333 $this->
output(
"$pageId\t" . $titleObj->getPrefixedDBkey() .
" " );
336 $revRes = $dbw->select( $tables, $fields,
338 'rev_page' => $pageRow->page_id,
339 # Don
't operate on the current revision
340 # Use < instead of <> in case the current revision has changed
341 # since the page select, which wasn't locking
342 'rev_id < ' . $pageRow->page_latest
348 foreach ( $revRes as $revRow ) {
352 if ( count( $revs ) < 2 ) {
353 # No revisions matching, no further processing
360 while ( $i < count( $revs ) ) {
361 if ( $i < count( $revs ) - $maxChunkSize ) {
362 $thisChunkSize = $maxChunkSize;
364 $thisChunkSize = count( $revs ) - $i;
371 $primaryOldid = $revs[$i]->old_id;
373 # Get the text of each revision and add it to the object
374 for ( $j = 0; $j < $thisChunkSize && $chunk->isHappy(); $j++ ) {
375 $oldid = $revs[$i + $j]->old_id;
377 # Get text. We do not need the full `extractBlob` since the query is built
378 # to fetch non-externalstore blobs.
379 $text = $blobStore->decompressData(
380 $revs[$i + $j]->old_text,
381 explode(
',', $revs[$i + $j]->old_flags )
384 if ( $text ===
false ) {
385 $this->
error(
"\nError, unable to get text in old_id $oldid" );
386 # $dbw->delete( 'old', [ 'old_id' => $oldid ] );
389 if ( $extdb ==
"" && $j == 0 ) {
390 $chunk->setText( $text );
393 # Don't make a stub if it's going to be longer than the article
394 # Stubs are typically about 100 bytes
395 if ( strlen( $text ) < 120 ) {
400 $stub->setLocation( $primaryOldid );
401 $stub->setReferrer( $oldid );
410 # If we couldn't actually use any stubs because the pages were too small, do nothing
412 if ( $extdb !=
"" ) {
413 # Move blob objects to External Storage
414 $stored = $storeObj->store( $extdb,
serialize( $chunk ) );
415 if ( $stored ===
false ) {
416 $this->
error(
"Unable to store object" );
420 # Store External Storage URLs instead of Stub placeholders
421 foreach ( $stubs as $stub ) {
422 if ( $stub ===
false ) {
425 # $stored should provide base path to a BLOB
426 $url = $stored .
"/" . $stub->getHash();
427 $dbw->update(
'text',
430 'old_flags' =>
'external,utf-8',
432 'old_id' => $stub->getReferrer(),
437 # Store the main object locally
438 $dbw->update(
'text',
441 'old_flags' =>
'object,utf-8',
443 'old_id' => $primaryOldid
447 # Store the stub objects
448 for ( $j = 1; $j < $thisChunkSize; $j++ ) {
449 # Skip if not compressing and don't overwrite the first revision
450 if ( $stubs[$j] !==
false && $revs[$i + $j]->old_id != $primaryOldid ) {
451 $dbw->update(
'text',
454 'old_flags' =>
'object,utf-8',
456 'old_id' => $revs[$i + $j]->old_id
466 $i += $thisChunkSize;