docs: add note about no_triage while unedr development (#5761)

This commit is contained in:
Leli 2024-06-06 20:01:54 +02:00 коммит произвёл GitHub
Родитель 824f830123
Коммит a6c14b7333
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -183,6 +183,9 @@ For our example, the starting date is `2020-06-01` and we use a schedule interva
The `--tag impact/tier3` parameter specifies that this DAG is considered "tier 3". For a list of valid tags and their descriptions see [Airflow Tags](../reference/airflow_tags.md).
When creating a new DAG, while it is still under active development and assumed to fail during this phase, the DAG can be tagged as `--tag triage/no_triage`. That way it will be ignored by the person on Airflow Triage.
Once the active development is done, the `triage/no_triage` tag can be removed and problems will addressed during the Airflow Triage process.
```bash
./bqetl dag create bqetl_internal_tooling --schedule-interval "0 4 * * *" --owner wlachance@mozilla.com --description "This DAG schedules queries for populating queries related to Mozilla's internal developer tooling (e.g. mozregression)." --start-date 2020-06-01 --tag impact/tier_3
```