Home > Net >  Azure ML Workspace is not able to upload data in for workspace linked storage account which is behin
Azure ML Workspace is not able to upload data in for workspace linked storage account which is behin

Time:01-20

I am trying to setup an Azure ML workspace with Storage Accound behind the Vnet but when trying to upload an sata from Data tab I am getting below error.

enter image description here

I have all the necessary setting as describe in the below article but still no luck

enter image description here

  • Both the ML Workspace and Storage are in same subnet
  • Assigned "Storage Blob Data Reader" permission for Worspace
  • Accessing this ML Workspace from Virtual machine created on same subnet.
  • Can anyone suggest is there anything missing ?

    CodePudding user response:

    I tried to reproduce the same in my environment and got below results:

    I have one storage account in which I enabled Networking settings as below:

    enter image description here

    When I tried to upload data from Azure Machine Learning Studio, I got same error as you like below:

    enter image description here

    To resolve the error, make sure to add your client IP address under storage account's Firewall settings like below:

    enter image description here

    Now, I tried to upload data again from Azure Machine Learning Studio and got results like below:

    enter image description here

    When I selected Next, it took me to Review tab like below:

    enter image description here

    After clicking on Create, data asset is created successfully with below details:

    enter image description here

    To confirm that, I checked the same in Portal where test.txt file uploaded to storage account successfully like below:

    enter image description here

    In your case, make sure to add your client IP address under storage account's firewall settings. If the error still persists, try with Storage Blob Data Contributor role.

    Reference:

    Connect to data storage with the studio UI - Azure Machine Learning | Microsoft Learn

    CodePudding user response:

    I have created a private endpoint for the storage account in the same subnet of the workspace and it started working.

    Still thinking about why with Service Endpoint it's not working. Is there any configurations I am missing.

    • Related