-
Notifications
You must be signed in to change notification settings - Fork 37
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
Use timed wait to sleep control thread #28
Use timed wait to sleep control thread #28
Conversation
👋 Welcome back earthling-amzn! A progress list of the required criteria for merging this PR into |
Webrevs
|
This looks like something that @shipilev has touched a few times before. |
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 mind this going into sandbox, but honestly, we need to fix it in the mainline. The awkwardness of control loop sleep-looping gets very tedious.
@earthling-amzn This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been no new commits pushed to the As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@shipilev) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
I shall try and do this in mainline with this: https://bugs.openjdk.java.net/browse/JDK-8264851 -- probably next week, though. |
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.
Oh wait, questions...
I'm not sure we can fix this so easily on mainline. The control thread on mainline needs to periodically evaluate the heuristics. To support the generational changes, heuristic evaluation was moved to a separate thread (so that it can initiate a young collection while the control thread is busy handling an old collection). A timed wait would still work on mainline, but an infinite wait would keep the heuristics from being evaluated. |
This lets us take the control thread's lock to notify it without tripping the deadlock detector.
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.
OK then, with one minor stylistic nit.
Good to go. |
/integrate |
/sponsor |
OpenJDK infra seems to be at maintenance. Bots would hopefully integrate as infra is online again. |
@earthling-amzn |
@shipilev @earthling-amzn Pushed as commit 84bb2c3. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Yay bots! |
Using a timed
wait
rather than a naked sleep allows the control thread to be more responsive to requests from mutators and the regulator thread to start GC cycles. The sleep time is also changed fromShenandoahControlIntervalMin
toShenandoahControlIntervalMax
to reduce unnecessary polling cycles. We could use a plainwait
, but the control thread is responsible for periodically sending allocation metrics to thepacer
.Progress
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/shenandoah pull/28/head:pull/28
$ git checkout pull/28
Update a local copy of the PR:
$ git checkout pull/28
$ git pull https://git.openjdk.java.net/shenandoah pull/28/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 28
View PR using the GUI difftool:
$ git pr show -t 28
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/shenandoah/pull/28.diff