Package feast.proto.serving
Interface ServingAPIProto.DatasetSource.FileSourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServingAPIProto.DatasetSource.FileSource,ServingAPIProto.DatasetSource.FileSource.Builder
- Enclosing class:
- ServingAPIProto.DatasetSource
public static interface ServingAPIProto.DatasetSource.FileSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServingAPIProto.DataFormatgetDataFormat()Format of the data.intgetDataFormatValue()Format of the data.StringgetFileUris(int index)URIs to retrieve the dataset from, e.g.com.google.protobuf.ByteStringgetFileUrisBytes(int index)URIs to retrieve the dataset from, e.g.intgetFileUrisCount()URIs to retrieve the dataset from, e.g.List<String>getFileUrisList()URIs to retrieve the dataset from, e.g.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFileUrisList
List<String> getFileUrisList()
URIs to retrieve the dataset from, e.g. gs://bucket/directory/object.csv. Wildcards are supported. This data must be compatible to be uploaded to the serving store, and also be accessible by this serving instance.
repeated string file_uris = 1;- Returns:
- A list containing the fileUris.
-
getFileUrisCount
int getFileUrisCount()
URIs to retrieve the dataset from, e.g. gs://bucket/directory/object.csv. Wildcards are supported. This data must be compatible to be uploaded to the serving store, and also be accessible by this serving instance.
repeated string file_uris = 1;- Returns:
- The count of fileUris.
-
getFileUris
String getFileUris(int index)
URIs to retrieve the dataset from, e.g. gs://bucket/directory/object.csv. Wildcards are supported. This data must be compatible to be uploaded to the serving store, and also be accessible by this serving instance.
repeated string file_uris = 1;- Parameters:
index- The index of the element to return.- Returns:
- The fileUris at the given index.
-
getFileUrisBytes
com.google.protobuf.ByteString getFileUrisBytes(int index)
URIs to retrieve the dataset from, e.g. gs://bucket/directory/object.csv. Wildcards are supported. This data must be compatible to be uploaded to the serving store, and also be accessible by this serving instance.
repeated string file_uris = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the fileUris at the given index.
-
getDataFormatValue
int getDataFormatValue()
Format of the data. Currently only avro is supported.
.feast.serving.DataFormat data_format = 2;- Returns:
- The enum numeric value on the wire for dataFormat.
-
getDataFormat
ServingAPIProto.DataFormat getDataFormat()
Format of the data. Currently only avro is supported.
.feast.serving.DataFormat data_format = 2;- Returns:
- The dataFormat.
-
-