Hi @Dima Frank
Is there a required setting in either ADF or Databricks that ensures parameters are correctly passed and resolved?
There are required settings in both ADF and Databricks to ensure that parameters are correctly passed and resolved. These settings must align on both sides for parameter passing to work.
The parameter name in ADF (entity_name)
must exactly match the widget name in Databricks notebook should be case-sensitive.
dbutils.widgets.text("entity_name", "")
entity_name = dbutils.widgets.get("entity_name")
Please refer the below Microsoft document for more information
https://learn.microsoft.com/en-us/azure/data-factory/transform-data-using-databricks-notebook
I hope this information helps. Please do let us know if you have any further queries.
Kindly consider upvoting the comment if the information provided is helpful. This can assist other community members in resolving similar issues.
Thank you.