Worker's Network is not good , but connecting has no problem .
When worker using InterProcessMutex to acquire a lock, all worker's acquire() hang in a long time.
public InterProcessMutex acquireZkLock(CuratorFramework zkClient,String zNodeLockPath)throws Exception{
InterProcessMutex mutex = new InterProcessMutex(zkClient, zNodeLockPath);
mutex.acquire();
return mutex;
}
Has anyone else encountered the same problem ?