異なるサーバーに 3 つのノードがあります。正常に動作しますが、ノードの再起動時に次のような無限サイクルに陥ることがあります。
INFO 03-04 19:51:32,851 (LoggerInstance.java:log:185) -/10.0.0.107:61000 [dev] ======= -1: CONCURRENT_MAP_PUT ========
thisAddress= Address[10.0.0.107:61000], target= Address[10.0.0.9:61000]
targetMember= null, targetConn=Connection [/10.0.0.9:39345 -> Address[10.0.0.9:61000]] live=true, client=false, type=MEMBER, targetBlock=Block [129] owner=Address[10.0.0.9:61000] migrationAddress=null
ProxyKey {name='t:campaignsClicks', key=null} Re-doing [20] times! c:__hz_Proxies : null
INFO 03-04 19:51:37,862 (LoggerInstance.java:log:185) -/10.0.0.107:61000 [dev] ======= -1: CONCURRENT_MAP_PUT ========
thisAddress= Address[10.0.0.107:61000], target= Address[10.0.0.9:61000]
targetMember= null, targetConn=Connection [/10.0.0.9:39345 -> Address[10.0.0.9:61000]] live=true, client=false, type=MEMBER, targetBlock=Block [129] owner=Address[10.0.0.9:61000] migrationAddress=null
ProxyKey {name='t:campaignsClicks', key=null} Re-doing [30] times! c:__hz_Proxies : null
INFO 03-04 19:51:42,870 (LoggerInstance.java:log:185) -/10.0.0.107:61000 [dev] ======= -1: CONCURRENT_MAP_PUT ========
thisAddress= Address[10.0.0.107:61000], target= Address[10.0.0.9:61000]
targetMember= null, targetConn=Connection [/10.0.0.9:39345 -> Address[10.0.0.9:61000]] live=true, client=false, type=MEMBER, targetBlock=Block [129] owner=Address[10.0.0.9:61000] migrationAddress=null
... and so on infinetely
再起動は役に立ちません。hazelcast.xml でネットワークのみを無効にし、3 つのノードすべてを再起動します。誰が何が悪いのか知っていますか?
構成ファイル:
<hazelcast>
<network>
<port auto-increment="true">60000</port>
<join>
<tcp-ip enabled="true">
<interface>10.0.0.107</interface>
<hostname>10.0.0.3</hostname>
<hostname>10.0.0.9</hostname>
</tcp-ip>
</join>
</network>
</hazelcast>