MLA-C01 Deployment and Orchestration of ML Workflows • Set 6
MLA-C01 Deployment and Orchestration of ML Workflows Practice Test 6 — 15 questions with explanations. Free, no signup.
An engineer runs: aws sagemaker describe-endpoint --endpoint-name my-endpoint and receives the exhibit output. The engineer wants to update the endpoint to use a new model version stored in ECR with tag ':2'. Which step is necessary to perform the update?
Refer to the exhibit.
{
"EndpointName": "my-endpoint",
"EndpointConfigName": "my-endpoint-config-v1",
"ProductionVariants": [
{
"VariantName": "v1",
"DeployedImages": [
{
"SpecifiedImage": "123456789012.dkr.ecr.us-west-2.amazonaws.com/my-model:1",
"ResolvedImage": "123456789012.dkr.ecr.us-west-2.amazonaws.com/my-model:1@sha256:abc123"
}
],
"CurrentWeight": 1.0,
"DesiredWeight": 1.0,
"CurrentInstanceCount": 2,
"DesiredInstanceCount": 2
}
],
"EndpointStatus": "InService"
}