I am using akka 2.3.0 round robin pool

deployment /EventProcessorRouter router = round-robin-pool nr-of-instances 
= 65 
Topic's Look up using 
 
ActorRef transformerRouter = 
getContext().actorFor("akka://appName/user/EventProcessorRouter");
transformerRouter.tell(munibondAnalyticsEvent, transformerRouter);
 
I have one consumer actor recieveing messages from topic and pushing to the 
processor actor via Round robin router. I have set defined the round robin 
router with 65 instances.

I am getting a load of 11K and when it processes out of which 150 messages 
sent to the round robin router from the topic reciever actor but its not 
making to the processor actor and rest are processed fine. Not sure why 
these messages are not processed by routee's ever.

What could be the reason these messages could be lost? I checked for any 
actors crashing and i dont see any actor crashing as i have implemented 
postStop in my actor so if it has crashed i will see logging in my logs.

Please suggest me what could cause it.
 

-- 
>>>>>>>>>>      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 http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to