Page MenuHomePhabricator

Run convertUserOptions on all Wikimedia Wikis
Closed, InvalidPublic

Description

As a followup to bug 31204, we should ensure that all user_options blobs are migrated to rows in the user_properties table


Version: unspecified
Severity: normal

Details

Reference
bz31218

Related Objects

StatusSubtypeAssignedTask
ResolvedNone
OpenFeatureNone
InvalidNone

Event Timeline

bzimport raised the priority of this task from to Needs Triage.Nov 21 2014, 11:56 PM
bzimport set Reference to bz31218.
bzimport added a subscriber: Unknown Object (MLST).

We have the vague impression this may have already been done, but since we're going to drop the old user_options blob entirely in 1.19 (yay cleanup!) we should make sure. :)

enwiki:

mysql> select count(*) from user where user_options != '';
+----------+

count(*)

+----------+

0

+----------+
1 row in set (18 min 21.46 sec)

I wonder if that means it has been, and we're safe to do nothing?

dewiki:

mysql> select count(*) from user where user_options != '';
+----------+

count(*)

+----------+

0

+----------+
1 row in set (10.31 sec)

frwiki:

mysql> select count(*) from user where user_options != '';
+----------+

count(*)

+----------+

0

+----------+
1 row in set (4.60 sec)

If these big wikis have all been done, I'm pretty sure that means everywhere has been...

Marking INVALID as there's nothing to actually be done