I have two actor systems that communicate via akka remoting.
When I take a look into the JVM heap I am seeing (too) many instances of akka.dispatch.Envelope
containing SelectChildName
messages from akka.remote.RemoteActorRefProvider$RemoteDeadLetterActorRef
.
The retained heap of these messages is pretty large and causes memory problems.
What is the purpose of these SelectChildName
messages? Is there a way to avoid them?
FYI This seems to relate with Disassociation errors that occur between the two actor systems.
Thanks, Michail