Page MenuHomePhabricator

Validate updated data sent to MobilewikiAppiOSUserHistory
Closed, ResolvedPublic

Description

  • Validate new data, new values being sent to schema.

Event Timeline

LGoto triaged this task as Medium priority.Jan 10 2022, 7:44 PM
LGoto moved this task from Needs Triage to Product Backlog on the Wikipedia-iOS-App-Backlog board.

Verifying I am able to see device_level_enabled and inbox_count values for app_install_ids C58B3FE6-5B7E-4C21-A4EF-F929D247D3A5 and 7FF1F9E3-5911-4E93-99FC-57DBBD1687F7 in MobileWikiAppiOSUserHistory. Query must be specified to be post 2022-01-08 to work in Superset.

Worth noting that I am seeing multiple rows for the same app_install_id for one date, this test data might be useful for @Mazevedo.

dateapp_install_idinbox_countdevice_level_enabled
2022-01-10C58B3FE6-5B7E-4C21-A4EF-F929D247D3A539authorized
2022-01-107FF1F9E3-5911-4E93-99FC-57DBBD1687F70authorized
2022-01-107FF1F9E3-5911-4E93-99FC-57DBBD1687F70notDetermined
2022-01-107FF1F9E3-5911-4E93-99FC-57DBBD1687F70notDetermined
2022-01-117FF1F9E3-5911-4E93-99FC-57DBBD1687F741authorized
2022-01-117FF1F9E3-5911-4E93-99FC-57DBBD1687F79authorized
Query:
SELECT
SUBSTR(dt, 1, 10) AS `date`,
event.app_install_id,
event.inbox_count,
event.device_level_enabled 
FROM event.MobileWikiAppiOSUserHistory
WHERE YEAR = 2022 AND MONTH >= 1 and DAY >= 8
AND event.device_level_enabled IS NOT NULL