How do you programmatically configure hazelcast for the multicast discovery mechanism?
Details:
The documentation only supplies an example for TCP/IP
The problem appearently is that the cluster starts (and stops) and doesn't wait till enough members are in the cluster. You can set the hazelcast.initial.min.cluster.size property, to prevent this from happening.
You Can set 'hazelcast.initial.min.cluster.size' programmatically using:
Config config = new Config();
config.setProperty("hazelcast.initial.min.cluster.size","3");