[MediaWiki-commits] [Gerrit] Enable the structured language overlay and increase the inst... - change (operations/mediawiki-config)

2016-02-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Enable the structured language overlay and increase the 
instrumentation rate
..


Enable the structured language overlay and increase the instrumentation rate

In stable 90% of users will see the simpler language overlay, the remaining
10% will see the structured language overlay. In beta 100% of users will see
the structured language overlay.

Increase the stable channel instrumentation rate by a factor of 10.

Dependency: If82c5c53b68e881c9d6cad66e48a4af93a54c25d
Bug: T123980
Change-Id: Ia52389d5a849612df791a1fcc281152f1a17e040
---
M wmf-config/InitialiseSettings.php
1 file changed, 20 insertions(+), 1 deletion(-)

Approvals:
  Thcipriani: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 3e7a1e2..561555e 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -13919,10 +13919,29 @@
'kowiki' => false, // T94388
 ),
 
+'wgMFExperiments' => array(
+   'default' => array(
+   'languageOverlay' => array(
+   'enabled' => true,
+   'buckets' => array(
+   'control' => 0.9,  // simpler overlay
+   'A' => 0.1  // structured overlay
+   ),
+   ),
+   'languageOverlayBeta' => array(
+   'enabled' => true,
+   'buckets' => array(
+   'control' => 0,  // simpler overlay
+   'A' => 1  // structured overlay
+   ),
+   ),
+   ),
+),
+
 'wgMFSchemaMobileWebLanguageSwitcherSampleRate' => array(
'default' => array(
'beta' => 0.1,
-   'stable' => 0.0001,
+   'stable' => 0.001,
),
 ),
 

-- 
To view, visit https://gerrit.wikimedia.org/r/271264
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia52389d5a849612df791a1fcc281152f1a17e040
Gerrit-PatchSet: 6
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Bmansurov 
Gerrit-Reviewer: Florianschmidtwelzow 
Gerrit-Reviewer: Thcipriani 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Enable the structured language overlay and increase the inst... - change (operations/mediawiki-config)

2016-02-17 Thread Bmansurov (Code Review)
Bmansurov has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/271443

Change subject: Enable the structured language overlay and increase the 
instrumentation rate
..

Enable the structured language overlay and increase the instrumentation rate

In stable 90% of users will see the simpler language overlay, the remaining
10% will see the structured language overlay. In beta 100% of users will see
the structured language overlay.
Increase the stable channel instrumentation rate by a factor of 10.

Change-Id: Id07dbfb923d3145ab35167f7ce153b12aa535e6e
Dependency: If82c5c53b68e881c9d6cad66e48a4af93a54c25d
Bug: T123980
---
M wmf-config/InitialiseSettings-labs.php
1 file changed, 18 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/43/271443/1

diff --git a/wmf-config/InitialiseSettings-labs.php 
b/wmf-config/InitialiseSettings-labs.php
index 307f2bf..ed5ce0a 100644
--- a/wmf-config/InitialiseSettings-labs.php
+++ b/wmf-config/InitialiseSettings-labs.php
@@ -300,6 +300,24 @@
'default' => true,
'enwiki' => false,
),
+   'wgMFExperiments' => array(
+   'default' => array(
+   'languageOverlay' => array(
+   'enabled' => true,
+   'buckets' => array(
+   'control' => 0.9,  // simpler 
overlay
+   'A' => 0.1  // structured 
overlay
+   ),
+   ),
+   'languageOverlayBeta' => array(
+   'enabled' => true,
+   'buckets' => array(
+   'control' => 0,  // simpler 
overlay
+   'A' => 1  // structured overlay
+   ),
+   ),
+   ),
+   ),
'wgMFSchemaMobileWebLanguageSwitcherSampleRate' => array(
'default' => array(
'beta' => 1,

-- 
To view, visit https://gerrit.wikimedia.org/r/271443
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id07dbfb923d3145ab35167f7ce153b12aa535e6e
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Bmansurov 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Enable the structured language overlay and increase the inst... - change (operations/mediawiki-config)

2016-02-17 Thread Bmansurov (Code Review)
Bmansurov has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/271264

Change subject: Enable the structured language overlay and increase the 
instrumentation rate
..

Enable the structured language overlay and increase the instrumentation rate

In stable 90% of users will see the simpler language overlay, the remaining
10% will see the structured language overlay. In beta 100% of users will see
the structured language overlay.

Increase the instrumentation rate by a factor of 10.

Dependency: If82c5c53b68e881c9d6cad66e48a4af93a54c25d
Bug: T123980
Change-Id: Ia52389d5a849612df791a1fcc281152f1a17e040
---
M wmf-config/InitialiseSettings.php
1 file changed, 23 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/64/271264/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index fdd1593..a949268 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -13894,10 +13894,31 @@
'kowiki' => false, // T94388
 ),
 
+'wgMFExperiments' => array(
+   'default' => array(
+   'languageOverlay' => array(
+   'beta' => array(
+   'enabled' => true,
+   'buckets' => array(
+   'control' => 0,  // simpler overlay
+   'A' => 1  // structured overlay
+   ),
+   ),
+   'stable' => array(
+   'enabled' => true,
+   'buckets' => array(
+   'control' => 0.9,  // simpler overlay
+   'A' => 0.1  // structured overlay
+   ),
+   ),
+   ),
+   ),
+),
+
 'wgMFSchemaMobileWebLanguageSwitcherSampleRate' => array(
'default' => array(
-   'beta' => 0.1,
-   'stable' => 0.0001,
+   'beta' => 1,
+   'stable' => 0.001,
),
 ),
 

-- 
To view, visit https://gerrit.wikimedia.org/r/271264
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia52389d5a849612df791a1fcc281152f1a17e040
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Bmansurov 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits