r83867 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r83866‎ | r83867 | r83868 >
Date:02:50, 14 March 2011
Author:tstarling
Status:ok
Tags:
Comment:
Emergency patch: throttle job queue page_touched updates
Modified paths:
  • /branches/wmf/1.17wmf1/includes/HTMLCacheUpdate.php (modified) (history)

Diff [purge]

Index: branches/wmf/1.17wmf1/includes/HTMLCacheUpdate.php
@@ -184,6 +184,10 @@
185185 array( 'page_id IN (' . $dbw->makeList( $batch ) . ')' ),
186186 __METHOD__
187187 );
 188+ # WM patch: throttle to avoid apache CPU exhaustion -- TS
 189+ if ( php_sapi_name() == 'cli' ) {
 190+ sleep( 1 );
 191+ }
188192 }
189193
190194 # Update squid

Follow-up revisions

RevisionCommit summaryAuthorDate
r975051.18wmf1 Merge r83867, r93686, r93807, r93971, r93972 (some manually do to lo...reedy15:31, 19 September 2011

Status & tagging log