Interface FeatureSetProto.FeatureSetSpecOrBuilder

    • Method Detail

      • getProject

        String getProject()
         Name of project that this feature set belongs to.
         
        string project = 7;
        Returns:
        The project.
      • getProjectBytes

        com.google.protobuf.ByteString getProjectBytes()
         Name of project that this feature set belongs to.
         
        string project = 7;
        Returns:
        The bytes for project.
      • getName

        String getName()
         Name of the feature set. Must be unique.
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Name of the feature set. Must be unique.
         
        string name = 1;
        Returns:
        The bytes for name.
      • getEntitiesList

        List<FeatureSetProto.EntitySpec> getEntitiesList()
         List of entities contained within this featureSet.
         This allows the feature to be used during joins between feature sets.
         If the featureSet is ingested into a store that supports keys, this value
         will be made a key.
         
        repeated .feast.core.EntitySpec entities = 3;
      • getEntities

        FeatureSetProto.EntitySpec getEntities​(int index)
         List of entities contained within this featureSet.
         This allows the feature to be used during joins between feature sets.
         If the featureSet is ingested into a store that supports keys, this value
         will be made a key.
         
        repeated .feast.core.EntitySpec entities = 3;
      • getEntitiesCount

        int getEntitiesCount()
         List of entities contained within this featureSet.
         This allows the feature to be used during joins between feature sets.
         If the featureSet is ingested into a store that supports keys, this value
         will be made a key.
         
        repeated .feast.core.EntitySpec entities = 3;
      • getEntitiesOrBuilderList

        List<? extends FeatureSetProto.EntitySpecOrBuilder> getEntitiesOrBuilderList()
         List of entities contained within this featureSet.
         This allows the feature to be used during joins between feature sets.
         If the featureSet is ingested into a store that supports keys, this value
         will be made a key.
         
        repeated .feast.core.EntitySpec entities = 3;
      • getEntitiesOrBuilder

        FeatureSetProto.EntitySpecOrBuilder getEntitiesOrBuilder​(int index)
         List of entities contained within this featureSet.
         This allows the feature to be used during joins between feature sets.
         If the featureSet is ingested into a store that supports keys, this value
         will be made a key.
         
        repeated .feast.core.EntitySpec entities = 3;
      • getFeaturesList

        List<FeatureSetProto.FeatureSpec> getFeaturesList()
         List of features contained within this featureSet.
         
        repeated .feast.core.FeatureSpec features = 4;
      • getFeatures

        FeatureSetProto.FeatureSpec getFeatures​(int index)
         List of features contained within this featureSet.
         
        repeated .feast.core.FeatureSpec features = 4;
      • getFeaturesCount

        int getFeaturesCount()
         List of features contained within this featureSet.
         
        repeated .feast.core.FeatureSpec features = 4;
      • getFeaturesOrBuilderList

        List<? extends FeatureSetProto.FeatureSpecOrBuilder> getFeaturesOrBuilderList()
         List of features contained within this featureSet.
         
        repeated .feast.core.FeatureSpec features = 4;
      • getFeaturesOrBuilder

        FeatureSetProto.FeatureSpecOrBuilder getFeaturesOrBuilder​(int index)
         List of features contained within this featureSet.
         
        repeated .feast.core.FeatureSpec features = 4;
      • hasMaxAge

        boolean hasMaxAge()
         Features in this feature set will only be retrieved if they are found
         after [time - max_age]. Missing or older feature values will be returned
         as nulls and indicated to end user
         
        .google.protobuf.Duration max_age = 5;
        Returns:
        Whether the maxAge field is set.
      • getMaxAge

        com.google.protobuf.Duration getMaxAge()
         Features in this feature set will only be retrieved if they are found
         after [time - max_age]. Missing or older feature values will be returned
         as nulls and indicated to end user
         
        .google.protobuf.Duration max_age = 5;
        Returns:
        The maxAge.
      • getMaxAgeOrBuilder

        com.google.protobuf.DurationOrBuilder getMaxAgeOrBuilder()
         Features in this feature set will only be retrieved if they are found
         after [time - max_age]. Missing or older feature values will be returned
         as nulls and indicated to end user
         
        .google.protobuf.Duration max_age = 5;
      • hasSource

        boolean hasSource()
         Optional. Source on which feature rows can be found.
         If not set, source will be set to the default value configured in Feast Core.
         
        .feast.core.Source source = 6;
        Returns:
        Whether the source field is set.
      • getSource

        SourceProto.Source getSource()
         Optional. Source on which feature rows can be found.
         If not set, source will be set to the default value configured in Feast Core.
         
        .feast.core.Source source = 6;
        Returns:
        The source.
      • getSourceOrBuilder

        SourceProto.SourceOrBuilder getSourceOrBuilder()
         Optional. Source on which feature rows can be found.
         If not set, source will be set to the default value configured in Feast Core.
         
        .feast.core.Source source = 6;
      • getLabelsCount

        int getLabelsCount()
         User defined metadata
         
        map<string, string> labels = 8;
      • containsLabels

        boolean containsLabels​(String key)
         User defined metadata
         
        map<string, string> labels = 8;
      • getLabelsMap

        Map<String,​String> getLabelsMap()
         User defined metadata
         
        map<string, string> labels = 8;
      • getLabelsOrDefault

        String getLabelsOrDefault​(String key,
                                  String defaultValue)
         User defined metadata
         
        map<string, string> labels = 8;
      • getLabelsOrThrow

        String getLabelsOrThrow​(String key)
         User defined metadata
         
        map<string, string> labels = 8;
      • getVersion

        int getVersion()
         Read-only self-incrementing version that increases monotonically
         when changes are made to a feature set
         
        int32 version = 9;
        Returns:
        The version.