Add pending task tracking to Guest for workload monitoring#4696
Draft
skycastlelily wants to merge 1 commit intomainfrom
Draft
Add pending task tracking to Guest for workload monitoring#4696skycastlelily wants to merge 1 commit intomainfrom
skycastlelily wants to merge 1 commit intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request introduces pending task tracking on Guest objects, which is a valuable addition for workload monitoring and resource management. The implementation is thread-safe and handles task increments and decrements correctly, including in abort scenarios.
I've identified two areas for improvement in tmt/steps/execute/__init__.py to enhance code clarity and conciseness. One is simplifying a loop for finding a discover phase, and the other is removing a redundant condition check.
Comment on lines
+1305
to
+1309
| discover_phase = None | ||
| for discover in self.plan.discover.phases(classes=(DiscoverPlugin,)): | ||
| if discover.name == discover_phase_name and discover.enabled_by_when: | ||
| discover_phase = discover | ||
| break |
Contributor
There was a problem hiding this comment.
|
|
||
| # Check if this test runs on any of the current guests | ||
| for guest in guests: | ||
| if test.enabled_on_guest is None or test.enabled_on_guest(guest): |
Contributor
Implements task counters on Guest objects to track pending test executions during the execute phase. This enables: - Resource management and cleanup decisions based on guest workload - Progress monitoring across distributed test execution - Proper state handling during abort scenarios - Foundation for future load balancing enhancements
eb5d71b to
ccb14e1
Compare
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.
Implements task counters on Guest objects to track pending test executions during the execute phase. This enables:
Pull Request Checklist