Phuedx has uploaded a new change for review. ( https://gerrit.wikimedia.org/r/374815 )
Change subject: pagePreviews: Scale A/B test bucket sizes by 10 ...................................................................... pagePreviews: Scale A/B test bucket sizes by 10 Currently, we're seeing ~10 Popups events/s at peak time [0]. We've had the go ahead from Analytics Engineering to increase that rate to ~100 events/s [1]. Since the rate is proportional to the size of the on and control buckets - controlled by $wgPopupsAnonsExperimentalGroupSize - we simply multiply it by 10 to achieve the desired rate. [0] https://grafana.wikimedia.org/dashboard/db/eventlogging-schema?var-schema=Popups&refresh=5m&orgId=1&from=1503921600000&to=1504028841970 [1] https://phabricator.wikimedia.org/T172291#3565685 Bug: T172291 Change-Id: I13b849c173665bb119c7abfb0bd7fdeb0376f4b8 --- M wmf-config/InitialiseSettings.php 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config refs/changes/15/374815/1 diff --git a/wmf-config/InitialiseSettings.php b/wmf-config/InitialiseSettings.php index 7bb2165..2722766 100644 --- a/wmf-config/InitialiseSettings.php +++ b/wmf-config/InitialiseSettings.php @@ -13620,8 +13620,8 @@ 'wgPopupsAnonsExperimentalGroupSize' => [ // Read: Enable previews for all anonymous users by default, which is the current behaviour on all wikis except enwiki and dewiki per T162672. 'default' => 0, - 'enwiki' => 0.006, - 'dewiki' => 0.016, + 'enwiki' => 0.06, + 'dewiki' => 0.16, ], 'wgPopupsEventLogging' => [ -- To view, visit https://gerrit.wikimedia.org/r/374815 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I13b849c173665bb119c7abfb0bd7fdeb0376f4b8 Gerrit-PatchSet: 1 Gerrit-Project: operations/mediawiki-config Gerrit-Branch: master Gerrit-Owner: Phuedx <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
