Package feast.proto.core
Interface DataSourceProto.DataSource.SparkOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.SparkOptions,DataSourceProto.DataSource.SparkOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.SparkOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFileFormat()Format of files at `path` (e.g.com.google.protobuf.ByteStringgetFileFormatBytes()Format of files at `path` (e.g.StringgetPath()Path from which spark can read the table, this is an alternative to `table`com.google.protobuf.ByteStringgetPathBytes()Path from which spark can read the table, this is an alternative to `table`StringgetQuery()Spark SQl query that returns the table, this is an alternative to `table`com.google.protobuf.ByteStringgetQueryBytes()Spark SQl query that returns the table, this is an alternative to `table`StringgetTable()Table namecom.google.protobuf.ByteStringgetTableBytes()Table name-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTable
String getTable()
Table name
string table = 1;- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()
Table name
string table = 1;- Returns:
- The bytes for table.
-
getQuery
String getQuery()
Spark SQl query that returns the table, this is an alternative to `table`
string query = 2;- Returns:
- The query.
-
getQueryBytes
com.google.protobuf.ByteString getQueryBytes()
Spark SQl query that returns the table, this is an alternative to `table`
string query = 2;- Returns:
- The bytes for query.
-
getPath
String getPath()
Path from which spark can read the table, this is an alternative to `table`
string path = 3;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
Path from which spark can read the table, this is an alternative to `table`
string path = 3;- Returns:
- The bytes for path.
-
getFileFormat
String getFileFormat()
Format of files at `path` (e.g. parquet, avro, etc)
string file_format = 4;- Returns:
- The fileFormat.
-
getFileFormatBytes
com.google.protobuf.ByteString getFileFormatBytes()
Format of files at `path` (e.g. parquet, avro, etc)
string file_format = 4;- Returns:
- The bytes for fileFormat.
-
-