Hi Shambhu Rai ,
Thankyou for using Microsoft Q&A platform and thanks for posting your question here.
As per my understanding, you are trying to pass the output of databricks notebook into lookup activity in ADF pipeline. Please let me know if that is not the correct understanding.
- In your notebook, you may call dbutils.notebook.exit("returnValue") and corresponding "returnValue" will be returned to the service.
- You can consume the output in the service by using expression such as
@{activity('databricks notebook activity name').output.runOutput}
If you are passing JSON object you can retrieve values by appending property names. Example: @{activity('databricks notebook activity name').output.runOutput.PropertyName}
For more details, kindly check the below documentation: Passing parameters between notebooks and pipelines
Hope it helps. Kindly accept the answer by clicking on Accept answer
button. Thankyou