@@ -72,9 +72,6 @@ def fields(self) -> Tuple[str, ...]:
72
72
USER_ID = "user_id"
73
73
POCKET_ID = "pocket_id"
74
74
SHIELD_ID = "shield_id"
75
- ECOSYSTEM_CLIENT_ID = "ecosystem_client_id"
76
- ECOSYSTEM_CLIENT_ID_HASH = f"{ ECOSYSTEM_CLIENT_ID } _hash"
77
- DESKTOP_ECOSYSTEM_CLIENT_ID = f"payload.{ ECOSYSTEM_CLIENT_ID } "
78
75
PIONEER_ID = "pioneer_id"
79
76
ID = "id"
80
77
CFR_ID = f"COALESCE({ CLIENT_ID } , { IMPRESSION_ID } )"
@@ -95,14 +92,6 @@ def fields(self) -> Tuple[str, ...]:
95
92
f" UNNEST([{ CLIENT_ID } , { IMPRESSION_SRC .field } ]) AS `_" ,
96
93
field = "_" ,
97
94
)
98
- ECOSYSTEM_CLIENT_ID_HMAC_SRC = DeleteSource (
99
- table = "account_ecosystem_restricted.ecosystem_client_id_deletion_v1" ,
100
- field = ECOSYSTEM_CLIENT_ID_HASH ,
101
- )
102
- ECOSYSTEM_CLIENT_ID_SRC = DeleteSource (
103
- table = "account_ecosystem_restricted.ecosystem_client_id_deletion_v1" ,
104
- field = ECOSYSTEM_CLIENT_ID ,
105
- )
106
95
FXA_HMAC_SRC = DeleteSource (
107
96
table = "firefox_accounts_derived.fxa_delete_events_v1" , field = "hmac_user_id"
108
97
)
@@ -138,8 +127,6 @@ def fields(self) -> Tuple[str, ...]:
138
127
DESKTOP_SRC ,
139
128
IMPRESSION_SRC ,
140
129
CFR_SRC ,
141
- ECOSYSTEM_CLIENT_ID_HMAC_SRC ,
142
- ECOSYSTEM_CLIENT_ID_SRC ,
143
130
FXA_HMAC_SRC ,
144
131
FXA_SRC ,
145
132
]
@@ -274,21 +261,6 @@ def fields(self) -> Tuple[str, ...]:
274
261
user_id_target (
275
262
table = "firefox_accounts_derived.fxa_users_services_last_seen_v1"
276
263
): FXA_SRC ,
277
- # account ecosystem telemetry (AET)
278
- DeleteTarget (
279
- table = "telemetry_stable.account_ecosystem_v4" , field = DESKTOP_ECOSYSTEM_CLIENT_ID
280
- ): ECOSYSTEM_CLIENT_ID_SRC ,
281
- DeleteTarget (
282
- table = "firefox_accounts_stable.account_ecosystem_v1" , field = ECOSYSTEM_CLIENT_ID
283
- ): ECOSYSTEM_CLIENT_ID_SRC ,
284
- DeleteTarget (
285
- table = "account_ecosystem_derived.ecosystem_client_id_lookup_v1" ,
286
- field = ECOSYSTEM_CLIENT_ID_HASH ,
287
- ): ECOSYSTEM_CLIENT_ID_HMAC_SRC ,
288
- DeleteTarget (
289
- table = "account_ecosystem_derived.desktop_clients_daily_v1" ,
290
- field = ECOSYSTEM_CLIENT_ID_HASH ,
291
- ): ECOSYSTEM_CLIENT_ID_HMAC_SRC ,
292
264
# legacy mobile
293
265
DeleteTarget (
294
266
table = "telemetry_stable.core_v1" ,
@@ -369,9 +341,6 @@ def fields(self) -> Tuple[str, ...]:
369
341
client_id_target (table = "eng_workflow_stable.build_v1" ),
370
342
# other
371
343
DeleteTarget (table = "telemetry_stable.pioneer_study_v4" , field = PIONEER_ID ),
372
- DeleteTarget (
373
- table = "telemetry_stable.pre_account_v4" , field = DESKTOP_ECOSYSTEM_CLIENT_ID
374
- ),
375
344
]
376
345
}
377
346
0 commit comments