-
Notifications
You must be signed in to change notification settings - Fork 152
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
kafkamdm: make kafka version configurable #446
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,8 @@ type KafkaMdm struct { | |
schemas persister.WhisperSchemas | ||
blocking bool | ||
dispatch func(chan []byte, []byte, metrics.Gauge, metrics.Counter) | ||
|
||
orgId int // organisation to publish data under | ||
kafkaVersion sarama.KafkaVersion | ||
orgId int // organisation to publish data under | ||
|
||
bufSize int // amount of messages we can buffer up. each message is about 100B. so 1e7 is about 1GB. | ||
flushMaxNum int | ||
|
@@ -52,7 +52,7 @@ type KafkaMdm struct { | |
|
||
// NewKafkaMdm creates a special route that writes to a grafana.net datastore | ||
// We will automatically run the route and the destination | ||
func NewKafkaMdm(key string, matcher matcher.Matcher, topic, codec, schemasFile, partitionBy string, brokers []string, bufSize, orgId, flushMaxNum, flushMaxWait, timeout int, blocking bool, tlsEnabled, tlsSkipVerify bool, tlsClientCert, tlsClientKey string, saslEnabled bool, saslUsername, saslPassword string) (Route, error) { | ||
func NewKafkaMdm(key string, matcher matcher.Matcher, topic, codec, schemasFile, partitionBy, kafkaVersion string, brokers []string, bufSize, orgId, flushMaxNum, flushMaxWait, timeout int, blocking bool, tlsEnabled, tlsSkipVerify bool, tlsClientCert, tlsClientKey string, saslEnabled bool, saslUsername, saslPassword string) (Route, error) { | ||
schemas, err := getSchemas(schemasFile) | ||
if err != nil { | ||
return nil, err | ||
|
@@ -69,10 +69,9 @@ func NewKafkaMdm(key string, matcher matcher.Matcher, topic, codec, schemasFile, | |
blocking: blocking, | ||
orgId: orgId, | ||
|
||
bufSize: bufSize, | ||
flushMaxNum: flushMaxNum, | ||
flushMaxWait: time.Duration(flushMaxWait) * time.Millisecond, | ||
|
||
bufSize: bufSize, | ||
flushMaxNum: flushMaxNum, | ||
flushMaxWait: time.Duration(flushMaxWait) * time.Millisecond, | ||
numErrFlush: stats.Counter("dest=" + cleanAddr + ".unit=Err.type=flush"), | ||
numOut: stats.Counter("dest=" + cleanAddr + ".unit=Metric.direction=out"), | ||
durationTickFlush: stats.Timer("dest=" + cleanAddr + ".what=durationFlush.type=ticker"), | ||
|
@@ -96,11 +95,19 @@ func NewKafkaMdm(key string, matcher matcher.Matcher, topic, codec, schemasFile, | |
log.Fatalf("kafkaMdm %q: failed to initialize partitioner. %s", r.key, err) | ||
} | ||
|
||
kfkVersion, err := sarama.ParseKafkaVersion(kafkaVersion) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. defaulting to an empty string and showing an error if the user doesn't specify a version, seems messy. |
||
if err != nil { | ||
log.Warnf("kafkaMdm %q: failed to parse kafka version fallback to default version. %s", r.key, err) | ||
//ParseKafkaVersion() will return an error and sarama.DefaultVersion | ||
//this means that we have the same behavior that we had before this was configurable. | ||
} | ||
r.kafkaVersion = kfkVersion | ||
|
||
// We are looking for strong consistency semantics. | ||
// Because we don't change the flush settings, sarama will try to produce messages | ||
// as fast as possible to keep latency low. | ||
config := sarama.NewConfig() | ||
|
||
config.Version = r.kafkaVersion | ||
if tlsEnabled { | ||
tlsConfig, err := tls.NewConfig(tlsClientCert, tlsClientKey) | ||
if err != nil { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
go.mod pins sarama to v1.23.0
That version's ParseKafkaVersion function returns V0_8_2_0 if no version could be parsed