'dbutils.jobs.taskValues.get' taking debug value in workflow, instead of actual value being set

KalyaniJaya
Databricks Partner

Hi,

I am trying to pass and set values from one wheel into another wheel in databricks workflow.

I have used 'dbutils.jobs.taskValues.get' and 'dbutils.jobs.taskValues.set'

I have used 'dbutils.jobs.taskValues.get' in second task and made sure to keep dependency of task 1 wheel to complete before task 2 kicks in. 

The issue is as below :

while trying to get the task key , in workflow by default it is considering the debug value , instead of actual value.

value = 'dbutils.jobs.taskValues.get'(taskKey="BatchProcessing", key ="batch_result",default=None,

        debugValue="samplee")
could anyone help in fixing the issue.