addDescription( <<addOption( 'rev-id', 'The rev_id to start copying from. Default: 0', false, true ); $this->addOption( 'max-rev-id', 'The rev_id to stop at. Default: result of MAX(rev_id)', false, true ); $this->addOption( 'throttle', 'Wait this many milliseconds after copying each batch of revisions. Default: 0', false, true ); $this->addOption( 'force', 'Run regardless of whether the database says it\'s been run already' ); } public function doDBUpdates() { $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory(); $dbr = $this->getDB( DB_REPLICA, [ 'vslow' ] ); $dbw = $this->getDB( DB_MASTER ); $throttle = intval( $this->getOption( 'throttle', 0 ) ); $maxRevId = intval( $this->getOption( 'max-rev-id', 0 ) ); $start = $this->getOption( 'rev-id', 0 ); $end = $maxRevId > 0 ? $maxRevId : $dbw->selectField( 'revision', 'MAX(rev_id)', false, __METHOD__ ); $blockStart = $start; $attempted = 0; $inserted = 0; $this->output( "Copying IP revisions to ip_changes, from rev_id $start to rev_id $end\n" ); while ( $blockStart <= $end ) { $blockEnd = min( $blockStart + $this->mBatchSize, $end ); $rows = $dbr->select( 'revision', [ 'rev_id', 'rev_timestamp', 'rev_user_text' ], [ "rev_id BETWEEN $blockStart AND $blockEnd", 'rev_user' => 0 ], __METHOD__ ); $numRows = $rows->numRows(); if ( !$rows || $numRows === 0 ) { $blockStart = $blockEnd + 1; continue; } $this->output( "...checking $numRows revisions for IP edits that need copying, " . "between rev_ids $blockStart and $blockEnd\n" ); $insertRows = []; foreach ( $rows as $row ) { // Make sure this is really an IP, e.g. not maintenance user or imported revision. if ( IP::isValid( $row->rev_user_text ) ) { $insertRows[] = [ 'ipc_rev_id' => $row->rev_id, 'ipc_rev_timestamp' => $row->rev_timestamp, 'ipc_hex' => IP::toHex( $row->rev_user_text ), ]; $attempted++; } } $dbw->insert( 'ip_changes', $insertRows, __METHOD__, 'IGNORE' ); $inserted += $dbw->affectedRows(); $lbFactory->waitForReplication(); usleep( $throttle * 1000 ); $blockStart = $blockEnd + 1; } $this->output( "Attempted to insert $attempted IP revisions, $inserted actually done.\n" ); return true; } protected function getUpdateKey() { return 'populate ip_changes'; } } $maintClass = "PopulateIpChanges"; require_once RUN_MAINTENANCE_IF_MAIN;