Need help on template-parameters-definition.json to override the parameters in notebook present in synapse pipeline

ABDUL NAYEEM 20 Reputation points
2023-04-17T05:32:14.2433333+00:00
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.
{count} votes

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.