Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (13.1k points)

I was trying to deploy a Machine Learning model as a web service for that, I am using Azure Machine Learning Service. Everything works fine but whenever I tried to deploy it on Azure Container Instance it fails with this error:

Creating service

Running.

FailedACI service creation operation finished, operation "Failed"

Service creation polling reached terminal state, current service state: Transitioning

Service creation polling reached terminal state, unexpected response received. Transitioning

Can anyone help me why this error shows up and how I can able to rectify it?

1 Answer

0 votes
by (26.7k points)

So basically, for the Azure Container Instance deployment fails, you can try with some less allocate resources, also this error shows up as because if a region having a heavy load then it will experience a failure.

You try with some less allocate resources, something like:

aciconfig = AciWebservice.deploy_configuration(cpu_cores=1, 

                  memory_gb=8, 

                  tags={"data": "text",  "method" : "NB"}, 

                  description='Predict something')

I hope this will help.

Want to become an Azure expert? join azure developer certification now!!

Browse Categories

...