Re: Cannot exchange messages between two nodes.

2019-03-06 Thread Ropugg
Thanks all. I resolve it, since the second node didn't remoteListen by an inner logic. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: Cannot exchange messages between two nodes.

2019-03-06 Thread Ilya Kasnacheev
Hello! Can you make a small reproducer project, share it with us? Regards, -- Ilya Kasnacheev ср, 6 мар. 2019 г. в 16:08, Ropugg : > The two nodes have the same subscriber. > The only difference is the order of starting node. > The first started node, we call it as Node1, the second started n

Re: Cannot exchange messages between two nodes.

2019-03-06 Thread Ropugg
The two nodes have the same subscriber. The only difference is the order of starting node. The first started node, we call it as Node1, the second started node is Node2. The Node1 send a message, the Node2 will handle it as expected in remoteListen(@Nullable Object topic, IgniteBiPredicate p) But t

Re: Cannot exchange messages between two nodes.

2019-03-05 Thread ashishb888
I am sorry, I am not able to get your question fully. But you should exchange messages between nodes via topics. It may possible, you sent a message and no subscriber was there to receive the message. Can you provide more details on this question? Thanks -- Sent from: http://apache-ignite-user

Cannot exchange messages between two nodes.

2019-03-05 Thread Ropugg
Hello experts, I met an issue on topic based messaging between two Ignite nodes. I start two nodes one by one. The first started node send a message, the second node can receive the message and handle it in the predicate as expected.