addDescription( "Remove rows from echo_event and echo_target_page that don't have corresponding rows in " . "echo_notification or echo_email_batch" ); $this->setBatchSize( 500 ); $this->requireExtension( 'Echo' ); } public function getUpdateKey() { return __CLASS__; } public function doDBUpdates() { $dbFactory = MWEchoDbFactory::newFromDefault(); $dbw = $dbFactory->getEchoDb( DB_MASTER ); $dbr = $dbFactory->getEchoDb( DB_REPLICA ); $iterator = new BatchRowIterator( $dbr, [ 'echo_event', 'echo_notification', 'echo_email_batch' ], 'event_id', $this->mBatchSize ); $iterator->addJoinConditions( [ 'echo_notification' => [ 'LEFT JOIN', 'notification_event=event_id' ], 'echo_email_batch' => [ 'LEFT JOIN', 'eeb_event_id=event_id' ], ] ); $iterator->addConditions( [ 'notification_user' => null, 'eeb_user_id' => null, ] ); $this->output( "Removing orphaned echo_event rows...\n" ); $eventsProcessed = 0; $targetsProcessed = 0; foreach ( $iterator as $batch ) { $ids = []; foreach ( $batch as $row ) { $ids[] = $row->event_id; } $dbw->delete( 'echo_event', [ 'event_id' => $ids ] ); $eventsProcessed += $dbw->affectedRows(); $dbw->delete( 'echo_target_page', [ 'etp_event' => $ids ] ); $targetsProcessed += $dbw->affectedRows(); $this->output( "Deleted $eventsProcessed orphaned events and $targetsProcessed target_page rows.\n" ); $dbFactory->waitForSlaves(); } $this->output( "Removing any remaining orphaned echo_target_page rows...\n" ); $iterator = new BatchRowIterator( $dbr, [ 'echo_target_page', 'echo_event' ], 'etp_event', $this->mBatchSize ); $iterator->addJoinConditions( [ 'echo_event' => [ 'LEFT JOIN', 'event_id=etp_event' ] ] ); $iterator->addConditions( [ 'event_type' => null ] ); $iterator->addOptions( [ 'DISTINCT' ] ); $processed = 0; foreach ( $iterator as $batch ) { $ids = []; foreach ( $batch as $row ) { $ids[] = $row->etp_event; } $dbw->delete( 'echo_target_page', [ 'etp_event' => $ids ] ); $processed += $dbw->affectedRows(); $this->output( "Deleted $processed orphaned target_page rows.\n" ); $dbFactory->waitForSlaves(); } return true; } } $maintClass = RemoveOrphanedEvents::class; require_once RUN_MAINTENANCE_IF_MAIN;