-
Hi all, I'm new to janusgraph. When I'm droping the database, the cassandra log Is this related to #1313? Thanks in advance!
set up docker environment:
driver code: JanusGraph graph = JanusGraphFactory.build().
set("storage.backend", "cql").
set("storage.hostname", "MY_IP").
set("storage.cql.keyspace", "janusgraph").
set("storage.cql.local-datacenter", "datacenter1").
set("cache.db-cache", "true").
set("cache.db-cache-clean-wait", "20").
set("cache.db-cache-time", "180000").
set("cache.db-cache-size", "0.25").
set("index.search.backend", "elasticsearch").
set("index.search.hostname", "MY_IP").
open();
JanusGraphFactory.drop(graph); driver error:
docker log: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
This is fixed in #2811 which will be released in 0.6.1. As a temporary fix, can you change |
Beta Was this translation helpful? Give feedback.
-
I see what goes wrong here. The demo I wrote sets up ganusgraph connection, but the Dockerfile provided here also sets up janusgraph server in the background and may interfer All I have to do is to stop the janusgraph container. |
Beta Was this translation helpful? Give feedback.
I see what goes wrong here. The demo I wrote sets up ganusgraph connection, but the Dockerfile provided here also sets up janusgraph server in the background and may interfer
drop keyspace
action in cassandra.All I have to do is to stop the janusgraph container.