Hello everyone,
I have several notebooks (around 10) and I want to run them in a sequential order. At first I thought of using %run but I have a variable that is repeatedly used in every notebook.
So now I am thinking to pass that variable from one main notebook (so that it is easier to change that variable manually only at one place instead of changing that in every notebook variable is being used)
dbutils.notebook.run(path = "test2", arguments={"current_year": current_year }, timeout_seconds = 0)
However, I found in the documentation that this command will fail if the notebook takes more than 10 min irrespective of the timeout we declare.
Documentation Source
So, I want to know will the command work even when the notebook takes more than 10 min.
When I checked this command using a 13 min notebook, the dbutils.notebook.run worked?
Sometimes, my notebook might take more than an hour so need some suggestions.