-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strongly-typed Configurations #42
Strongly-typed Configurations #42
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Back from vacation and had a chance to look at the PR finally. In general, this goes into the right direction but I think we should model the API slightly differently.
// TODO: Topic config -> see KafkaConfig in SwiftKafka | ||
// TODO: test that values get set accordingly | ||
// TODO: remove old config tests | ||
public protocol ClientConfig: Hashable, Equatable { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this should be a protocol. We should rather use a struct here and hide the whole dictionary thing internally. Using a protocol for this would require us to either make the consumers generic or use an existential and both are not really great.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Furthermore, what I would recommend is that we create a separate ConsumerConfig
and ProducerConfig
like you did and then have an internal method on them that can convert them to librdkafka config.
Modifications: * created a protocol `ClientConfig` that defines all common configuration properties * created two interface implementations, `ConsumerConfig` and `ProducerConfig`
Modifications: * `ClientConfig` protocol with protocol extension for properties used in both consumer and producer * `ConsumerConfig` and `ProducerConfig` structs * added initializer to `KafkaConfig` that allows conversion from `ClientConfig` to `KafkaConfig`
7f09356
to
c1a14d0
Compare
…properties contained in `ProducerConfig` and `ConsumerConfig`
Modifications: * created a new `struct TopicConfig` containing strongly typed configurations options * enable initialisation of `KafkaTopicConfig` through a given `TopicConfig` * add new `TopicConfig` to new `init` of `KafkaProducer`
Modifications: * moved common typed getters for string dictionary into a Dictionary extension * removed redundant `getString` dictionary getter * added new protocol `StringDictionaryRepresentable` that all new configs conform to
Modifications: * added DocC documentation for `TopicConfig` * added DocC documentation for common client conifguration properties * added DocC documentation for producer-specific conifguration properties * added DocC documentation for consumer-specific conifguration properties * remove "enable.partition.eof" property from consumer config as it is rdkafka internal and should not be exposed in the public API * added DocC documentation to `ConfigEnums`
Hey @FranzBusch, I have implemented some changes since we last talked and would like to hear your feedback 😄 :
There are still some things I am unsure about:
I hope that I have explained my questions in enough detail. Please contact me if anything is unclear! Happy Holidays 🎅🏼 Felix |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the work. I think this looks quite good. I have some open concerns around some of the public types but let's move forward and reevaluate the public types at another point in time.
|
||
/// Client group session and failure detection timeout. The consumer sends periodic heartbeats (heartbeat.interval.ms) to indicate its liveness to the broker. If no hearts are received by the broker for a group member within the session timeout, the broker will remove the consumer from the group and trigger a rebalance. The allowed range is configured with the broker configuration properties group.min.session.timeout.ms and group.max.session.timeout.ms. Also see max.poll.interval.ms. | ||
public var sessionTimeoutMs: UInt { | ||
get { self.dictionary.getUInt("session.timeout.ms") ?? 45000 } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are all the default values here returned the ones that librdkafka uses?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes! I used librdkafka/CONFIGURATION.md for reference.
Let's put all these open questions into GH issues for now |
Done! |
@felixschlegel is this ready to go? |
@kylebrowning yep it was just waiting on me to merge it |
Cool thanks, Im going to start using this in a related APNS project :) |
Closes issues: #9, #10
Motivation
This PR introduces the new
ConsumerConfig
andProducerConfig
that enable users to configure theirKafkaConsumer
/KafkaProducer
using a strongly-typedstruct
rather than a string-based dictionary.Approach
structs
calledConsumerConfig
andProducerConfig
ConsumerConfig
andProducerConfig
share a lot of the same configuration properties, thus I introduced aprotocol ClientConfig
that uses protocol extension to mimic an abstract class that takes care of all common config propertieslibrdkafka
TODO
struct
Open Questions
OAuth
with our strongly typed configs?