Hi team,
i am trying to create the big query table in Vertex AI but the current implementation makes it difficult for the DAG to wait for the Big query table to be created and hence the DAG fails ultimately.
can you tell me the way on how to wait for the resource creation before moving forward with the next step in DAG?
2 Likes
Hi @HiteshSantwani ,
There are a couple of reasons why your DAG initializes even before the completion of its dependencies:
- The downstream tasks might have been set to wait for the wrong/ incorrect task to finish
- There might still be issues with the DAG trigger wait_for_completion, if ever you are using it
You can try exploring other triggers such as wait_for_downstream or on_success. Make sure to also review your dependencies and set the right triggers.
Related StackOverflow discussions:
Usable resources:
I hope these links can be of help.