Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Add fileCount to outputStatistics and dataQualityMetrics examples (#336)
Browse files Browse the repository at this point in the history
Signed-off-by: Мартынов Максим Сергеевич <[email protected]>
  • Loading branch information
dolfinus authored Jun 27, 2024
1 parent 40463e1 commit 856ab1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ Example:
"inputFacets": {
"dataQualityMetrics": {
"_producer": "https://some.producer.com/version/1.0",
"_schemaURL": "https://openlineage.io/spec/facets/1-0-0/DataQualityMetricsInputDatasetFacet.json",
"_schemaURL": "https://openlineage.io/spec/facets/1-0-2/DataQualityMetricsInputDatasetFacet.json",
"rowCount": 123,
"fileCount": 5,
"bytes": 35602,
"columnMetrics": {
"column_one": {
Expand Down Expand Up @@ -66,4 +67,4 @@ Example:
...
}
```
The facet specification can be found [here](https://openlineage.io/spec/facets/1-0-0/DataQualityMetricsInputDatasetFacet.json).
The facet specification can be found [here](https://openlineage.io/spec/facets/1-0-2/DataQualityMetricsInputDatasetFacet.json).
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ Example:
"outputFacets": {
"outputStatistics": {
"_producer": "https://some.producer.com/version/1.0",
"_schemaURL": "https://openlineage.io/spec/facets/1-0-0/OutputStatisticsOutputDatasetFacet.json",
"_schemaURL": "https://openlineage.io/spec/facets/1-0-2/OutputStatisticsOutputDatasetFacet.json",
"rowCount": 123,
"fileCount": 5,
"size": 35602
}
}
}
...
}
```
The facet specification can be found [here](https://openlineage.io/spec/facets/1-0-0/OutputStatisticsOutputDatasetFacet.json).
The facet specification can be found [here](https://openlineage.io/spec/facets/1-0-2/OutputStatisticsOutputDatasetFacet.json).

0 comments on commit 856ab1b

Please sign in to comment.