jenkins-bot has submitted this change and it was merged. Change subject: Send more update jobs to Elasticsearch ......................................................................
Send more update jobs to Elasticsearch We rate limited the jobs for a while and it worked well. At some point a few weeks ago something changed and we could no longer keep up with the rate limit. Its not clear if that was caused by higher rate of change or changes in how the rate limit works. Either way, a higher rate limit is in order. This raises the rate limit to be a bit more than 5x what it was which seems pretty safe. Change-Id: Ic70bcbbda1c6ecb14bc62777dc22da46cf994c7e --- M wmf-config/CirrusSearch-common.php 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: Aaron Schulz: Looks good to me, but someone else must approve Chad: Looks good to me, approved jenkins-bot: Verified diff --git a/wmf-config/CirrusSearch-common.php b/wmf-config/CirrusSearch-common.php index 81f6641..b76b299 100644 --- a/wmf-config/CirrusSearch-common.php +++ b/wmf-config/CirrusSearch-common.php @@ -44,11 +44,11 @@ # Set the backoff for Cirrus' job that reacts to template changes - slow and steady # will help prevent spikes in Elasticsearch load. -$wgJobBackoffThrottling['cirrusSearchLinksUpdate'] = 0.75; +$wgJobBackoffThrottling['cirrusSearchLinksUpdate'] = 5; # Also engage a delay for the Cirrus job that counts incoming links to pages when # pages are newly linked or unlinked. Too many link count queries at once could flood # Elasticsearch. -$wgJobBackoffThrottling['cirrusSearchIncomingLinkCount'] = 0.25; +$wgJobBackoffThrottling['cirrusSearchIncomingLinkCount'] = 1; # Ban the hebrew plugin, it is unstable $wgCirrusSearchBannedPlugins[] = 'elasticsearch-analysis-hebrew'; -- To view, visit https://gerrit.wikimedia.org/r/173347 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ic70bcbbda1c6ecb14bc62777dc22da46cf994c7e Gerrit-PatchSet: 3 Gerrit-Project: operations/mediawiki-config Gerrit-Branch: master Gerrit-Owner: Manybubbles <[email protected]> Gerrit-Reviewer: Aaron Schulz <[email protected]> Gerrit-Reviewer: Chad <[email protected]> Gerrit-Reviewer: GWicke <[email protected]> Gerrit-Reviewer: Manybubbles <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
