-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Switch from counter to a gauge for partitions held #1485
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,9 +46,10 @@ type Consumer struct { | |
|
||
deadlockDetector deadlockDetector | ||
|
||
partitionIDToState map[int32]*consumerState | ||
partitionMapLock sync.Mutex | ||
partitionsHeld metrics.Counter | ||
partitionIDToState map[int32]*consumerState | ||
partitionMapLock sync.Mutex | ||
partitionsHeld int64 | ||
partitionsHeldGauge metrics.Gauge | ||
} | ||
|
||
type consumerState struct { | ||
|
@@ -60,13 +61,13 @@ type consumerState struct { | |
func New(params Params) (*Consumer, error) { | ||
deadlockDetector := newDeadlockDetector(params.MetricsFactory, params.Logger, params.DeadlockCheckInterval) | ||
return &Consumer{ | ||
metricsFactory: params.MetricsFactory, | ||
logger: params.Logger, | ||
internalConsumer: params.InternalConsumer, | ||
processorFactory: params.ProcessorFactory, | ||
deadlockDetector: deadlockDetector, | ||
partitionIDToState: make(map[int32]*consumerState), | ||
partitionsHeld: partitionsHeld(params.MetricsFactory), | ||
metricsFactory: params.MetricsFactory, | ||
logger: params.Logger, | ||
internalConsumer: params.InternalConsumer, | ||
processorFactory: params.ProcessorFactory, | ||
deadlockDetector: deadlockDetector, | ||
partitionIDToState: make(map[int32]*consumerState), | ||
partitionsHeldGauge: partitionsHeldGauge(params.MetricsFactory), | ||
}, nil | ||
} | ||
|
||
|
@@ -109,13 +110,19 @@ func (c *Consumer) Close() error { | |
|
||
func (c *Consumer) handleMessages(pc sc.PartitionConsumer) { | ||
c.logger.Info("Starting message handler", zap.Int32("partition", pc.Partition())) | ||
c.partitionsHeld.Inc(1) | ||
defer c.partitionsHeld.Inc(-1) | ||
c.partitionMapLock.Lock() | ||
c.partitionsHeld++ | ||
c.partitionsHeldGauge.Update(c.partitionsHeld) | ||
wg := &c.partitionIDToState[pc.Partition()].wg | ||
c.partitionMapLock.Unlock() | ||
defer wg.Done() | ||
defer c.closePartition(pc) | ||
defer func() { | ||
c.closePartition(pc) | ||
wg.Done() | ||
c.partitionMapLock.Lock() | ||
c.partitionsHeld-- | ||
c.partitionsHeldGauge.Update(c.partitionsHeld) | ||
c.partitionMapLock.Unlock() | ||
}() | ||
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. I recommend moving this after L123 (after unlock) and combining L124-125 into the same 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. Makes sense, amended. |
||
|
||
msgMetrics := c.newMsgMetrics(pc.Partition()) | ||
|
||
|
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
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.
Wouldn't this require some sort of synchronization? L92 starts
handleMessages
as a goroutineThere 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.
You're probably right, so I moved
partitionMapLock.Lock()
around to encompass this.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.
seems like
c.partitionMapLock.Lock()
should be enough