0
私は3つのノードを別々のサーバーに持っています。正常に動作しますが、ノードの再起動時に次のような無限のサイクルになることがあります。Hazelcast(CONCURRENT_MAP_PUT)を使用した起動時の問題
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>
どのHazelcastバージョンを使用していますか?ログには3つのノードがクラスタに正しく結合されていますか?これは1.9バージョンの問題のようです。 – mmdogan
これも1.8。*で発生しました。 現在はい - 私は1.9.4.8を使用しています。 OK、アップグレードしようとします。しかし、アップグレード1.8 - > 1.9は役に立たなかった。だから私はこれについて本当に楽観的ではない。 –
2.0では、接続レイヤーが大幅に変更され、多くの問題が修正されました。 – mmdogan