-
Notifications
You must be signed in to change notification settings - Fork 8
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
Benchmarking Cache and WorkerPool implementations #7
Closed
Conversation
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
thrawn01
force-pushed
the
thrawn/lock-free-perf
branch
from
May 9, 2024 02:22
d791304
to
7372a29
Compare
The result of this work has been rolled into #15 |
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.
Purpose
Trying to diagnose some performance issues we notice in production during high request volume. The theory is that we are running into mutex contention. As a result we wrote
WorkerPool
to partition the internal cache to reduce contention. However, we never benchmarked contention. This PR is intended to add benchmarking and compare different implementations ofWorkerPool
.Implementation
WorkerMutex
which is just an LRU cache with a mutex around itWorkerNoCache
which is likeWorkerMutex
but the cache doesn't actually do anything. It's intended to be a base line to compare the other implementations with.WorkerOtter
which uses an high performance golang cache called https://maypok86.github.io/otter/AccessStructure
tests to figure out how to graph the results.lockfree
to implement a lock free version of the cache based on some papers I found. I haven't finished it as I got distracted by strange benchmark results. 😄I created a golang application to graph the results of the benchmark.
https://github.com/gubernator-io/gubernator-graphs
See
benchmark_plot.html
in the graphs repo for the latest results.Status
I think I need to run these benchmarks on a machine with more than 10 Cores (My Laptop). I'll work on doing that this
weekend or next weeksometime in the future.