MediaWiki  1.33.0
orphanStats.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/../Maintenance.php';
25 
27 
34 class OrphanStats extends Maintenance {
35  public function __construct() {
36  parent::__construct();
37  $this->addDescription(
38  "Show some statistics on the blob_orphans table, created with trackBlobs.php" );
39  }
40 
41  protected function &getDB( $cluster, $groups = [], $wiki = false ) {
42  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
43  $lb = $lbFactory->getExternalLB( $cluster );
44 
45  return $lb->getConnection( DB_REPLICA );
46  }
47 
48  public function execute() {
49  $dbr = $this->getDB( DB_REPLICA );
50  if ( !$dbr->tableExists( 'blob_orphans' ) ) {
51  $this->fatalError( "blob_orphans doesn't seem to exist, need to run trackBlobs.php first" );
52  }
53  $res = $dbr->select( 'blob_orphans', '*', '', __METHOD__ );
54 
55  $num = 0;
56  $totalSize = 0;
57  $hashes = [];
58  $maxSize = 0;
59 
60  foreach ( $res as $boRow ) {
61  $extDB = $this->getDB( $boRow->bo_cluster );
62  $blobRow = $extDB->selectRow(
63  'blobs',
64  '*',
65  [ 'blob_id' => $boRow->bo_blob_id ],
66  __METHOD__
67  );
68 
69  $num++;
70  $size = strlen( $blobRow->blob_text );
71  $totalSize += $size;
72  $hashes[sha1( $blobRow->blob_text )] = true;
73  $maxSize = max( $size, $maxSize );
74  }
75  unset( $res );
76 
77  $this->output( "Number of orphans: $num\n" );
78  if ( $num > 0 ) {
79  $this->output( "Average size: " . round( $totalSize / $num, 0 ) . " bytes\n" .
80  "Max size: $maxSize\n" .
81  "Number of unique texts: " . count( $hashes ) . "\n" );
82  }
83  }
84 }
85 
87 require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance\fatalError
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Definition: Maintenance.php:485
captcha-old.count
count
Definition: captcha-old.py:249
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:329
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
$res
$res
Definition: database.txt:21
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
OrphanStats\__construct
__construct()
Default constructor.
Definition: orphanStats.php:35
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
$dbr
$dbr
Definition: testCompression.php:50
OrphanStats\getDB
& getDB( $cluster, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: orphanStats.php:41
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
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
OrphanStats
Maintenance script that shows some statistics on the blob_orphans table, created with trackBlobs....
Definition: orphanStats.php:34
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\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:434
$hashes
$hashes
Definition: testCompression.php:66
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
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
OrphanStats\execute
execute()
Do the actual work.
Definition: orphanStats.php:48
$maintClass
$maintClass
Definition: orphanStats.php:86