Package feast.proto.core
Interface FeatureSetProto.FeatureSetMetaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FeatureSetProto.FeatureSetMeta,FeatureSetProto.FeatureSetMeta.Builder
- Enclosing class:
- FeatureSetProto
public static interface FeatureSetProto.FeatureSetMetaOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetCreatedTimestamp()Created timestamp of this specific feature set.com.google.protobuf.TimestampOrBuildergetCreatedTimestampOrBuilder()Created timestamp of this specific feature set.FeatureSetProto.FeatureSetStatusgetStatus()Status of the feature set.intgetStatusValue()Status of the feature set.booleanhasCreatedTimestamp()Created timestamp of this specific feature set.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCreatedTimestamp
boolean hasCreatedTimestamp()
Created timestamp of this specific feature set.
.google.protobuf.Timestamp created_timestamp = 1;- Returns:
- Whether the createdTimestamp field is set.
-
getCreatedTimestamp
com.google.protobuf.Timestamp getCreatedTimestamp()
Created timestamp of this specific feature set.
.google.protobuf.Timestamp created_timestamp = 1;- Returns:
- The createdTimestamp.
-
getCreatedTimestampOrBuilder
com.google.protobuf.TimestampOrBuilder getCreatedTimestampOrBuilder()
Created timestamp of this specific feature set.
.google.protobuf.Timestamp created_timestamp = 1;
-
getStatusValue
int getStatusValue()
Status of the feature set. Used to indicate whether the feature set is ready for consumption or ingestion. Currently supports 2 states: 1) STATUS_PENDING - A feature set is in pending state if Feast has not spun up the jobs necessary to push rows for this feature set to stores subscribing to this feature set. 2) STATUS_READY - Feature set is ready for consumption or ingestion
.feast.core.FeatureSetStatus status = 2;- Returns:
- The enum numeric value on the wire for status.
-
getStatus
FeatureSetProto.FeatureSetStatus getStatus()
Status of the feature set. Used to indicate whether the feature set is ready for consumption or ingestion. Currently supports 2 states: 1) STATUS_PENDING - A feature set is in pending state if Feast has not spun up the jobs necessary to push rows for this feature set to stores subscribing to this feature set. 2) STATUS_READY - Feature set is ready for consumption or ingestion
.feast.core.FeatureSetStatus status = 2;- Returns:
- The status.
-
-