更新异步端点 - Amazon SageMaker

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

更新异步端点

使用更新异步终端节点UpdateEndpointAPI。更新终端节点时, SageMaker首先要配置并切换到您指定的新终端节点配置,然后才会删除在之前的终端节点配置中配置的资源。在端点仍处于活动状态时,或者如果端点上正在执行 UpdateEndpointCreateEndpoint 操作时,请不要删除 EndpointConfig

# The name of the endpoint. The name must be unique within an AWS Region in your AWS account. endpoint_name='<endpoint-name>' # The name of the endpoint configuration associated with this endpoint. endpoint_config_name='<endpoint-config-name>' sagemaker_client.update_endpoint( EndpointConfigName=endpoint_config_name, EndpointName=endpoint_name )

Amazon SageMaker 收到请求后,会将终端节点状态设置为 “正在更新”。更新异步端点后,它将状态设置为InService。要检查终端节点的状态,请使用DescribeEndpointAPI。有关更新终端节点时可以指定的参数的完整列表,请参阅UpdateEndpointAPI。