Package feast.proto.core
Interface SourceProto.KafkaSourceConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SourceProto.KafkaSourceConfig,SourceProto.KafkaSourceConfig.Builder
- Enclosing class:
- SourceProto
public static interface SourceProto.KafkaSourceConfigOrBuilder 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.intgetPartitions()Number of Kafka partitions to to use for managed feature stream.intgetReplicationFactor()Defines the number of copies of managed feature stream Kafka.StringgetTopic()Kafka topic to use for feature sets without user defined topicscom.google.protobuf.ByteStringgetTopicBytes()Kafka topic to use for feature sets without user defined topics-
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 sets 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 sets without a defined source host[:port]]
string bootstrap_servers = 1;- Returns:
- The bytes for bootstrapServers.
-
getTopic
String getTopic()
Kafka topic to use for feature sets without user defined topics
string topic = 2;- Returns:
- The topic.
-
getTopicBytes
com.google.protobuf.ByteString getTopicBytes()
Kafka topic to use for feature sets without user defined topics
string topic = 2;- Returns:
- The bytes for topic.
-
getPartitions
int getPartitions()
Number of Kafka partitions to to use for managed feature stream.
int32 partitions = 3;- Returns:
- The partitions.
-
getReplicationFactor
int getReplicationFactor()
Defines the number of copies of managed feature stream Kafka.
int32 replicationFactor = 4;- Returns:
- The replicationFactor.
-
-