Chad
unread,Feb 9, 2012, 3:18:54 PM2/9/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Hazelcast
I'm seeing a problem in Hazelcast 1.9.4.6 with the HazelcastClient.
Here is the scenario:
1. Cluster up with only 1 node.
2. Client connects and puts a value to a distributed map.
3. Cluster node goes down--there is no longer a cluster.
4. HazelcastClient automatically enters connection retry.
5. Cluster node comes back up (same host:port from before) and creates
a new cluster.
6. HazelcastClient reconnects.
7. The client attempts to put a value into the same distributed map.
I don't know if it matters, but this put is happening within the
client's LifecycleListener.stateChanged() when the LifecycleEvent is
CLIENT_CONNECTION_OPENED.
This results in the following logs, over and over. I can reproduce
this every time, and it seems to never come out of this failure loop.
Feb 09, 2012 12:30:20 PM com.hazelcast.client.ProxyHelper
INFO: There is no response for Call [3] operation=CONCURRENT_MAP_PUT
in 5 seconds.
Feb 09, 2012 12:30:25 PM com.hazelcast.client.ProxyHelper
INFO: There is no response for Call [3] operation=CONCURRENT_MAP_PUT
in 10 seconds.
.
.
.
Feb 09, 2012 1:35:36 PM com.hazelcast.client.ProxyHelper
INFO: There is no response for Call [3] operation=CONCURRENT_MAP_PUT
in 3920 seconds.
Feb 09, 2012 1:35:41 PM com.hazelcast.client.ProxyHelper
INFO: There is no response for Call [3] operation=CONCURRENT_MAP_PUT
in 3925 seconds.