Closed
Bug 1875874
Opened 2 years ago
Closed 2 years ago
schema error in `telemetry.bhr_v4`, `telemetry.main_v4`, and other pings for #/environment/system/os/distro
Categories
(Data Platform and Tools :: General, defect)
Data Platform and Tools
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: ascholtz, Assigned: benwu)
References
(Regression)
Details
(Keywords: regression, Whiteboard: [dataquality])
Attachments
(1 file)
A new schema error is happening for bhr pings for #/environment/system/os/distro: expected type: String, found: Null
Currently around 14k
Updated•2 years ago
|
Comment 1•2 years ago
|
||
I'm expanding this bug's scope, since the same schema error is now also happening for six additional legacy telemetry pings:
crash_v4event_v4first_shutdown_v4main_v4modules_v4new_profile_v4
Hopefully this is just a case of the browser implementation/rollout lagging behind telemetry schema definitions, and these will taper off.
Summary: schema error in `telemetry.bhr_v4` for #/environment/system/os/distro → schema error in `telemetry.bhr_v4`, `telemetry.main_v4`, and other pings for #/environment/system/os/distro
Updated•2 years ago
|
Keywords: regression
Regressed by: 1874038
Comment 2•2 years ago
|
||
| Assignee | ||
Updated•2 years ago
|
Assignee: nobody → bewu
| Assignee | ||
Comment 3•2 years ago
|
||
The errors stopped when dataflow redeployed at around 2024-05-01 19:00:00 UTC
SELECT
document_type,
DATE_TRUNC(submission_timestamp, HOUR),
COUNT(*),
FROM
`moz-fx-data-shared-prod.payload_bytes_error.telemetry`
WHERE
DATE(submission_timestamp) BETWEEN '2024-05-01' AND '2024-05-02'
AND (
error_message = 'org.everit.json.schema.ValidationException: #/payload/os/distro: expected type: String, found: Null'
OR error_message = 'org.everit.json.schema.ValidationException: #/environment/system/os/distro: expected type: String, found: Null'
)
GROUP BY document_type, 2
ORDER BY 2, document_type
Related fix in firefox is bug 1894412
You need to log in
before you can comment on or make changes to this bug.
Description
•