Azure Synapse
Azure Synapse coverage and related capabilities
Only Azure Synapse SQL dedicated Pool is supported.
This integration covers all the catalog and monitoring features (including all monitors types).
The automated lineage is not supported.
You can integrate with Synapse by following these steps:
- Create an Azure Entra Enterprise Application and a client secret
- Create an SQL user in Synapse with the correct permissions
- Create a Synapse Datasource in Sifflet
1- Create an Azure Entra Enterprise Application and a client secret
Create an Azure Entra Enterprise Application
- Go to the Azure Portal
- Go to Entra ID
- Go to Enterprise Applications
- Click on âNew Applicationâ
- Click on âCreate your own applicationâ
- Select âIntegrate any other application you don't find in the gallery (Non-gallery)â and choose a name for the application. You should see this:

- Click on Create
- Save the Enterprise Application Name and ID for later
Create a Client Secret for the Enterprise Application
- Go to the Azure Portal
- Go to Entra ID
- Go to App registrations
- Click on âAll applicationsâ
- Click on the application that youâve just created. You should see this:

- Click on âCertificates & Secretsâ
- Click on âNew client secretâ
- Click on âAddâ
- Save the Secret Value for later
2- Create a SQL user in Synapse with the right permissions
Do the following steps:
- Open Synapse Studio and run the following query in the SQL Dedicated Pool that you want to connect to Sifflet:
CREATE USER [my-enterprise-app-name] FROM EXTERNAL PROVIDER;
- Run the following query to give the âdb_datareaderâ role to the user:
EXEC sp_addrolemember 'db_datareader', 'my-enterprise-app-name';
3- Create a Synapse data source in Sifflet
To Create a Synapse data source in Sifflet, you will need:
- The Enterprise Application ID
- The Enterprise Application Client Secret Value
Create the Secret
To add the JSON key file to Sifflet secrets, please follow the below steps:
- In "Integration" --> submenu "Secrets", create a new secret
- In the "Secret" area, copy-paste the same content present in the JSON key file
{"user":"<my-enterprise-app-id>", "password":"my-client-secret"}
Add the datasource
You can refer to this page on adding a data source in Sifflet for more detailed information.
- In Integration --> click on "+ New"
- Fill out the necessary information collected above
- The host is built like this:
<name-of-your-synapse-workspace>.sql.azuresynapse.net
(e.g. synapse-sifflet.sql.azuresynapse.net)
- The host is built like this:
Updated 5 months ago