Hi All, I have a question about the way the publish-subscribe topic based messaging system is implemented in ignite.
I wish to send a large number of messages to *n *different tasks, each potentially running on its own node. When sending each message, i know the exact unique task that should receive it (so perhaps what i really want is a peer-to-peer model?). It occurs to me that i can achieve this effect by establishing a distinct topic for each of the *n* receiving tasks, and have the reciting task listening on its very own topic. Will this approach scale? Is it reasonably efficient? May i assume that a message M published for topic T is only transmitted across the network to those nodes that have expressed interest in topic T (which in my case would be just one node)? If not, can i achieve what i want by somehow assigning each receiving task to a separate cluster group? Many thanks, Jonathon
