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

Redesign actor service #103

Merged
merged 4 commits into from
Feb 4, 2025
Merged

Conversation

Marenz
Copy link
Contributor

@Marenz Marenz commented Jan 27, 2025

  • Re-create actors on dispatch updates
  • Rename DispatchManagingService to DispatchActorsService
  • Update release notes

@Marenz Marenz requested a review from a team as a code owner January 27, 2025 17:54
@github-actions github-actions bot added part:docs Affects the documentation part:tests Affects the unit, integration and performance (benchmarks) tests part:dispatcher Affects the high-level dispatcher interface labels Jan 27, 2025
@Marenz
Copy link
Contributor Author

Marenz commented Jan 27, 2025

based on #98

@Marenz Marenz force-pushed the init-dispatch branch 2 times, most recently from 926cdb4 to 8350f20 Compare January 27, 2025 18:04
@Marenz Marenz requested a review from llucax January 28, 2025 09:58
@llucax
Copy link
Contributor

llucax commented Jan 29, 2025

Oh, damn, I did the review in #104 :-/

Can you maybe have a look at that and reply/continue the discussion here (by providing a link to the message you are replying to in the other PR so we don't lose context)?

@Marenz
Copy link
Contributor Author

Marenz commented Feb 4, 2025

review? :)

@Marenz
Copy link
Contributor Author

Marenz commented Feb 4, 2025

Oh, damn, I did the review in #104 :-/

No you didn't. You didn't review a single commit from this PR in #104

@llucax
Copy link
Contributor

llucax commented Feb 4, 2025

Mmm, I did a review of the resulting diff, so if there are no comments affecting this PR, I guess it is OK, but well, I will do a review in this PR then to double check.

@Marenz
Copy link
Contributor Author

Marenz commented Feb 4, 2025

Correction: None of your comments relates to any commit here

llucax
llucax previously approved these changes Feb 4, 2025
Copy link
Contributor

@llucax llucax left a comment

Choose a reason for hiding this comment

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

In the commit "Rename DispatchManagingService to DispatchActorsService" it should be DispatchManagingActor, right?

I would also call it something like ActorDispatcher, we usually don't add the suffix Service to stuff inheriting from BackgroundService, but I'm also fine with the current name too.

Other comments are also minor and mostly stylistic, so approving.

return MyActor.new_with_dispatch(initial_dispatch, dispatch_receiver)

managing_actor = DispatchManagingActor(
actor_factory=actor_factory,
Copy link
Contributor

Choose a reason for hiding this comment

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

In this particular case you can just use:

Suggested change
actor_factory=actor_factory,
actor_factory=MyActor.new_with_dispatch,



@dataclass(frozen=True, kw_only=True)
class DispatchUpdate:
Copy link
Contributor

Choose a reason for hiding this comment

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

As I said in the other PR, I would probably call this DispatchInfo (or maybe DispatchDetails?), as it will also represent the initial dispatch information, not just an "update". initial_dispatch: DispatchUpdate sounds a bit weird to me. new_with_dispatch(initial_details: DispatchDetails, ...) or new_with_dispatch(initial_info: DispatchInfo, ...) sounds better to me.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

So, DispatchDetail is kind of the opposite as it is an compressed / extracted dispatch.
DispatchInfo .. seems alright, I kind of don't like it, but I can't find any argument against it 😆

Comment on lines 165 to 171
def new_receiver(self) -> Receiver[DispatchUpdate]:
"""Create a new receiver for dispatch updates.

Returns:
A new receiver for dispatch updates.
"""
return self._updates_channel.new_receiver()
Copy link
Contributor

Choose a reason for hiding this comment

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

Do you really need to expose this? I wouldn't add a public method for this if it is basically only used internally.

llucax and others added 4 commits February 4, 2025 12:31
This commit modifies the `DispatchManagingActor` to re-create the actor
when a new dispatch is received and the actor should start running
instead of just start/stop the actor. To create the actor a factory
function is used, which passes the initial dispatch information to the
actor, so it can be properly initialized instead of having the
initialization in 2 steps, the creation and the receiving of the dispatch
update.

Signed-off-by: Mathias L. Baumann <[email protected]>
Signed-off-by: Mathias L. Baumann <[email protected]>
Signed-off-by: Mathias L. Baumann <[email protected]>
@Marenz
Copy link
Contributor Author

Marenz commented Feb 4, 2025

Addressed all comments, merging...

@Marenz Marenz merged commit d990e0a into frequenz-floss:v0.x.x Feb 4, 2025
14 checks passed
@Marenz Marenz deleted the init-dispatch branch February 4, 2025 11:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
part:dispatcher Affects the high-level dispatcher interface part:docs Affects the documentation part:tests Affects the unit, integration and performance (benchmarks) tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants