Hello @Lokesh ,
Thanks for the question and using MS Q&A platform.
It seems that parameter values don't honor lower case and if you hardcode the value to NULL, the issue disappears.
- I doubt lower/upper case is a problem here. As per my understanding when you are passing NULL as parameter value, you are passing a hardcoded valid string value to your parameters and hence it is not failing and when the auto generated parameter value is null
(empty) that means it is an empty string (no value) and hence it is failing.
Here is an existing TSG which calls out this issue and the possible resolution: Azure Databricks Error code: 3202
Message: Could not parse request object: Expected 'key' and 'value' to be set for JSON map field base_parameters, got 'key: "..."' instead.
Cause: Authoring error: No value provided for the parameter.
Recommendation: Inspect the pipeline JSON and ensure all parameters in the baseParameters notebook specify a nonempty value.
Please ensure that your pipeline passes a non-empty value to the baseParametres notebook, and it should help resolve the issue.
Hope this info helps
- Please don't forget to click on
or upvote
button whenever the information provided helps you. Original posters help the community find answers faster by identifying the correct answer. Here is how