1

I created a model with automl, obviously I used the best model and I created a batch endpoint. With Azure Data factory I'm calling the batch endpoint and I don't know why but when the job starts it fails immediately with this error:

Unable to get image details : Image mcr.microsoft.com/mcr.microsoft.com/azureml/curated/azureml-automl:141 for environment batch-inference-ncd-env does not exist in registry..

issue

issue

It could run, or at least it has to start.

1 Answers1

1

I have reproduced the issue based on the scenario. enter image description here

It seems like the image URL is incorrect: mcr.microsoft.com/mcr.microsoft.com/azureml/curated/azureml-automl:141. There is a duplicate mcr.microsoft.com in the URL. enter image description here

To resolve this issue, you should update the image URL in your batch endpoint configuration to the correct one. The correct image URL should look like this:

mcr.microsoft.com/azureml/curated/azureml-automl:141. enter image description here

update the endpoint with new deployment configuration and the endpoint should work fine. enter image description here

RishabhM
  • 525
  • 1
  • 5
  • 1
    Where do I find the configuration for batch endpoint? It's everything autogenerated. – alessandro rapiti Jul 01 '23 at 09:54
  • Same here - have the exact same issue and would love to know how to get around the issue for a deployment to an endpoint via the Azure UI. – hamish Jul 11 '23 at 09:22
  • I raised a support ticket with Microsoft and, after working with them during this week, they have now confirmed it is a bug and they are working on a fix as a priority (no ETA yet). – hamish Jul 13 '23 at 07:21