question

manan2347 avatar image
0 Votes"
manan2347 asked ChaitanyaKondaveeti-9227 commented

Volume mount failed with: DataAccessError(PermissionDenied) Azure-ML

I have created AzureML experiment where i am ingesting a dataset with azure SQL Server as source. below is the code.

 from azureml.core import Experiment, ScriptRunConfig, Environment

 input_data = ws.datasets.get('azure_sql_data')

 experiment_folder = 'experiment'
 env = Environment.from_conda_specification("env", "environment.yml")

 script_config = ScriptRunConfig(source_directory=experiment_folder,
                                 script='tranformer.py',
                                 arguments = ['--input-data', input_data.as_named_input('input_data')],
                                 environment=env)

When i run this experiment i am getting following error. Dataset initialization failed: DataAccessError(PermissionDenied)

Am i missing something here?

I can access the azure SQL server data in while running it in aml notebook but when i run experiment i am getting above error.

azure-machine-learning
· 3
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hello @manan2347

May I know you are working on Azure Machine Learning Notebook or Machine Learning SDK? Thanks.

Regards
,Yutong

0 Votes 0 ·

I am using Azure machine learning sdk in azure machine learning studio.

0 Votes 0 ·

Hello @manan2347

I'm also facing the same issue while creating the Azure ML pipeline with dataset from Azure sql database and dataset is 1 GB. If your issue resolved please help me to solve this. Thanks

0 Votes 0 ·

0 Answers