Re: How to exit from Client JVM while using Apache Ignite as Data Grid ?

2016-04-06 Thread vijayendra bhati
message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-exit-from-Client-JVM-while-using-Apache-Ignite-as-Data-Grid-tp3919p3954.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Re: How to exit from Client JVM while using Apache Ignite as Data Grid ?

2016-04-05 Thread vkulichenko
Hi, Sounds like you didn't stop the node. Use ignite.close() or Ignition.stop() to achieve this. Let us know if it helps. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-exit-from-Client-JVM-while-using-Apache-Ignite-as-Data-Grid-tp3919p3954.html

Re: How to exit from Client JVM while using Apache Ignite as Data Grid ?

2016-04-05 Thread vijayendra bhati
ls of non daemon Threads that will prevent your application process to stop until ignite.stop(...) is called. Probably this is the case. -- Denis -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-exit-from-Client-JVM-while-using-Apache-Ignite-as-Data-Grid-

Re: How to exit from Client JVM while using Apache Ignite as Data Grid ?

2016-04-05 Thread Denis Magda
on Threads that will prevent your application process to stop until ignite.stop(...) is called. Probably this is the case. -- Denis -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-exit-from-Client-JVM-while-using-Apache-Ignite-as-Data-Grid-tp3919p3932.html

Re: How to exit from Client JVM while using Apache Ignite as Data Grid ?

2016-04-05 Thread Vladislav Pyatkov
Hi vijayendra, I think you run one client node () wihout at last one server node. In that case client node be waiting for server node until it (server node) will not by added. When you start another node in server mode (), client will continue to work. If it not help you, please provide

How to exit from Client JVM while using Apache Ignite as Data Grid ?

2016-04-04 Thread vijayendra bhati
Hi, I am trying to query over a 1 node Apache Ignite Data grid.But my client program is not getting exiting, it keeps on running. Please let me know what needs to be done.I am running the client program in client mode. Regards,Vij