Async messaging

2016-11-05 Thread Daniel Stieglitz
Hi folks: We are trying to get messaging working asynchronously. Take a look at the code below: IgniteMessaging rmtMsg = grid.message().withAsync(); def future = rmtMsg.send(destination, message); log.debug("got future ${future}"); That code runs synchronously and the debug says "got future

Killing jobs on cluster: safe? allowed?

2016-10-20 Thread Daniel Stieglitz
Hi group: Are compute jobs submitted to ignite subject to the same restrictions as Thread with respect to killing running processes? For example, killing threads via API, (e.g., .stop()) are not allowed in Java, you have to code special conditionals into the thread to stop it cleanly, but does