Skip to content

Commit 44515e9

Browse files
authored
Sync schema with ETL query (mozilla#421)
Update the search_clients_daily schema to match the ETL query: * submission_date_s3 - Not in ETL query, but does appear to be available in recent queries * tagged-sap - tagged_sap (underscore) in ETL query * tagged-follow-on - tagged_follow_on (underscores) in ETL query * normalized_engine - In ETL query, not in schema * user_pref_browser_search_region - In ETL query, not in schema * is_default_browser - In ETL query, not in schema * experiments - In ETL query, not in schema The schema appears to be a generated section, but these changes are hand-edited. The types are my best guess from looking at the code.
1 parent 6638264 commit 44515e9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/datasets/search/search_clients_daily/reference.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,21 @@ root
6060
|-- tab_open_event_count_sum: long (nullable = true)
6161
|-- active_hours_sum: double (nullable = true)
6262
|-- total_uri_count: long (nullable = true)
63-
|-- tagged-sap: long (nullable = true)
64-
|-- tagged-follow-on: long (nullable = true)
63+
|-- tagged_sap: long (nullable = true)
64+
|-- tagged_follow_on: long (nullable = true)
6565
|-- sap: long (nullable = true)
6666
|-- tagged_sap: long (nullable = true)
6767
|-- tagged_follow_on: long (nullable = true)
6868
|-- organic: long (nullable = true)
6969
|-- search_with_ads: long (nullable = true)
7070
|-- ad_click: long (nullable = true)
7171
|-- unknown: long (nullable = true)
72+
|-- normalized_engine: string (nullable = true)
73+
|-- user_pref_browser_search_region: string (nullable = true)
74+
|-- is_default_browser: boolean (nullable = true)
75+
|-- experiments: map (nullable = true)
76+
| |-- key: string
77+
| |-- value: string
7278
```
7379

7480
# Code Reference

0 commit comments

Comments
 (0)