Interface FeatureSetProto.FeatureSetMetaOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.Timestamp getCreatedTimestamp()
      Created timestamp of this specific feature set.
      com.google.protobuf.TimestampOrBuilder getCreatedTimestampOrBuilder()
      Created timestamp of this specific feature set.
      FeatureSetProto.FeatureSetStatus getStatus()
      Status of the feature set.
      int getStatusValue()
      Status of the feature set.
      boolean hasCreatedTimestamp()
      Created timestamp of this specific feature set.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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.