diopek wrote > Is there any way to emulate JMS queue like, point-to-point messaging and > load balancing with Ignite? > in JMS queue if processing node/bean is busy, message gets picked up by > another available processing node/bean subscribed to same queue. How this > can be implemented with Ignite.
Hi, This can be solved with job stealing feature of Ignite. To enable it you should configure JobStealingFailoverSpi [1] and JobStealingCollisionSpi [2] (note that they should always work in conjunction with each other). Please refer to configuration examples in the JavaDoc and let us know if you have any follow up questions. [1] https://ignite.apache.org/releases/1.2.0/javadoc/org/apache/ignite/spi/failover/jobstealing/JobStealingFailoverSpi.html [2] https://ignite.apache.org/releases/1.2.0/javadoc/org/apache/ignite/spi/collision/jobstealing/JobStealingCollisionSpi.html -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Point-to-point-messaging-with-Ignite-tp1191p1200.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
