Page MenuHomePhabricator

Homepage: delete data from tables in nettrom_growth
Closed, ResolvedPublic

Description

We have three tables in Hive that contains EventLogging data from the Homepage experiment that @nettrom_WMF created:

  1. nettrom_growth.homepage_helppanel_backup This table contains events from the Homepage created through the Mentor or Help Desk modules (ref: T234857).
  2. nettrom_growth.homepagevisit_05 This table contains sanitized data from event.homepagevisit for May 2019, because our whitelisting was implemented at a time that left out some data from earlier that month.
  3. nettrom_growth.homepagemodule_05 Same as for the homepagevisit_05 table.

@nettrom_WMF will delete these tables before the Feb 6, 2020 deadline.

Event Timeline

These tables have now been deleted, ref the terminal session shown below. Closing this task as resolved.

hive (nettrom_growth)> DROP TABLE homepage_helppanel_backup;
OK
Time taken: 0.148 seconds
hive (nettrom_growth)> DROP TABLE homepagevisit_05;
OK
Time taken: 0.07 seconds
hive (nettrom_growth)> DROP TABLE homepagemodule_05;
OK
Time taken: 0.069 seconds
hive (nettrom_growth)> SELECT * FROM homepage_helppanel_backup LIMIT 5;
FAILED: SemanticException [Error 10001]: Line 1:14 Table not found 'homepage_helppanel_backup'
hive (nettrom_growth)> SELECT * FROM homepagevisit_05 LIMIT 5;
FAILED: SemanticException [Error 10001]: Line 1:14 Table not found 'homepagevisit_05'
hive (nettrom_growth)> SELECT * FROM homepagemodule_05 LIMIT 5;
FAILED: SemanticException [Error 10001]: Line 1:14 Table not found 'homepagemodule_05'