Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::SageMaker::Types::ThroughputConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Used to set feature group throughput configuration. There are two modes: ON_DEMAND and PROVISIONED. With on-demand mode, you are charged for data reads and writes that your application performs on your feature group. You do not need to specify read and write throughput because Feature Store accommodates your workloads as they ramp up and down. You can switch a feature group to on-demand only once in a 24 hour period. With provisioned throughput mode, you specify the read and write capacity per second that you expect your application to require, and you are billed based on those limits. Exceeding provisioned throughput will result in your requests being throttled.

Note: PROVISIONED throughput mode is supported only for feature groups that are offline-only, or use the Standard tier online store.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#provisioned_read_capacity_unitsInteger

For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.

This field is not applicable for on-demand feature groups.

Returns:

  • (Integer)

44779
44780
44781
44782
44783
44784
44785
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44779

class ThroughputConfig < Struct.new(
  :throughput_mode,
  :provisioned_read_capacity_units,
  :provisioned_write_capacity_units)
  SENSITIVE = []
  include Aws::Structure
end

#provisioned_write_capacity_unitsInteger

For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.

This field is not applicable for on-demand feature groups.

Returns:

  • (Integer)

44779
44780
44781
44782
44783
44784
44785
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44779

class ThroughputConfig < Struct.new(
  :throughput_mode,
  :provisioned_read_capacity_units,
  :provisioned_write_capacity_units)
  SENSITIVE = []
  include Aws::Structure
end

#throughput_modeString

The mode used for your feature group throughput: ON_DEMAND or PROVISIONED.

Returns:

  • (String)

44779
44780
44781
44782
44783
44784
44785
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 44779

class ThroughputConfig < Struct.new(
  :throughput_mode,
  :provisioned_read_capacity_units,
  :provisioned_write_capacity_units)
  SENSITIVE = []
  include Aws::Structure
end