When I attempt to execute a Databricks notebook from Azure Datafactory with a Base parameter 'entityName',see image, I get the error:
My Base parameters are as follows:
I also have the following widgets in my Databricks Notebook
dbutils.widgets.text("entityName", "test" ,"Entity Name") entityName = dbutils.widgets.get("entityName")
Any thoughts why I'm getting the error?
When no value provided for the parameter then the above error will occur. To resolve the error, provide value for pipeline parameter as shown below:
Then the notebook activity will run successfully without any error as shown below: