Hi, answers inlined.
On Thu, Dec 27, 2018 at 2:26 PM pooja.ac...@gmail.com wrote:
Hi,I have few concerns on topic configuration,
- is it advisable to have multiple hazelcast instances per application??
It depends on the case. One instance should be ok in general.
- should we set configuration before creating hazelcast instance?
Better to set it before instance creation.
- Can we set some of the config later after creating hazelcast instance??
You cannot change existing config but can add new configurations dynamically.
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at https://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/733c27ca-3870-4340-bf15-cfcb13c476cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/CAEb73hEUNoVg9vgkCq7eWHfh2%2BAnvnXpzgbJEzkX25TVnnXTDQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/a7c57bbf-7423-4095-b3fc-4baccbd468e5%40googlegroups.com.
public class MyMsgListener<E> implements ReliableMessageListener<E> {long seq;@Overridepublic void onMessage(Message<E> m) {switch(m.getSource()){}}
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/493cdbaa-3106-4f0d-b6ae-fa93164402b3%40googlegroups.com.
Ringbuffer to store the actual messages. To configure the ringbuffer for a reliable topic, define a ringbuffer in the config with exactly the same name. It is very unlikely that you want to run with the default settings. When a ReliableTopic starts, it will always start from the tail+1 item from the RingBuffer. It will not chew its way through all available events but it will wait for the next item being published. To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/765700a9-3df0-4830-acb0-28b121a29dfc%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/a35949a5-9d66-4156-b465-3e4c38ab679c%40googlegroups.com.