by
6502
• New Contributor III
- 5673 Views
- 2 replies
- 2 kudos
Hola all.I have a serious problem, perhaps I missed something, but can't find the solution. I need to push a job description to Databricks using TERRAFORM. I wrote the code, but there is no way to get a task dependant from two different tasks.Conside...
- 5673 Views
- 2 replies
- 2 kudos
Latest Reply
@6502 You need to make multiple depends_on blocks for each dependency, ex.depends_on {
task_key = "ichi"
}
depends_on {
task_key = "ni"
}
1 More Replies
- 2630 Views
- 1 replies
- 0 kudos
Hello,My organization uses two cluster for dev and Prod. We mount our azure blobs on to delta lake to store the delta tables. Prod has bunch of data and dev has limited data. I want to move the data from prod to dev for testing purposes. How can I do...
- 2630 Views
- 1 replies
- 0 kudos
Latest Reply
It depends on the current setup, how your clusters are working right now and how your data is stored. One alternative could be mount the Dev storage to the Prod cluster and execute a DEEP CLONE (https://docs.databricks.com/en/sql/language-manual/delt...