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 StringgetKafkaBootstrapServers()Comma separated list of Kafka bootstrap servers.com.google.protobuf.ByteStringgetKafkaBootstrapServersBytes()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.com.google.protobuf.DurationgetWatermarkDelayThreshold()Watermark delay threshold for stream datacom.google.protobuf.DurationOrBuildergetWatermarkDelayThresholdOrBuilder()Watermark delay threshold for stream databooleanhasMessageFormat()Defines the stream data format encoding feature/entity data in Kafka messages.booleanhasWatermarkDelayThreshold()Watermark delay threshold for stream data-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getKafkaBootstrapServers
String getKafkaBootstrapServers()
Comma separated list of Kafka bootstrap servers. Used for feature tables without a defined source host[:port]]
string kafka_bootstrap_servers = 1;- Returns:
- The kafkaBootstrapServers.
-
getKafkaBootstrapServersBytes
com.google.protobuf.ByteString getKafkaBootstrapServersBytes()
Comma separated list of Kafka bootstrap servers. Used for feature tables without a defined source host[:port]]
string kafka_bootstrap_servers = 1;- Returns:
- The bytes for kafkaBootstrapServers.
-
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;
-
hasWatermarkDelayThreshold
boolean hasWatermarkDelayThreshold()
Watermark delay threshold for stream data
.google.protobuf.Duration watermark_delay_threshold = 4;- Returns:
- Whether the watermarkDelayThreshold field is set.
-
getWatermarkDelayThreshold
com.google.protobuf.Duration getWatermarkDelayThreshold()
Watermark delay threshold for stream data
.google.protobuf.Duration watermark_delay_threshold = 4;- Returns:
- The watermarkDelayThreshold.
-
getWatermarkDelayThresholdOrBuilder
com.google.protobuf.DurationOrBuilder getWatermarkDelayThresholdOrBuilder()
Watermark delay threshold for stream data
.google.protobuf.Duration watermark_delay_threshold = 4;
-
-