Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.42 KB

workspaces-created-by-sdk.md

File metadata and controls

32 lines (23 loc) · 1.42 KB
title description author ms.author ms.topic ms.service ms.subservice ms.date
Troubleshoot: Workspaces created by SDK can't launch Synapse Studio
Steps to resolve workspaces created by SDK unable to launch Synapse Studio
WilliamDAssafMSFT
wiassaf
troubleshooting
synapse-analytics
troubleshooting
11/24/2020

Troubleshoot Azure Synapse Analytics workspaces created using SDK

This article provides troubleshooting steps for launching Synapse Studio from a Synapse workspace that was created with a software development kit (SDK).

Prerequisites

  • Synapse workspace created using SDK

Workaround

To launch Synapse Studio from your SDK created workspace, complete the following steps:

  1. Create workspace by running az synapse workspace create.
  2. Extract managed identity ID by running $identity=$(az synapse workspace show --name {workspace name} --resource-group {resource group name} --query "identity.principalId").
  3. Grant Storage Blob Data Contributor role to the managed identity storage account by running az role assignment create --role "Storage Blob Data Contributor" --assignee-object-id {identity } --scope {storage account resource id}.
  4. Add firewall rule by running az synapse firewall-rule create --name allowAll --start-ip-address 0.0.0.0 --end-ip-address 255.255.255.255.

Next steps