snowflake.core.task.dagv1.DAGOperation¶
- class snowflake.core.task.dagv1.DAGOperation(schema: SchemaResource)¶
Bases:
object
APIs to manage task graph child task operations.
Attributes
- schema¶
The schema that the task graph’s child tasks will be read from or create into.
Methods
- __init__(schema: SchemaResource) None ¶
- delete(dag: DAG | str) None ¶
Remove a task graph and all child tasks.
- Parameters:
dag – Name of the task graph to be deleted or a
DAG
instance.
- deploy(dag: DAG, mode: CreateMode = CreateMode.error_if_exists) None ¶
Deploys (create) this task graph including all child tasks under a specific schema in Snowflake.
- Parameters:
dag – The
DAG
instance.mode –
One of the following enum values.
- CreateMode.error_if_exists: Throw an
snowflake.core.exceptions.ConflictError
if the task already exists in Snowflake. Equivalent to SQL
create task <name> ...
.- CreateMode.or_replace: Replace if the task already exists in Snowflake. Equivalent to SQL
create or replace task <name> ...
.- CreateMode.if_not_exists: Do nothing if the task already exists in Snowflake. Equivalent
to SQL
create task <name> if not exists...
Default value is CreateMode.error_if_exists
- CreateMode.error_if_exists: Throw an
- get_complete_dag_runs(dag: DAG | str, *, error_only: bool = True) List[DAGRun] ¶
Get the complete task graph runs within 60 minutes in Snowflake.
- get_current_dag_runs(dag: DAG | str) List[DAGRun] ¶
Get the current task graph runs or next schedule dag run for next 8 days in Snowflake.
- iter_dags(*, like: str) List[str] ¶
Return the task graph names under this schema.
- Parameters:
like – The pattern of the task graph name. Use
%
represent any number of characters and?
for a single character.