Date
1 - 2 of 2
Janus Inmemory in JVM
R <outina...@...>
I was wondering if anybody had used the inmemory option in JVM? When I try to shutdown the JVM, the JanusGraph class does not call close() function but calls its shutdownhook. Any idea, why close is not being called? Regards, R |
|
Jason Plurad <plu...@...>
The best practice would be for your program to invoke close() on the JanusGraph instance before shutting down the JVM. The close() method calls on closeInternal() and then removes the shutdown hook. The shutdown hook is used because the JVM could terminate unexpectedly on its own or forcibly by the user, and the hook gives JanusGraph an opportunity to clean up. The shutdown hook calls on closeInternal() directly. Why not call close() instead? I imagine the call to removeHook() might throw/log an exception if the Runtime is already shutting down. On Wednesday, January 10, 2018 at 2:37:28 PM UTC-5, R wrote:
|
|