Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions scripts/us_epa/airqualityindex/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@
"import_inputs": [
{
"template_mcf": "EPA_AQI.tmcf",
"cleaned_csv": "output/EPA_AQI.csv"
"cleaned_csv": "output/EPA_AQI.csv",
"node_mcf": "output/EPA_AQI.mcf"
}
],
"cron_schedule": "15 22 10 1,7 *",
"validation_config_file": "validation_config.json",
"resource_limits": {
"cpu": 32,
"memory": 128,
"disk": 512

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where is node.mcf is added

"disk": 300
}
}
]
Expand Down
13 changes: 13 additions & 0 deletions scripts/us_epa/airqualityindex/validation_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"schema_version": "1.0",
"rules": [
{
"rule_id": "check_deleted_records_percent",
"description": "Strictly enforce historical deletion average threshold of 0.1%",
"validator": "DELETED_RECORDS_PERCENT",
"params": {
"threshold": 0.1

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can still see goldens in final output

}
}
]
}