We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This appears to be backwards: It creates a DAG graph where 1 and 2 are dependent on task3
Note Snowflake docs :
. . . dag_task2 = DAGTask( StoredProcedureCall( dosomething, stage_location="@mystage", packages=["snowflake-snowpark-python"] ), warehouse="test_warehouse" ) # Shift right and left operators can specify task relationships. dag_task1 >> dag_task2 # dag_task1 is a predecessor of dag_task2 . . .
Apologies if I've done anything incorrect in here. This is my first :D
The text was updated successfully, but these errors were encountered:
happy to try a PR for it
Sorry, something went wrong.
No branches or pull requests
This appears to be backwards:
It creates a DAG graph where 1 and 2 are dependent on task3
Note Snowflake docs :
Apologies if I've done anything incorrect in here. This is my first :D
The text was updated successfully, but these errors were encountered: