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

Scheduling hook into ExecuteStateManagerImpl #753

Conversation

andresgalindo-stripe
Copy link
Collaborator

Context

Allow us to plug a hook that mutates the list of available task executors

Checklist

  • ./gradlew build compiles code correctly
  • Added new tests where applicable
  • ./gradlew test passes all tests
  • Extended README or added javadocs where applicable

Copy link
Collaborator

@crioux-stripe crioux-stripe left a comment

Choose a reason for hiding this comment

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

Generally looks good, besides the (blocking) nit I left one more item to think about... What is the intention if the user wants multiple mutator hooks? Right now we could do a composite hook and that is probably fine.

@@ -211,7 +211,8 @@ public void setupActor() {
"",
false,
ImmutableMap.of(),
new CpuWeightedFitnessCalculator());
new CpuWeightedFitnessCalculator(),
Copy link
Collaborator

Choose a reason for hiding this comment

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

nit: I generally prefer the overloaded constructor so that the tests / clients who do not use the change do not need to change in any way to ignore new functionality. Especially true since the Netflix injector will likely break without having an appropriate Bean.

@andresgalindo-stripe andresgalindo-stripe changed the title [WIP] Scheduling hook into ExecuteStateManagerImpl Scheduling hook into ExecuteStateManagerImpl Feb 19, 2025
Copy link

github-actions bot commented Feb 19, 2025

Test Results

622 tests  ±0   612 ✅ ±0   8m 2s ⏱️ +8s
142 suites ±0    10 💤 ±0 
142 files   ±0     0 ❌ ±0 

Results for commit 80865c8. ± Comparison against base commit d2f7ff7.

♻️ This comment has been updated with latest results.

…e the configuration class doesn't seem to like default null values
@andresgalindo-stripe
Copy link
Collaborator Author

@crioux-stripe I've gone ahead and overloaded .props() to keep one that matches the signature of what was there before

w.r.t multiple hooks, yep, my thought that it was more flexible for the user if they implement a ChainedHook themselves and let them define how they want to cycle through hooks themselves (e.g. if one hook returns no instances do we just return all instances from the previous hook in stack in an attempt to schedule no matter what, or, do we really return nothing / throw an exception to stop this from being scheduled, etc)

@crioux-stripe crioux-stripe merged commit e57a596 into Netflix:master Feb 20, 2025
4 of 5 checks passed
@andresgalindo-stripe andresgalindo-stripe mentioned this pull request Feb 25, 2025
4 tasks
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.

3 participants