Hi @arkiboys
Thanks for the question and using MS Q&A platform.
It looks like you're trying to execute a dynamic Databricks notebook in your ADF pipeline.
The issue you're facing is due to the way you're referencing the parameter in the notebookPath
field.
Instead of using @concat
, try using the @{...}
syntax to reference the parameter and concatenate it with the rest of the path. Here's the correct way to do it:
In the Notebook Path field, enter:
@{concat('/Users/myusername/company/xyz/', pipeline().parameters.p_table_name)}
This should fix the issue, and the ADF pipeline should be able to execute the dynamic Databricks notebook.
Additionally, make sure that the p_table_name
parameter is defined in your pipeline parameters, and you're passing the correct notebook name as a value when you execute the pipeline.
If you're still facing issues, please check the following:
- Verify that the notebook exists in the specified path with the correct name.
- Ensure that the ADF pipeline has the necessary permissions to access the notebook.
- Check the pipeline execution logs for more detailed error messages.
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.