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

Fix timing issue in parallel execution #4629

Merged
merged 4 commits into from Aug 2, 2023
Merged

Conversation

nohwnd
Copy link
Member

@nohwnd nohwnd commented Jul 31, 2023

Description

Parallel workers are able to pick up work between setting HasWork and actually associating the workload, which leads to the work being unscheduled. The test run (or test discovery) then never finishes. This was observed on a run with 99 dlls, and can be reproduced locally. To me it was on parallel runs of 12 hosts.

This fix moves HasWork to be the last item to be set under the lock, so the readers that are outside of the lock cannot read it too early before the slot is completely populated.

@nohwnd
Copy link
Member Author

nohwnd commented Jul 31, 2023

/azp run

@azure-pipelines
Copy link

No commit pushedDate could be found for PR 4629 in repo microsoft/vstest

@nohwnd
Copy link
Member Author

nohwnd commented Aug 1, 2023

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@nohwnd
Copy link
Member Author

nohwnd commented Aug 1, 2023

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@nohwnd nohwnd enabled auto-merge (squash) August 2, 2023 07:33
// This must be set last, every loop below looks at this property,
// and they can do so from a different thread. So if we mark it as HasWork before actually assigning the work
// we can pick up the slot, but it has no associated work yet.
slot.HasWork = true;
Copy link
Member Author

Choose a reason for hiding this comment

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

The fix.

Copy link
Member

@Evangelink Evangelink left a comment

Choose a reason for hiding this comment

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

Linking #4630 here to explain why we approve the change as-is.

@nohwnd nohwnd merged commit 9a0c418 into microsoft:main Aug 2, 2023
7 checks passed
nohwnd added a commit to nohwnd/vstest that referenced this pull request Aug 2, 2023
@nohwnd nohwnd mentioned this pull request Aug 2, 2023
nohwnd added a commit that referenced this pull request Aug 2, 2023
Co-authored-by: Amaury Levé <amauryleve@microsoft.com>
Fix timing issue in parallel execution (#4629)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants