I have an application with 3 different shard regions the maintain various 
State Machine actors based on events from a data stream. Some of the events 
received by the system require a specific actor type to verify the validity 
of the event or based on state send events to actors of a different type in 
another shard region. Currently I'm using the actor that's acting as the 
message pump to bridge the shard regions by having the actor send the 
generate messages to 'sender' and then have that actor do the send to the 
appropriate shard region proxy with the receiving actors. 

Is there a cleaner way to do this. It seems like overkill to pass the shard 
region proxy into the Props for each Region actor. Routing back up through 
the message pump actor seems like a bottleneck in waiting as the system 
scales larger. Would a router or pub/sub work to allow a more direct 
message path?

Regards,

Richard

-- 
>>>>>>>>>>      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.

Reply via email to