-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Can't start up Akka.Cluster.AutoDowning when using custom dispatcher #5397
Comments
It's not the task inlining feature. |
It does currently only work because both the internal dispatcher and remote dispatcher are not shared. |
This is a great goal. We absolutely need to be able to do this. |
I tried to make a multi-phase startup process, |
Why is that necessary?
…Sent from my iPhone
On Nov 24, 2021, at 12:52 PM, Andreas Dirnberger ***@***.***> wrote:
I tried to make a multi-phase startup process,
what is missing is a native support for IServiceProvider and IServiceCollection
already in AkkaSystem (Akka.dll) and not a separate extension.
then the startup and hosting would be much better to be implemented.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
If the AkkaSystem would require an instance to an main differences it would bring (hope for the better):
Downside would be new external references to: |
@Aaronontheweb If to include external references would be no valid option, The AkkaSystemImpl itself can then use it with a basic implementation A new project (i saw it somewhere) The main effect would be that all AkkaExtensions would be known pre AkkaSystem startup This current feature of lazy loading extensions after AkkaSystem-startup |
Related to the above description is this PR #5152 |
i tried now the nigthly build 1.4.29-betaX and it did fix this issue. |
Version Information
akka 1.4.28
akka, cluster
Describe the bug
After update to akka 1.4.28 from 1.4.22 cluster startup fails
This is again related to the misuse of loading extensions with the Lazy-blocking feature.
Related to #5185
I begun already to rework the whole Akka.Extensions loading system view month ago and will try to finish it.
Beside to support task-inlining, the goal would be to support akka-system startup lock-free on a single thread.
The text was updated successfully, but these errors were encountered: