vpasynkova wrote > The client (even though it does join the ignite cluster) doesn't query the > cache directly. It sends http requests to the nodes, which in turn query > the cache using query API. We are using Ignite verison 1.1.0.
If the client joins the cluster, I don't see any reason to use something else to interact with server nodes. You should call IgniteCache.query() method on the client instead of doing HTTP requests. This will give you better performance and automatic failover handling. Also note that we just released 1.4. It's more stable than 1.1 and has several additional features. I would recommend to upgrade. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Exception-during-node-initialization-tp1518p1521.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
