Reference documentation and code samples for the Google Cloud Ai Platform V1 Client class State.
Possible states a featurestore can have.
Protobuf type google.cloud.aiplatform.v1.Featurestore.State
Namespace
Google \ Cloud \ AIPlatform \ V1 \ FeaturestoreMethods
static::name
Parameter | |
---|---|
Name | Description |
value |
mixed
|
static::value
Parameter | |
---|---|
Name | Description |
name |
mixed
|
Constants
STATE_UNSPECIFIED
Value: 0
Default value. This value is unused.
Generated from protobuf enum STATE_UNSPECIFIED = 0;
STABLE
Value: 1
State when the featurestore configuration is not being updated and the fields reflect the current configuration of the featurestore. The featurestore is usable in this state.
Generated from protobuf enum STABLE = 1;
UPDATING
Value: 2
The state of the featurestore configuration when it is being updated.
During an update, the fields reflect either the original configuration
or the updated configuration of the featurestore. For example,
online_serving_config.fixed_node_count
can take minutes to update.
While the update is in progress, the featurestore is in the UPDATING
state, and the value of fixed_node_count
can be the original value or
the updated value, depending on the progress of the operation. Until the
update completes, the actual number of nodes can still be the original
value of fixed_node_count
. The featurestore is still usable in this
state.
Generated from protobuf enum UPDATING = 2;