Yann BLAZART wrote > In hazelcast we can persist Queues in Database, this help me for example > when consumer are down to no have OOM exception. But I don't see this > possibility in Ignite docs ?
Hazelcast queues are not distributed. They can only be stored on one Hazelcast node and, therefore, can only utilize memory of that node only. In Ignite, queues can be *colocated* or *distributed*. In /distributed/ mode, queue elements will be spread across all the participating nodes, hence, running out of memory is much less likely. This also means that you can always add more nodes to increase the total memory available to your queue. D. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Stupide-question-about-Queue-tp2557p2662.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
