Otari
Otari

Reputation: 1

Opensource WAN replication in Hazelcast 3.6

Is WAN Replication still supported in 3.6 opensource version?

com.hazelcast.wan.impl.WanNoDelayReplication is no longer there and the WAN pages differ quite a bit:

http://docs.hazelcast.org/docs/3.5/manual/html/wan.html http://docs.hazelcast.org/docs/3.6/manual/html/wan.html

Upvotes: 0

Views: 703

Answers (1)

emrahkocaman
emrahkocaman

Reputation: 493

Starting with Hazelcast 3.6, out of the box WAN replication implementations are enterprise only, those are;

  • com.hazelcast.enterprise.wan.replication.WanNoDelayReplication
  • com.hazelcast.enterprise.wan.replication.WanBatchReplication

But if you'd like to use WAN replication in open source, you may create your own WAN replication implementation by implementing com.hazelcast.wan.WanReplicationEndpoint interface and register it same as before.

Also, multi-html version of documentation is not supported anymore so the link that you've provided for 3.6 is not valid. Below is the new link;

http://docs.hazelcast.org/docs/3.6/manual/html-single/index.html#wan

Upvotes: 1

Related Questions