Package feast.proto.core
Interface JobServiceProto.GetHistoricalFeaturesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JobServiceProto.GetHistoricalFeaturesRequest,JobServiceProto.GetHistoricalFeaturesRequest.Builder
- Enclosing class:
- JobServiceProto
public static interface JobServiceProto.GetHistoricalFeaturesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSourceProto.DataSourcegetEntitySource()Batch DataSource that can be used to obtain entity values for historical retrieval.DataSourceProto.DataSourceOrBuildergetEntitySourceOrBuilder()Batch DataSource that can be used to obtain entity values for historical retrieval.StringgetFeatureRefs(int index)List of feature references that are being retrievedcom.google.protobuf.ByteStringgetFeatureRefsBytes(int index)List of feature references that are being retrievedintgetFeatureRefsCount()List of feature references that are being retrievedList<String>getFeatureRefsList()List of feature references that are being retrievedStringgetOutputFormat()Specify format name for output, eg.com.google.protobuf.ByteStringgetOutputFormatBytes()Specify format name for output, eg.StringgetOutputLocation()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/featurescom.google.protobuf.ByteStringgetOutputLocationBytes()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/featuresStringgetProject()Optional field to specify project name override.com.google.protobuf.ByteStringgetProjectBytes()Optional field to specify project name override.booleanhasEntitySource()Batch DataSource that can be used to obtain entity values for historical retrieval.-
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.
-
-