From 74082ddb8512289d718a44d6164be536b490d004 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 16 Jul 2014 02:15:07 -0700 Subject: [PATCH] Made ViewCountUpdate do the page table updates in auto-commit mode Change-Id: I3c52e61507eb8ccc7d46e70e24a2bdd573cf1fe2 --- includes/deferred/ViewCountUpdate.php | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/includes/deferred/ViewCountUpdate.php b/includes/deferred/ViewCountUpdate.php index ddd2e09fbe..901ef9f76e 100644 --- a/includes/deferred/ViewCountUpdate.php +++ b/includes/deferred/ViewCountUpdate.php @@ -49,23 +49,32 @@ class ViewCountUpdate implements DeferrableUpdate { $dbw = wfGetDB( DB_MASTER ); if ( $wgHitcounterUpdateFreq <= 1 || $dbw->getType() == 'sqlite' ) { - $dbw->update( - 'page', array( 'page_counter = page_counter + 1' ), - array( 'page_id' => $this->id ), - __METHOD__ - ); - + $id = $this->id; + $method = __METHOD__; + $dbw->onTransactionIdle( function() use ( $dbw, $id, $method ) { + try { + $dbw->update( 'page', + array( 'page_counter = page_counter + 1' ), + array( 'page_id' => $id ), + $method + ); + } catch ( DBError $e ) { + MWExceptionHandler::logException( $e ); + } + } ); return; } # Not important enough to warrant an error page in case of failure try { + // Since `hitcounter` is non-transactional, the contention is minimal $dbw->insert( 'hitcounter', array( 'hc_id' => $this->id ), __METHOD__ ); $checkfreq = intval( $wgHitcounterUpdateFreq / 25 + 1 ); if ( rand() % $checkfreq == 0 && $dbw->lastErrno() == 0 ) { $this->collect(); } } catch ( DBError $e ) { + MWExceptionHandler::logException( $e ); } } @@ -75,7 +84,6 @@ class ViewCountUpdate implements DeferrableUpdate { $dbw = wfGetDB( DB_MASTER ); $rown = $dbw->selectField( 'hitcounter', 'COUNT(*)', array(), __METHOD__ ); - if ( $rown < $wgHitcounterUpdateFreq ) { return; } @@ -83,14 +91,13 @@ class ViewCountUpdate implements DeferrableUpdate { wfProfileIn( __METHOD__ . '-collect' ); $old_user_abort = ignore_user_abort( true ); - $dbw->lockTables( array(), array( 'hitcounter' ), __METHOD__, false ); - $dbType = $dbw->getType(); $tabletype = $dbType == 'mysql' ? "ENGINE=HEAP " : ''; $hitcounterTable = $dbw->tableName( 'hitcounter' ); $acchitsTable = $dbw->tableName( 'acchits' ); $pageTable = $dbw->tableName( 'page' ); + $dbw->lockTables( array(), array( 'hitcounter' ), __METHOD__, false ); $dbw->query( "CREATE TEMPORARY TABLE $acchitsTable $tabletype AS " . "SELECT hc_id,COUNT(*) AS hc_n FROM $hitcounterTable " . 'GROUP BY hc_id', __METHOD__ ); -- 2.20.1