Hi Sebastian,
On Mon, Feb 1, 2016 at 8:15 PM, Sebastian Jastrzebski <[email protected]> wrote: > @Endre > > Memory Analyzer is complaining about akka.actor.RepointableActorRef which > is definitely hugging some/all memory. > > One instance of *"akka.actor.RepointableActorRef"* loaded > by*"sbt.classpath.ClasspathUtilities$$anon$1 > @ 0xd0e39628"* occupies *964,662,304 (97.87%)* bytes. The memory is > accumulated in one instance of*"scala.collection.immutable.HashMap[]"* loaded > by *"java.net.URLClassLoader @ 0xd07e4ae0"*. > I don't think this means much since my hunch is that it is simply the root ActorRef, which of course recursively owns all the child actors, which in turn own all the state of the system. Number of instances is probably more helpful than recursively retained memory to debug this case. Anyway, tomorrow I will look at this myself. -Endre > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: > http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
