Hey @Krthk
If you want to orchestrate a notebook, the easiest way is to go to File > Schedule directly from the notebook. My recommendation is to use cron syntax to define when it should run, and attach it to a predefined cluster or configure a new job cluster.
Keep in mind that if youโre using a new job cluster, youโll need to wait for the cluster to spin up, install dependencies, and execute the code. If you configure the cluster with the same specs (instance type, number of workers, etc.) as the one you used during development, the actual code execution time should be similar.
If youโre using a pre-existing interactive cluster, youโll only need to wait for it to wake up (if itโs currently stopped). After the job finishes, you can check the โView detailsโ section on the right panel of the job run, and look into the Event log to see how much time was spent in each phase: cluster creation, init script execution, and actual job execution.
Hope this helps ๐
Isi