Re: logging

2015-06-13 Thread Jonathon Bell
Yes, thanks, exactly what I needed. j On Jun 12, 2015, at 10:06 PM, Valentin Kulichenko valentin.kuliche...@gmail.com wrote: Jonathon, IgniteMessaging facade can be created for a cluster group (see message(ClusterGroup grp) method). So you can create a cluster group with only one

Re: logging

2015-06-12 Thread Jonathon Bell
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

logging

2015-06-12 Thread Jonathon Bell
Hi all, My application uses SLF4J and LOGBACK for logging. Is it possible for me to configure the ignite libraries to use this logging combination too? If so, how? n.b: i tried adding the line: groupIdorg.apache.ignite/groupId artifactIdignite-slf4j/artifactId

Re: logging

2015-06-12 Thread Valentin Kulichenko
Jonathon, IgniteMessaging facade can be created for a cluster group (see message(ClusterGroup grp) method). So you can create a cluster group with only one receiver node and create IgniteMessaging instance for this group. All messages sent through this instance will be sent to that node only. The

Re: logging

2015-06-12 Thread Valentin Kulichenko
wrote: Hi all, My application uses SLF4J and LOGBACK for logging. Is it possible for me to configure the ignite libraries to use this logging combination too? If so, how? n.b: i tried adding the line: groupIdorg.apache.ignite/groupId artifactIdignite-slf4j/artifactId