DP-100 · Question #141
You deploy a model as an Azure Machine Learning real-time web service using the following code. The deployment fails. You need to troubleshoot the deployment failure by determining the actions that we
The correct answer is A. service.get_logs(). You can print out detailed Docker engine log messages from the service object. You can view the log for ACI, AKS, and Local deployments. The following example demonstrates how to print the # if you already have the service object handy print(service.get_logs()) # if you only know
Question
Options
- Aservice.get_logs()
- Bservice.state
- Cservice.serialize()
- Dservice.update_deployment_state()
How the community answered
(19 responses)- A89% (17)
- B5% (1)
- D5% (1)
Explanation
You can print out detailed Docker engine log messages from the service object. You can view the log for ACI, AKS, and Local deployments. The following example demonstrates how to print the # if you already have the service object handy print(service.get_logs()) # if you only know the name of the service (note there might be multiple services with the same name but different version number) print(ws.webservices['mysvc'].get_logs()) https://docs.microsoft.com/en-us/azure/machine-learning/how-to-troubleshoot-deployment
Topics
Community Discussion
No community discussion yet for this question.