Using ConfiguredGraphFactory.drop failed when writingLogSetting #3105
Unanswered
liu-chao-simon
asked this question in
Q&A
Replies: 1 comment
-
Any news? I'm facing the same issue right now on version 1.1.0 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using dynamic graphs features of Janusgraph 0.6.2, i can create graph successfully. But from the janusgraph server side, it always show exception log when using ConfiguredGraphFactory.drop to drop a graph.
I'm using CQL(a single node Cassandra) as storage backend, and here is the server configurations
gremlin-server.yaml
janusgraph-cql.properties
I can create graph successfully using scripts
But, exception always happen on server side when drop graph by
ConfiguredGraphFactory.drop("graph1")
Please note that ERROR log:
1358411 [pool-33-thread-1] ERROR org.janusgraph.diskstorage.log.kcvs.KCVSLog - Reader thread pool for KCVSLog systemlog did not shut down in time - could not clean up or set read markers
I have traced this error into method
KCVSLog.close()
, here are the key linesI found that
readExecutor.shutdownNow()
is trying to terminate itself, this throws an InterruptionException which will cause thewriteSetting
failure.Seems this is a inevitable failure during dropping graph, or am i using the wrong configurations?
Hoping your answers~
Beta Was this translation helpful? Give feedback.
All reactions