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" );
102 $type = $this->
getOption(
'type',
'concat' );
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 );
110 if ( $type !=
'concat' && $type !=
'gzip' ) {
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' ) {
124 $success = $this->compressWithConcat( $startId, $chunkSize, $beginDate,
125 $endDate, $extDB, $endId );
127 $this->compressOldPages( $startId, $extDB );
131 $this->
output(
"Done.\n" );
141 private function compressOldPages( $start = 0, $extdb =
'' ) {
143 $this->
output(
"Starting from old_id $start...\n" );
146 $res = $dbw->newSelectQueryBuilder()
147 ->select( [
'old_id',
'old_flags',
'old_text' ] )
150 ->where(
"old_id>=$start" )
151 ->orderBy(
'old_id' )
152 ->limit( $chunksize )
153 ->caller( __METHOD__ )->fetchResultSet();
155 if ( $res->numRows() == 0 ) {
161 foreach ( $res as $row ) {
162 # print " {$row->old_id} - {$row->old_namespace}:{$row->old_title}\n";
163 $this->compressPage( $row, $extdb );
164 $last = $row->old_id;
167 $start = $last + 1; # Deletion may leave
long empty stretches
168 $this->
output(
"$start...\n" );
179 private function compressPage( $row, $extdb ) {
180 if ( strpos( $row->old_flags,
'gzip' ) !==
false
181 || strpos( $row->old_flags,
'object' ) !==
false
183 # print "Already compressed row {$row->old_id}\n";
187 $flags = $row->old_flags ?
"{$row->old_flags},gzip" :
"gzip";
188 $compress = gzdeflate( $row->old_text );
190 # Store in external storage if required
191 if ( $extdb !==
'' ) {
194 $storeObj = $esFactory->getStore(
'DB' );
195 $compress = $storeObj->store( $extdb, $compress );
196 if ( $compress ===
false ) {
197 $this->
error(
"Unable to store object" );
204 $dbw->update(
'text',
206 'old_flags' => $flags,
207 'old_text' => $compress
209 'old_id' => $row->old_id
228 private function compressWithConcat( $startId, $maxChunkSize, $beginDate,
229 $endDate, $extdb =
"", $maxPageId =
false
234 # Set up external storage
235 if ( $extdb !=
'' ) {
238 $storeObj = $esFactory->getStore(
'DB' );
242 ->getBlobStoreFactory()
245 # Get all articles by page_id
247 $maxPageId = $dbr->newSelectQueryBuilder()
248 ->select(
'max(page_id)' )
250 ->caller( __METHOD__ )->fetchField();
252 $this->
output(
"Starting from $startId of $maxPageId\n" );
265 # For each article, get a list of revisions which fit the criteria
267 # No recompression, use a condition on old_flags
268 # Don't compress object type entities, because that might produce data loss when
269 # overwriting bulk storage concat rows. Don't compress external references, because
270 # the script doesn't yet delete rows from external storage.
272 'old_flags NOT ' . $dbr->buildLike( $dbr->anyString(),
'object', $dbr->anyString() )
273 .
' AND old_flags NOT '
274 . $dbr->buildLike( $dbr->anyString(),
'external', $dbr->anyString() )
278 if ( !preg_match(
'/^\d{14}$/', $beginDate ) ) {
279 $this->
error(
"Invalid begin date \"$beginDate\"\n" );
283 $conds[] =
"rev_timestamp>'" . $beginDate .
"'";
286 if ( !preg_match(
'/^\d{14}$/', $endDate ) ) {
287 $this->
error(
"Invalid end date \"$endDate\"\n" );
291 $conds[] =
"rev_timestamp<'" . $endDate .
"'";
295 $tables = [
'revision',
'slots',
'content',
'text' ];
296 $conds = array_merge( [
297 'rev_id=slot_revision_id',
298 'slot_role_id=' . $slotRoleStore->getId( SlotRecord::MAIN ),
299 'content_id=slot_content_id',
300 'SUBSTRING(content_address, 1, 3)=' . $dbr->addQuotes(
'tt:' ),
301 'SUBSTRING(content_address, 4)=old_id',
304 $fields = [
'rev_id',
'old_id',
'old_flags',
'old_text' ];
305 $revLoadOptions =
'FOR UPDATE';
307 # Don't work with current revisions
308 # Don't lock the page table for update either -- TS 2006-04-04
309 # $tables[] = 'page';
310 # $conds[] = 'page_id=rev_page AND rev_id != page_latest';
312 for ( $pageId = $startId; $pageId <= $maxPageId; $pageId++ ) {
319 $pageRow = $dbr->newSelectQueryBuilder()
320 ->select( [
'page_id',
'page_namespace',
'page_title',
'rev_timestamp' ] )
322 ->straightJoin(
'revision',
null,
'page_latest = rev_id' )
323 ->where( $pageConds )
324 ->andWhere( [
'page_id' => $pageId ] )
325 ->caller( __METHOD__ )->fetchRow();
326 if ( $pageRow ===
false ) {
331 $titleObj = Title::makeTitle( $pageRow->page_namespace, $pageRow->page_title );
332 $this->
output(
"$pageId\t" . $titleObj->getPrefixedDBkey() .
" " );
335 $revRes = $dbw->select( $tables, $fields,
337 'rev_page' => $pageRow->page_id,
338 # Don
't operate on the current revision
339 # Use < instead of <> in case the current revision has changed
340 # since the page select, which wasn't locking
341 'rev_timestamp < ' . (
int)$pageRow->rev_timestamp
347 foreach ( $revRes as $revRow ) {
351 if ( count( $revs ) < 2 ) {
352 # No revisions matching, no further processing
359 while ( $i < count( $revs ) ) {
360 if ( $i < count( $revs ) - $maxChunkSize ) {
361 $thisChunkSize = $maxChunkSize;
363 $thisChunkSize = count( $revs ) - $i;
370 $primaryOldid = $revs[$i]->old_id;
372 # Get the text of each revision and add it to the object
373 for ( $j = 0; $j < $thisChunkSize && $chunk->isHappy(); $j++ ) {
374 $oldid = $revs[$i + $j]->old_id;
376 # Get text. We do not need the full `extractBlob` since the query is built
377 # to fetch non-externalstore blobs.
378 $text = $blobStore->decompressData(
379 $revs[$i + $j]->old_text,
380 explode(
',', $revs[$i + $j]->old_flags )
383 if ( $text ===
false ) {
384 $this->
error(
"\nError, unable to get text in old_id $oldid" );
385 # $dbw->delete( 'old', [ 'old_id' => $oldid ] );
388 if ( $extdb ==
"" && $j == 0 ) {
389 $chunk->setText( $text );
392 # Don't make a stub if it's going to be longer than the article
393 # Stubs are typically about 100 bytes
394 if ( strlen( $text ) < 120 ) {
399 $stub->setLocation( $primaryOldid );
400 $stub->setReferrer( $oldid );
409 # If we couldn't actually use any stubs because the pages were too small, do nothing
411 if ( $extdb !=
"" ) {
412 # 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(),
438 # Store the main object locally
439 $dbw->update(
'text',
441 'old_text' => serialize( $chunk ),
442 'old_flags' =>
'object,utf-8',
444 'old_id' => $primaryOldid
449 # Store the stub objects
450 for ( $j = 1; $j < $thisChunkSize; $j++ ) {
451 # Skip if not compressing and don't overwrite the first revision
452 if ( $stubs[$j] !==
false && $revs[$i + $j]->old_id != $primaryOldid ) {
453 $dbw->update(
'text',
455 'old_text' => serialize( $stubs[$j] ),
456 'old_flags' =>
'object,utf-8',
458 'old_id' => $revs[$i + $j]->old_id
469 $i += $thisChunkSize;
Concatenated gzip (CGZ) storage Improves compression ratio by concatenating like objects before gzipp...
Pointer object for an item within a CGZ blob stored in the text table.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
beginTransaction(IDatabase $dbw, $fname)
Begin a transaction on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transaction on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
waitForReplication()
Wait for replica DBs to catch up.
getServiceContainer()
Returns the main service container.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.