Interface ServingAPIProto.DatasetSource.FileSourceOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      ServingAPIProto.DataFormat getDataFormat()
      Format of the data.
      int getDataFormatValue()
      Format of the data.
      String getFileUris​(int index)
      URIs to retrieve the dataset from, e.g.
      com.google.protobuf.ByteString getFileUrisBytes​(int index)
      URIs to retrieve the dataset from, e.g.
      int getFileUrisCount()
      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.MessageLiteOrBuilder

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