GoogleCloudPlatform / cloud-data-quality

Data Quality Engine for BigQuery
Apache License 2.0
258 stars 57 forks source link

Implement tagging for rule binding and tags execution #253

Open Luiscri opened 9 months ago

Luiscri commented 9 months ago

It would be really helpful if we could tag the rule bindings, and then execute the DQ checks for those tagged rule bindings only, similar to how it's done in dbt. Something like:

rule_bindings:
    my_rule_binding:
        tags: ["weekly"]
...

and then:

python3 clouddq_executable.zip tag:weekly ...

Would this be something easy to implement?