[Resource Pool] Shorten critical section for register/unregister#4140
Merged
sougou merged 1 commit intovitessio:masterfrom Aug 19, 2018
Merged
[Resource Pool] Shorten critical section for register/unregister#4140sougou merged 1 commit intovitessio:masterfrom
sougou merged 1 commit intovitessio:masterfrom
Conversation
Author
62fb589 to
724ff4f
Compare
e93624c to
192f8e1
Compare
Doing object allocation and fmt.Sprintf under a lock is unecessary and expensive. Refactor Register/Unregister to reduce blocking. Benchmark shows A change. Probably inconsequential, but can't hurt. Signed-off-by: Daniel Tahara <tahara@dropbox.com>
192f8e1 to
279d18c
Compare
Author
|
Sort of hard to compare apples to apples with a running proc, but... Before: After: |
sougou
approved these changes
Aug 19, 2018
Contributor
sougou
left a comment
There was a problem hiding this comment.
Doing some math: this change essentially increases the throughput of BenchmarkRegisterUnregisterParallel from about 400k/s -> 555k/s.
For this contention to become material, your request QPS needs to be at this magnitude. If it is indeed the case, we should look at using sync.Map instead.
However, this change itself is harmless. So, I'll merge it in,
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

Doing object allocation and fmt.Sprintf under a lock is unecessary and expensive.
Refactor Register/Unregister to reduce blocking.
Benchmark shows A change. Probably inconsequential, but can't hurt.
Signed-off-by: Daniel Tahara tahara@dropbox.com