Azure Synapse notebooks runMultiple() not showing child notebook progress
We are using PySpark notebooks in our Azure Synapse workspace to process our data. Currently we are using belows function to process our notebook in parallel and manage dependencies with a DAG. This works fine, however when one of the notebooks in the DAG fails, we are not getting any good logging.
notebookutils.notebook.runMultiple()
Our output looks like this:
We would really like to see the progress and the status of the notebooks that are running or have ran.
When I look at the documentation it should look like this:
The output above is exactly the output we want. With this output we are able to track the progress and see which notebooks have failed.
We are currently using Azure Synapse and have also tried the mssparkutils.notebook.runMultiple() function. This give the same results
Is there any setting we need to check/enable to get the result and progress in a table like the second screenshot?