Package feast.proto.core
Interface DataSourceProto.DataSource.KafkaOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.KafkaOptions,DataSourceProto.DataSource.KafkaOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.KafkaOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBootstrapServers()Comma separated list of Kafka bootstrap servers.com.google.protobuf.ByteStringgetBootstrapServersBytes()Comma separated list of Kafka bootstrap servers.DataFormatProto.StreamFormatgetMessageFormat()Defines the stream data format encoding feature/entity data in Kafka messages.DataFormatProto.StreamFormatOrBuildergetMessageFormatOrBuilder()Defines the stream data format encoding feature/entity data in Kafka messages.StringgetTopic()Kafka topic to collect feature data from.com.google.protobuf.ByteStringgetTopicBytes()Kafka topic to collect feature data from.booleanhasMessageFormat()Defines the stream data format encoding feature/entity data in Kafka messages.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBootstrapServers
String getBootstrapServers()
Comma separated list of Kafka bootstrap servers. Used for feature tables without a defined source host[:port]]
string bootstrap_servers = 1;- Returns:
- The bootstrapServers.
-
getBootstrapServersBytes
com.google.protobuf.ByteString getBootstrapServersBytes()
Comma separated list of Kafka bootstrap servers. Used for feature tables without a defined source host[:port]]
string bootstrap_servers = 1;- Returns:
- The bytes for bootstrapServers.
-
getTopic
String getTopic()
Kafka topic to collect feature data from.
string topic = 2;- Returns:
- The topic.
-
getTopicBytes
com.google.protobuf.ByteString getTopicBytes()
Kafka topic to collect feature data from.
string topic = 2;- Returns:
- The bytes for topic.
-
hasMessageFormat
boolean hasMessageFormat()
Defines the stream data format encoding feature/entity data in Kafka messages.
.feast.core.StreamFormat message_format = 3;- Returns:
- Whether the messageFormat field is set.
-
getMessageFormat
DataFormatProto.StreamFormat getMessageFormat()
Defines the stream data format encoding feature/entity data in Kafka messages.
.feast.core.StreamFormat message_format = 3;- Returns:
- The messageFormat.
-
getMessageFormatOrBuilder
DataFormatProto.StreamFormatOrBuilder getMessageFormatOrBuilder()
Defines the stream data format encoding feature/entity data in Kafka messages.
.feast.core.StreamFormat message_format = 3;
-
-