-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
v2Feature request/discussion for pubsub V2Feature request/discussion for pubsub V2
Description
Currently go-pubsub doesn't allow passing list of topics for single kafka consumer.
type MessageSourceConfig struct {
ConsumerGroup string
Topic string
Brokers []string
Offset int64
MetadataRefreshFrequency time.Duration
Version *sarama.KafkaVersion
}
It would be nice if this would be
type MessageSourceConfig struct {
ConsumerGroup string
Topic []string
Brokers []string
Offset int64
MetadataRefreshFrequency time.Duration
Version *sarama.KafkaVersion
}
Metadata
Metadata
Assignees
Labels
v2Feature request/discussion for pubsub V2Feature request/discussion for pubsub V2