44 private $revisionStore;
54 private $loadBalancer;
62 parent::__construct();
65 $this->
addDescription(
'Find and mark bad content blobs. Marked blobs will be read as empty. '
66 .
'Use --scan-from to find revisions with bad blobs, use --mark to mark them.' );
67 $this->
addOption(
'scan-from',
'Start scanning revisions at the given date. '
68 .
'Format: Anything supported by MediaWiki, e.g. YYYYMMDDHHMMSS or YYYY-MM-DDTHH:MM:SS',
70 $this->
addOption(
'revisions',
'A list of revision IDs to process, separated by comma or '
71 .
'colon or whitespace. Revisions belonging to deleted pages will work. '
72 .
'If set to "-" IDs are read from stdin, one per line.',
false,
true );
73 $this->
addOption(
'limit',
'Maximum number of revisions for --scan-from to scan. '
74 .
'Default: 1000',
false,
true );
75 $this->
addOption(
'mark',
'Mark the blob as "known bad", to avoid errors when '
76 .
'attempting to read it. The value given is the reason for marking the blob as bad, '
77 .
'typically a ticket ID. Requires --revisions to also be set.',
false,
true );
88 $this->revisionStore = $revisionStore ?? $this->revisionStore ?? $services->getRevisionStore();
89 $this->blobStore = $blobStore ?? $this->blobStore ?? $services->getBlobStore();
90 $this->loadBalancer = $loadBalancer ?? $this->loadBalancer ?? $services->getDBLoadBalancer();
91 $this->lbFactory = $lbFactory ?? $this->lbFactory ?? $services->getDBLoadBalancerFactory();
97 private function getStartTimestamp() {
99 if ( strlen( $tsOpt ) < 14 ) {
101 .
', please provide time and date down to the second.' );
106 $this->
fatalError(
'Bad timestamp: ' . $tsOpt );
115 private function getRevisionIds() {
118 if ( $opt ===
'-' ) {
119 $opt = stream_get_contents( STDIN );
137 $this->
fatalError(
'Cannot use --revisions together with --scan-from' );
140 $ids = $this->getRevisionIds();
142 $count = $this->scanRevisionsById( $ids );
143 } elseif ( $this->
hasOption(
'scan-from' ) ) {
145 $this->
fatalError(
'Cannot use --mark with --scan-from, '
146 .
'use --revisions to specify revisions to mark.' );
149 $fromTimestamp = $this->getStartTimestamp();
150 $total = $this->
getOption(
'limit', 1000 );
152 $count = $this->scanRevisionsByTimestamp( $fromTimestamp, $total );
154 $this->
output(
"The range of archive rows scanned is based on the range of revision IDs "
155 .
"scanned in the revision table.\n" );
158 $this->
fatalError(
'The --mark must be used together with --revisions' );
160 $this->
fatalError(
'Must specify one of --revisions or --scan-from' );
165 $this->
output(
"Marked $count bad revisions.\n" );
167 $this->
output(
"Found $count bad revisions.\n" );
170 $this->
output(
"On a unix/linux environment, you can use grep and cut to list of IDs\n" );
171 $this->
output(
"that can then be used with the --revisions option. E.g.\n" );
172 $this->
output(
" grep '! Found bad blob' | cut -s -f 3\n" );
183 private function scanRevisionsByTimestamp( $fromTimestamp, $total ) {
187 $lastTimestamp = $fromTimestamp;
188 $revisionRowsScanned = 0;
189 $archiveRowsScanned = 0;
191 $this->
output(
"Scanning revisions table, "
192 .
"$total rows starting at rev_timestamp $fromTimestamp\n" );
194 while ( $revisionRowsScanned < $total ) {
195 $batchSize = min( $total - $revisionRowsScanned, $this->
getBatchSize() );
196 $revisions = $this->loadRevisionsByTimestamp( $lastRevId, $lastTimestamp, $batchSize );
201 foreach ( $revisions as $rev ) {
203 $firstRevId = $firstRevId ? min( $firstRevId, $rev->getId() ) : $rev->getId();
204 $lastRevId = max( $lastRevId, $rev->getId() );
206 $count += $this->checkRevision( $rev );
209 $lastTimestamp = $rev->getTimestamp();
210 $batchSize = count( $revisions );
211 $revisionRowsScanned += $batchSize;
213 "\t- Scanned a batch of $batchSize revisions, "
214 .
"up to revision $lastRevId ($lastTimestamp)\n"
225 $fromArchived = $this->getNextRevision( $firstRevId,
'<',
'DESC' );
226 $maxArchived = $this->getNextRevision( $lastRevId,
'>',
'ASC' );
227 $maxArchived = $maxArchived ?: PHP_INT_MAX;
229 $this->
output(
"Scanning archive table by ar_rev_id, $fromArchived to $maxArchived\n" );
230 while ( $firstRevId > 0 && $fromArchived < $maxArchived ) {
231 $batchSize = min( $total - $archiveRowsScanned, $this->
getBatchSize() );
232 $revisions = $this->loadArchiveByRevisionId( $fromArchived, $maxArchived, $batchSize );
237 foreach ( $revisions as $rev ) {
238 $count += $this->checkRevision( $rev );
240 $fromArchived = $rev->getId();
241 $batchSize = count( $revisions );
242 $archiveRowsScanned += $batchSize;
244 "\t- Scanned a batch of $batchSize archived revisions, "
245 .
"up to revision $fromArchived ($lastTimestamp)\n"
261 private function loadRevisionsByTimestamp(
int $afterId,
string $fromTimestamp, $batchSize ) {
262 $db = $this->lbFactory->getReplicaDatabase();
263 $queryBuilder = $this->revisionStore->newSelectQueryBuilder( $db );
264 $rows = $queryBuilder->joinComment()
265 ->where( $db->buildComparison(
'>', [
266 'rev_timestamp' => $fromTimestamp,
267 'rev_id' => $afterId,
269 ->useIndex( [
'revision' =>
'rev_timestamp' ] )
270 ->orderBy( [
'rev_timestamp',
'rev_id' ] )
271 ->limit( $batchSize )
272 ->caller( __METHOD__ )->fetchResultSet();
273 $result = $this->revisionStore->newRevisionsFromBatch( $rows, [
'slots' =>
true ] );
274 $this->handleStatus( $result );
276 $records = array_filter( $result->value );
278 '@phan-var RevisionStoreRecord[] $records';
289 private function loadArchiveByRevisionId(
int $afterId,
int $uptoId, $batchSize ) {
290 $db = $this->lbFactory->getReplicaDatabase();
291 $rows = $this->revisionStore->newArchiveSelectQueryBuilder( $db )
293 ->where( [
"ar_rev_id > $afterId",
"ar_rev_id <= $uptoId" ] )
294 ->orderBy(
'ar_rev_id' )
295 ->limit( $batchSize )
296 ->caller( __METHOD__ )->fetchResultSet();
297 $result = $this->revisionStore->newRevisionsFromBatch(
299 [
'archive' =>
true,
'slots' =>
true ]
301 $this->handleStatus( $result );
303 $records = array_filter( $result->value );
305 '@phan-var RevisionArchiveRecord[] $records';
318 private function getNextRevision(
int $revId,
string $comp,
string $dir ) {
319 $db = $this->loadBalancer->getConnectionRef(
DB_REPLICA );
320 $next = $db->newSelectQueryBuilder()
323 ->where(
"rev_id $comp $revId" )
324 ->orderBy( [
"rev_id" ], $dir )
325 ->caller( __METHOD__ )
335 private function scanRevisionsById( array $ids ) {
337 $total = count( $ids );
339 $this->
output(
"Scanning $total ids\n" );
341 foreach ( array_chunk( $ids, $this->
getBatchSize() ) as $batch ) {
342 $revisions = $this->loadRevisionsById( $batch );
349 foreach ( $revisions as $rev ) {
350 $count += $this->checkRevision( $rev );
353 $batchSize = count( $revisions );
354 $this->
output(
"\t- Scanned a batch of $batchSize revisions\n" );
365 private function loadRevisionsById( array $ids ) {
366 $db = $this->lbFactory->getReplicaDatabase();
367 $queryBuilder = $this->revisionStore->newSelectQueryBuilder( $db );
369 $rows = $queryBuilder
371 ->where( [
'rev_id' => $ids ] )
372 ->caller( __METHOD__ )->fetchResultSet();
374 $result = $this->revisionStore->newRevisionsFromBatch( $rows, [
'slots' =>
true ] );
376 $this->handleStatus( $result );
378 $revisions = array_filter( $result->value );
379 '@phan-var RevisionArchiveRecord[] $revisions';
382 if ( count( $revisions ) < count( $ids ) ) {
383 $rows = $this->revisionStore->newArchiveSelectQueryBuilder( $db )
385 ->where( [
'ar_rev_id' => array_diff( $ids, array_keys( $revisions ) ) ] )
386 ->caller( __METHOD__ )->fetchResultSet();
388 $archiveResult = $this->revisionStore->newRevisionsFromBatch(
390 [
'slots' =>
true,
'archive' =>
true ]
393 $this->handleStatus( $archiveResult );
396 $revisions += array_filter( $archiveResult->value );
409 foreach ( $rev->
getSlots()->getSlots() as $slot ) {
410 $count += $this->checkSlot( $rev, $slot );
413 if ( $count === 0 && $this->
hasOption(
'mark' ) ) {
414 $this->
output(
"\t# No bad blob found on revision {$rev->getId()}, skipped!\n" );
430 $this->blobStore->getBlob( $address );
433 }
catch ( Exception $ex ) {
434 $error = $ex->getMessage();
435 $type = get_class( $ex );
440 $this->
output(
"\t! Found bad blob on revision {$rev->getId()} "
441 .
"from {$rev->getTimestamp()} ({$slot->getRole()} slot): "
442 .
"content_id={$slot->getContentId()}, address=<{$slot->getAddress()}>, "
443 .
"error='$error', type='$type'. ID:\t{$rev->getId()}\n" );
446 $newAddress = $this->markBlob( $slot, $error );
447 $this->
output(
"\tChanged address to <$newAddress>\n" );
459 private function markBlob(
SlotRecord $slot,
string $error =
null ) {
463 $args[
'reason'] = $this->
getOption(
'mark' );
467 $args[
'error'] = $error;
471 $badAddress =
'bad:' . urlencode( $address );
477 $badAddress = substr( $badAddress, 0, 255 );
479 $dbw = $this->loadBalancer->getConnectionRef(
DB_PRIMARY );
482 [
'content_address' => $badAddress ],
490 private function handleStatus(
StatusValue $status ) {
491 if ( !$status->
isOK() ) {
493 Status::wrap( $status )->getMessage(
false,
false,
'en' )->text()
496 if ( !$status->
isGood() ) {
498 "\t! " . Status::wrap( $status )->getMessage(
false,
false,
'en' )->text()
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option was set.
parseIntList( $text)
Utility function to parse a string (perhaps from a command line option) into a list of integers (perh...
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.