Class: Aws::SageMaker::Types::RollingUpdatePolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::RollingUpdatePolicy
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Specifies a rolling deployment strategy for updating a SageMaker endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_batch_size ⇒ Types::CapacitySize
Batch size for each rolling step to provision capacity and turn on traffic on the new endpoint fleet, and terminate capacity on the old endpoint fleet.
-
#maximum_execution_timeout_in_seconds ⇒ Integer
The time limit for the total deployment.
-
#rollback_maximum_batch_size ⇒ Types::CapacitySize
Batch size for rollback to the old endpoint fleet.
-
#wait_interval_in_seconds ⇒ Integer
The length of the baking period, during which SageMaker monitors alarms for each batch on the new fleet.
Instance Attribute Details
#maximum_batch_size ⇒ Types::CapacitySize
Batch size for each rolling step to provision capacity and turn on traffic on the new endpoint fleet, and terminate capacity on the old endpoint fleet. Value must be between 5% to 50% of the variant's total instance count.
42442 42443 42444 42445 42446 42447 42448 42449 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42442 class RollingUpdatePolicy < Struct.new( :maximum_batch_size, :wait_interval_in_seconds, :maximum_execution_timeout_in_seconds, :rollback_maximum_batch_size) SENSITIVE = [] include Aws::Structure end |
#maximum_execution_timeout_in_seconds ⇒ Integer
The time limit for the total deployment. Exceeding this limit causes a timeout.
42442 42443 42444 42445 42446 42447 42448 42449 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42442 class RollingUpdatePolicy < Struct.new( :maximum_batch_size, :wait_interval_in_seconds, :maximum_execution_timeout_in_seconds, :rollback_maximum_batch_size) SENSITIVE = [] include Aws::Structure end |
#rollback_maximum_batch_size ⇒ Types::CapacitySize
Batch size for rollback to the old endpoint fleet. Each rolling step to provision capacity and turn on traffic on the old endpoint fleet, and terminate capacity on the new endpoint fleet. If this field is absent, the default value will be set to 100% of total capacity which means to bring up the whole capacity of the old fleet at once during rollback.
42442 42443 42444 42445 42446 42447 42448 42449 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42442 class RollingUpdatePolicy < Struct.new( :maximum_batch_size, :wait_interval_in_seconds, :maximum_execution_timeout_in_seconds, :rollback_maximum_batch_size) SENSITIVE = [] include Aws::Structure end |
#wait_interval_in_seconds ⇒ Integer
The length of the baking period, during which SageMaker monitors alarms for each batch on the new fleet.
42442 42443 42444 42445 42446 42447 42448 42449 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 42442 class RollingUpdatePolicy < Struct.new( :maximum_batch_size, :wait_interval_in_seconds, :maximum_execution_timeout_in_seconds, :rollback_maximum_batch_size) SENSITIVE = [] include Aws::Structure end |