mediawiki_history (MWH), mediawiki_user_history (MWUH), and serversideaccountcreation (SSAC) record marginally different numbers of global account registrations. Here are the counts for May 2026:
| table | global registration count |
|---|---|
| mediawiki_history | 246,238 |
| mediawiki_user_history | 249,822 |
| serversideaccountcreation | 248,273 |
It seems reasonable that event loss could cause SSAC to end up with slightly fewer rows, but it's much more surprising that MWH and MWUH differ, since they come from the same history reconstruction process.
Queries
mediawiki_history
SELECT COUNT(DISTINCT event_user_central_id) AS registration_count FROM wmf.mediawiki_history LEFT JOIN canonical_data.wikis w ON wiki_db = database_code WHERE event_entity = 'user' AND event_type = 'create' AND NOT event_user_is_created_by_system -- Filter out wikis which are not connected to CentralAuth -- and which require separate registration AND NOT w.editability = 'private' AND event_timestamp BETWEEN '2026-05' AND '2026-06' AND snapshot = '2026-05'
mediawiki_user_history
SELECT COUNT(DISTINCT user_central_id) AS registration_count FROM wmf.mediawiki_user_history LEFT JOIN canonical_data.wikis w ON wiki_db = database_code WHERE caused_by_event_type = 'create' AND NOT created_by_system -- Filter out wikis which are not connected to CentralAuth -- and which require separate registration AND NOT w.editability = 'private' AND start_timestamp BETWEEN '2026-05' AND '2026-06' AND snapshot = '2026-05'
serversideaccountcreation
SELECT COUNT(*) AS registration_count FROM event_sanitized.serversideaccountcreation LEFT JOIN canonical_data.wikis w ON wiki = database_code WHERE -- Filter out wikis which are not connected to CentralAuth -- and which require separate registration NOT w.editability = 'private' AND MAKE_DATE(year, month, day) >= DATE '2026-05-01' AND MAKE_DATE(year, month, day) < DATE '2026-06-01'