Interface JobServiceProto.GetHistoricalFeaturesRequestOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      DataSourceProto.DataSource getEntitySource()
      Batch DataSource that can be used to obtain entity values for historical retrieval.
      DataSourceProto.DataSourceOrBuilder getEntitySourceOrBuilder()
      Batch DataSource that can be used to obtain entity values for historical retrieval.
      String getFeatureRefs​(int index)
      List of feature references that are being retrieved
      com.google.protobuf.ByteString getFeatureRefsBytes​(int index)
      List of feature references that are being retrieved
      int getFeatureRefsCount()
      List of feature references that are being retrieved
      List<String> getFeatureRefsList()
      List of feature references that are being retrieved
      String getOutputFormat()
      Specify format name for output, eg.
      com.google.protobuf.ByteString getOutputFormatBytes()
      Specify format name for output, eg.
      String getOutputLocation()
      Specifies the path in a bucket to write the exported feature data files Export to AWS S3 - s3://path/to/features Export to GCP GCS - gs://path/to/features
      com.google.protobuf.ByteString getOutputLocationBytes()
      Specifies the path in a bucket to write the exported feature data files Export to AWS S3 - s3://path/to/features Export to GCP GCS - gs://path/to/features
      String getProject()
      Optional field to specify project name override.
      com.google.protobuf.ByteString getProjectBytes()
      Optional field to specify project name override.
      boolean hasEntitySource()
      Batch DataSource that can be used to obtain entity values for historical retrieval.
      • 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

      • getFeatureRefsList

        List<String> getFeatureRefsList()
         List of feature references that are being retrieved
         
        repeated string feature_refs = 1;
        Returns:
        A list containing the featureRefs.
      • getFeatureRefsCount

        int getFeatureRefsCount()
         List of feature references that are being retrieved
         
        repeated string feature_refs = 1;
        Returns:
        The count of featureRefs.
      • getFeatureRefs

        String getFeatureRefs​(int index)
         List of feature references that are being retrieved
         
        repeated string feature_refs = 1;
        Parameters:
        index - The index of the element to return.
        Returns:
        The featureRefs at the given index.
      • getFeatureRefsBytes

        com.google.protobuf.ByteString getFeatureRefsBytes​(int index)
         List of feature references that are being retrieved
         
        repeated string feature_refs = 1;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the featureRefs at the given index.
      • hasEntitySource

        boolean hasEntitySource()
         Batch DataSource that can be used to obtain entity values for historical retrieval.
         For each entity value, a feature value will be retrieved for that value/timestamp
         Only 'BATCH_*' source types are supported.
         Currently only BATCH_FILE source type is supported.
         
        .feast.core.DataSource entity_source = 2;
        Returns:
        Whether the entitySource field is set.
      • getEntitySource

        DataSourceProto.DataSource getEntitySource()
         Batch DataSource that can be used to obtain entity values for historical retrieval.
         For each entity value, a feature value will be retrieved for that value/timestamp
         Only 'BATCH_*' source types are supported.
         Currently only BATCH_FILE source type is supported.
         
        .feast.core.DataSource entity_source = 2;
        Returns:
        The entitySource.
      • getEntitySourceOrBuilder

        DataSourceProto.DataSourceOrBuilder getEntitySourceOrBuilder()
         Batch DataSource that can be used to obtain entity values for historical retrieval.
         For each entity value, a feature value will be retrieved for that value/timestamp
         Only 'BATCH_*' source types are supported.
         Currently only BATCH_FILE source type is supported.
         
        .feast.core.DataSource entity_source = 2;
      • getProject

        String getProject()
         Optional field to specify project name override. If specified, uses the
         given project for retrieval. Overrides the projects specified in
         Feature References if both are specified.
         
        string project = 3;
        Returns:
        The project.
      • getProjectBytes

        com.google.protobuf.ByteString getProjectBytes()
         Optional field to specify project name override. If specified, uses the
         given project for retrieval. Overrides the projects specified in
         Feature References if both are specified.
         
        string project = 3;
        Returns:
        The bytes for project.
      • getOutputLocation

        String getOutputLocation()
         Specifies the path in a bucket to write the exported feature data files
         Export to AWS S3 - s3://path/to/features
         Export to GCP GCS -  gs://path/to/features
         
        string output_location = 4;
        Returns:
        The outputLocation.
      • getOutputLocationBytes

        com.google.protobuf.ByteString getOutputLocationBytes()
         Specifies the path in a bucket to write the exported feature data files
         Export to AWS S3 - s3://path/to/features
         Export to GCP GCS -  gs://path/to/features
         
        string output_location = 4;
        Returns:
        The bytes for outputLocation.
      • getOutputFormat

        String getOutputFormat()
         Specify format name for output, eg. parquet
         
        string output_format = 5;
        Returns:
        The outputFormat.
      • getOutputFormatBytes

        com.google.protobuf.ByteString getOutputFormatBytes()
         Specify format name for output, eg. parquet
         
        string output_format = 5;
        Returns:
        The bytes for outputFormat.