8
edits
(→Validation Data Roll-ups: Clarified description) |
(failureReason was renamed to failure_reason as of https://github.com/mozilla/telemetry-batch-view/pull/205) |
||
| Line 25: | Line 25: | ||
| took || bigint || Number of milli-seconds it took to Sync. | | took || bigint || Number of milli-seconds it took to Sync. | ||
|- | |- | ||
| | | failure_reason || row(name varchar, value varchar) || Sync failure reason, or null if no failure. | ||
|- | |- | ||
| status || row(sync varchar, service varchar) || The status of sync after completion, or null is both statuses record success. | | status || row(sync varchar, service varchar) || The status of sync after completion, or null is both statuses record success. | ||
| Line 52: | Line 52: | ||
| status || varchar || The status of this engine after sync completed, or null is the status reflects success. | | status || varchar || The status of this engine after sync completed, or null is the status reflects success. | ||
|- | |- | ||
| | | failure_reason || row(name varchar, value varchar) || Details of any errors recorded during the sync of this engine, or null on success. | ||
|- | |- | ||
| incoming || row(applied bigint, failed bigint, newFailed bigint, reconciled bigint) || Details of how many incoming records were applied, failed, failed for the first time in this sync, and reconciled. | | incoming || row(applied bigint, failed bigint, newFailed bigint, reconciled bigint) || Details of how many incoming records were applied, failed, failed for the first time in this sync, and reconciled. | ||
| Line 77: | Line 77: | ||
| problems || array(row(name varchar, count varchar)) || The problems identified. Problems with a count of 0 are excluded. Null on failure or if no problems occurred. | | problems || array(row(name varchar, count varchar)) || The problems identified. Problems with a count of 0 are excluded. Null on failure or if no problems occurred. | ||
|- | |- | ||
| | | failure_reason || row(name varchar, value varchar) || Details of any errors recorded during the validation, or null if validation succeeded. | ||
|} | |} | ||
edits