-
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
Fixed IActorRef
leak inside EventStream
#5720
Changes from 3 commits
e805350
71ad9a0
96a998b
3714c18
ceec02b
dc6d12b
f517280
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// //----------------------------------------------------------------------- | ||
// // <copyright file="Bugfix5717Specs.cs" company="Akka.NET Project"> | ||
// // Copyright (C) 2009-2022 Lightbend Inc. <http://www.lightbend.com> | ||
// // Copyright (C) 2013-2022 .NET Foundation <https://github.com/akkadotnet/akka.net> | ||
// // </copyright> | ||
// //----------------------------------------------------------------------- | ||
|
||
using Akka.TestKit; | ||
using Xunit; | ||
|
||
namespace Akka.Tests.Event | ||
{ | ||
public class Bugfix5717Specs : AkkaSpec | ||
{ | ||
/// <summary> | ||
/// Reproduction for https://github.com/akkadotnet/akka.net/issues/5717 | ||
/// </summary> | ||
[Fact] | ||
public void Should_unsubscribe_from_all_topics_on_Terminate() | ||
{ | ||
var es = Sys.EventStream; | ||
var tm1 = 1; | ||
var tm2 = "FOO"; | ||
var a1 = CreateTestProbe(); | ||
var a2 = CreateTestProbe(); | ||
|
||
es.Subscribe(a1.Ref, typeof(int)); | ||
es.Subscribe(a2.Ref, typeof(int)); | ||
es.Subscribe(a2.Ref, typeof(string)); | ||
es.Publish(tm1); | ||
es.Publish(tm2); | ||
a1.ExpectMsg(tm1); | ||
a2.ExpectMsg(tm1); | ||
a2.ExpectMsg(tm2); | ||
|
||
// kill second test probe | ||
Watch(a2); | ||
Sys.Stop(a2); | ||
ExpectTerminated(a2); | ||
|
||
EventFilter.DeadLetter().Expect(0, () => | ||
{ | ||
es.Publish(tm1); | ||
es.Publish(tm2); | ||
a1.ExpectMsg(tm1); | ||
}); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,7 @@ | |
//----------------------------------------------------------------------- | ||
|
||
using Akka.Actor; | ||
using Akka.Actor.Internal; | ||
using Akka.Annotations; | ||
using Akka.Dispatch; | ||
using Akka.Util.Internal; | ||
|
||
namespace Akka.Event | ||
{ | ||
|
@@ -26,7 +23,7 @@ namespace Akka.Event | |
/// watching a few actors too much - we opt for the 2nd choice here. | ||
/// </summary> | ||
[InternalApi] | ||
class EventStreamUnsubscriber : ActorBase | ||
internal class EventStreamUnsubscriber : ActorBase | ||
{ | ||
private readonly EventStream _eventStream; | ||
private readonly bool _debug; | ||
|
@@ -45,140 +42,83 @@ public EventStreamUnsubscriber(EventStream eventStream, ActorSystem system, bool | |
_debug = debug; | ||
|
||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
/// <param name="message">TBD</param> | ||
/// <returns>TBD</returns> | ||
|
||
protected override bool Receive(object message) | ||
{ | ||
return message.Match().With<Register>(register => | ||
switch (message) | ||
{ | ||
if (_debug) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The code before was very old and still used |
||
_eventStream.Publish(new Debug(this.GetType().Name, GetType(), | ||
string.Format("watching {0} in order to unsubscribe from EventStream when it terminates", register.Actor))); | ||
Context.Watch(register.Actor); | ||
}).With<UnregisterIfNoMoreSubscribedChannels>(unregister => | ||
{ | ||
if (_debug) | ||
_eventStream.Publish(new Debug(this.GetType().Name, GetType(), | ||
string.Format("unwatching {0} since has no subscriptions", unregister.Actor))); | ||
Context.Unwatch(unregister.Actor); | ||
}).With<Terminated>(terminated => | ||
{ | ||
if (_debug) | ||
_eventStream.Publish(new Debug(this.GetType().Name, GetType(), | ||
string.Format("unsubscribe {0} from {1}, because it was terminated", terminated.Actor , _eventStream ))); | ||
_eventStream.Unsubscribe(terminated.Actor); | ||
}) | ||
.WasHandled; | ||
case Register register: | ||
{ | ||
if (_debug) | ||
_eventStream.Publish(new Debug(GetType().Name, GetType(), | ||
$"watching {register.Actor} in order to unsubscribe from EventStream when it terminates")); | ||
Context.Watch(register.Actor); | ||
break; | ||
} | ||
case UnregisterIfNoMoreSubscribedChannels unregister: | ||
{ | ||
if (_debug) | ||
_eventStream.Publish(new Debug(GetType().Name, GetType(), | ||
$"unwatching {unregister.Actor} since has no subscriptions")); | ||
Context.Unwatch(unregister.Actor); | ||
break; | ||
} | ||
case Terminated terminated: | ||
{ | ||
if (_debug) | ||
_eventStream.Publish(new Debug(GetType().Name, GetType(), | ||
$"unsubscribe {terminated.ActorRef} from {_eventStream}, because it was terminated")); | ||
_eventStream.Unsubscribe(terminated.ActorRef); | ||
break; | ||
} | ||
default: | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
protected override void PreStart() | ||
{ | ||
if (_debug) | ||
_eventStream.Publish(new Debug(this.GetType().Name, GetType(), | ||
_eventStream.Publish(new Debug(GetType().Name, GetType(), | ||
string.Format("registering unsubscriber with {0}", _eventStream))); | ||
_eventStream.InitUnsubscriber(Self, _system); | ||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// INTERNAL API | ||
/// | ||
/// Registers a new subscriber to be death-watched and automatically unsubscribed. | ||
/// </summary> | ||
internal class Register | ||
{ | ||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
/// <param name="actor">TBD</param> | ||
public Register(IActorRef actor) | ||
{ | ||
Actor = actor; | ||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
public IActorRef Actor { get; private set; } | ||
} | ||
|
||
|
||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
internal class Terminated | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Most probable cause of #5717 - we were handling our own |
||
{ | ||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
/// <param name="actor">TBD</param> | ||
public Terminated(IActorRef actor) | ||
{ | ||
Actor = actor; | ||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// The actor we're going to deathwatch and automatically unsubscribe | ||
/// </summary> | ||
public IActorRef Actor { get; private set; } | ||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// INTERNAL API | ||
/// | ||
/// Unsubscribes an actor that is no longer subscribed and does not need to be death-watched any longer. | ||
/// </summary> | ||
internal class UnregisterIfNoMoreSubscribedChannels | ||
{ | ||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
/// <param name="actor">TBD</param> | ||
public UnregisterIfNoMoreSubscribedChannels(IActorRef actor) | ||
{ | ||
Actor = actor; | ||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// The actor we're no longer going to death watch. | ||
/// </summary> | ||
public IActorRef Actor { get; private set; } | ||
} | ||
} | ||
|
||
|
||
|
||
/// <summary> | ||
/// Provides factory for Akka.Event.EventStreamUnsubscriber actors with unique names. | ||
/// This is needed if someone spins up more EventStreams using the same ActorSystem, | ||
/// each stream gets it's own unsubscriber. | ||
/// </summary> | ||
class EventStreamUnsubscribersProvider | ||
{ | ||
private readonly AtomicCounter _unsubscribersCounter = new AtomicCounter(0); | ||
private static readonly EventStreamUnsubscribersProvider _instance = new EventStreamUnsubscribersProvider(); | ||
|
||
|
||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
public static EventStreamUnsubscribersProvider Instance | ||
{ | ||
get { return _instance; } | ||
} | ||
|
||
/// <summary> | ||
/// TBD | ||
/// </summary> | ||
/// <param name="system">TBD</param> | ||
/// <param name="eventStream">TBD</param> | ||
/// <param name="debug">TBD</param> | ||
public void Start(ActorSystemImpl system, EventStream eventStream, bool debug) | ||
{ | ||
system.SystemActorOf(Props.Create<EventStreamUnsubscriber>(eventStream, system, debug).WithDispatcher(Dispatchers.InternalDispatcherId), | ||
string.Format("EventStreamUnsubscriber-{0}", _unsubscribersCounter.IncrementAndGet())); | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reproduction for #5717