gridgain / gridgain-old

267 stars 85 forks source link

Grid Gain 6.x with JMS discovery #43

Closed ktadaka closed 10 years ago

ktadaka commented 10 years ago

Hello,

I have used Gridgain 6.0 succesfully with nodes getting detected using the tcp discovery SPI. But now want to know if I can configure the nodes to be detected over any JMS implementation ( like ActiveMQ or IBMMQ Brokers ). I couldnt figure out how to configure it with the existing discovery and connection spi. 

I want to try using grid gain on EC2 and since we have no multicast enabled wanted to know if discovery using JMS is possible and how ?

dsetrakyan commented 10 years ago

GridGain only comes with TCP/IP-based discovery and communication SPIs out of the box. You are free to implement your own discovery SPI based on JMS. Can you explain what advantage it gives on top of the TCP/IP discovery provided?

ktadaka commented 10 years ago

Thanks, does TCP/IP-based discovery work even without multicast enabled on the servers ?

yzhdanov commented 10 years ago

Yes, it works. Multicast is used only by GridTcpDiscoveryMulticastIpFinder

ktadaka commented 10 years ago

Thanks