Skip to content
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

Closed

Conversation

earthling-amzn
Copy link
Contributor

@earthling-amzn earthling-amzn commented Apr 6, 2021

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 from ShenandoahControlIntervalMin to ShenandoahControlIntervalMax to reduce unnecessary polling cycles. We could use a plain wait, but the control thread is responsible for periodically sending allocation metrics to the pacer.


Progress

  • Change must not contain extraneous whitespace
  • Change must be properly reviewed

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

Sorry, something went wrong.

Verified

This commit was signed with the committer’s verified signature. The key has expired.
brainrake Márton Boros
@bridgekeeper
Copy link

bridgekeeper bot commented Apr 6, 2021

👋 Welcome back earthling-amzn! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk openjdk bot added the rfr Pull request is ready for review label Apr 6, 2021
@mlbridge
Copy link

mlbridge bot commented Apr 6, 2021

Webrevs

@rkennke
Copy link
Collaborator

rkennke commented Apr 7, 2021

This looks like something that @shipilev has touched a few times before.

@rkennke rkennke requested a review from shipilev April 7, 2021 16:19
Copy link
Member

@shipilev shipilev left a 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.

@openjdk
Copy link

openjdk bot commented Apr 7, 2021

@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:

Use timed wait to sleep control thread

Reviewed-by: shade

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 master branch. If another commit should be pushed before you perform the /integrate command, your PR will be automatically rebased. If you prefer to avoid any potential automatic rebasing, please check the documentation for the /integrate command for further details.

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 /integrate in a new comment. (Afterwards, your sponsor types /sponsor in a new comment to perform the integration).

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Apr 7, 2021
@shipilev
Copy link
Member

shipilev commented Apr 7, 2021

I shall try and do this in mainline with this: https://bugs.openjdk.java.net/browse/JDK-8264851 -- probably next week, though.

Copy link
Member

@shipilev shipilev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh wait, questions...

@openjdk openjdk bot removed the ready Pull request is ready to be integrated label Apr 7, 2021
@earthling-amzn
Copy link
Contributor Author

earthling-amzn commented Apr 7, 2021

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.
Copy link
Member

@shipilev shipilev left a 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.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Apr 8, 2021
@shipilev
Copy link
Member

shipilev commented Apr 8, 2021

Good to go.

@earthling-amzn
Copy link
Contributor Author

/integrate

@shipilev
Copy link
Member

shipilev commented Apr 8, 2021

/sponsor

@shipilev
Copy link
Member

shipilev commented Apr 8, 2021

OpenJDK infra seems to be at maintenance. Bots would hopefully integrate as infra is online again.

@openjdk openjdk bot added the sponsor Pull request is ready to be sponsored label Apr 8, 2021
@openjdk
Copy link

openjdk bot commented Apr 8, 2021

@earthling-amzn
Your change (at version 16d3926) is now ready to be sponsored by a Committer.

@openjdk openjdk bot closed this Apr 8, 2021
@openjdk openjdk bot added integrated Pull request has been integrated and removed sponsor Pull request is ready to be sponsored ready Pull request is ready to be integrated rfr Pull request is ready for review labels Apr 8, 2021
@openjdk
Copy link

openjdk bot commented Apr 8, 2021

@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.

@earthling-amzn
Copy link
Contributor Author

OpenJDK infra seems to be at maintenance. Bots would hopefully integrate as infra is online again.

Yay bots!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

None yet

3 participants