Re: [akka-user] Customizing failure-zones in distributed publish subscribe

2015-01-07 Thread Patrik Nordwall
On Wed, Jan 7, 2015 at 6:32 AM, Muthukumaran Kothandaraman muthu.kmk2...@gmail.com wrote: Thanks Patrik. By failure-zones, I mean to assign different dispatchers to different combinations of topic + subscribers. For example, Subscriber A and Subscriber B both handle messages from topic C

Re: [akka-user] Customizing failure-zones in distributed publish subscribe

2015-01-06 Thread Patrik Nordwall
Hi Muthu, On Mon, Jan 5, 2015 at 7:00 AM, Muthukumaran Kothandaraman muthu.kmk2...@gmail.com wrote: I have following requirements for designing a clusterwide messaging system 1. There can be many to many relationship between topics and subscribers. ie. one module (OSGi) in each cluster

Re: [akka-user] Customizing failure-zones in distributed publish subscribe

2015-01-06 Thread Muthukumaran Kothandaraman
Thanks Patrik. By failure-zones, I mean to assign different dispatchers to different combinations of topic + subscribers. For example, Subscriber A and Subscriber B both handle messages from topic C and hence there would be two subscribers - actor sub_a_topic_c and actor sub_b_topic_c (I

[akka-user] Customizing failure-zones in distributed publish subscribe

2015-01-04 Thread Muthukumaran Kothandaraman
I have following requirements for designing a clusterwide messaging system 1. There can be many to many relationship between topics and subscribers. ie. one module (OSGi) in each cluster node can subscribe to more than one topic and each topic can be subscribed to by more than one module. So,