Class: Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::Featurestore::OnlineServingConfig::Scaling
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/featurestore.rb
Overview
Online serving scaling configuration. If min_node_count and max_node_count are set to the same value, the cluster will be configured with the fixed number of node (no auto-scaling).
Instance Attribute Summary collapse
-
#max_node_count ⇒ ::Integer
The maximum number of nodes to scale up to.
-
#min_node_count ⇒ ::Integer
Required.
Instance Attribute Details
#max_node_count ⇒ ::Integer
Returns The maximum number of nodes to scale up to. Must be greater than min_node_count, and less than or equal to 10 times of 'min_node_count'.
99 100 101 102 |
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 99 class Scaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#min_node_count ⇒ ::Integer
Returns Required. The minimum number of nodes to scale down to. Must be greater than or equal to 1.
99 100 101 102 |
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore.rb', line 99 class Scaling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |