Need help on template-parameters-definition.json to override the parameters in notebook present in synapse pipeline
ABDUL NAYEEM
20
Reputation points
Hello,
There is pipeline in azure synapse workspace which consists of notebooks which are having parameters of spark pools attached to them. I have added template-parameters-definition.json in main branch which consists of below code.
{
"Microsoft.Synapse/workspaces/notebooks": {
"properties": {
"bigDataPool": {
"referenceName": "=:-name"
},
"metadata": {
"a365ComputeOptions": {
"id": "=:-id",
"endpoint": "=:-endpoint"
}
}
}
},
"Microsoft.Synapse/workspaces/pipelines": {
"properties": {
"parameters":{
"*": {"*":"="}
},
"bigDataPool": {
"sparkPoolName": {
"referenceName": "=:-name"
}
}
}
}
}
But the parameters passed inside the notebook is still not getting reflected in template-parameters-definition.json ,because of which I am not able to override the parameters passed inside the notebook.
Looking forward for response,
ABD.
Azure Synapse Analytics
Azure Synapse Analytics
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Sign in to answer