Shivatharun
Shivatharun
Below is the code its breaking near depends_on =['task1'] which is task2 dependent on completion of task1 . error: attribute error : str object has no attribute as_dict. Please correct...
How to create dependency jobs / lineage using databricks sdk. I found documentation for single job creation. ``` created_job = w.jobs.create(name=f'sdk-{time.time_ns()}', tasks=[ jobs.Task(description="test", existing_cluster_id=cluster_id, notebook_task=jobs.NotebookTask(notebook_path="test_run"), task_key="test", timeout_seconds=0) ``` Lets say...