Home > Enterprise >  Databricks: Automatically run notebook on databricks cluster launch
Databricks: Automatically run notebook on databricks cluster launch

Time:10-21

Is there anyway to automatically trigger a notebook to be executed once a cluster starts?

CodePudding user response:

You can try using jobs cluster and dynamically attach your notebooks, which will trigger the notebook once the cluster comes up. enter image description here

If you see the above pic, you could attach your notebook and choose the type as 'notebook' and when ever the cluster comes up, it will automatically deploy your notebook and start its execution.

  • Related