You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
panda0120
changed the title
After execute ConfiguredGraphFactory.drop(graphName),janusgraph log print TableNotFoundExcepiton
After execute ConfiguredGraphFactory.drop(graphName),janusgraph log print TableNotFoundException
Dec 29, 2024
Version: 1.0.0
Storage Backend: hbase
Mixed Index Backend:
Link to discussed bug: When I dropping Dynamic Graph will be hang up, what can I do to dropped it #4440
Expected Behavior: no error log after drop graph
Current Behavior:
Steps to Reproduce:
public void dropGraph(String graphName) {
Map<String, Object> params = new HashMap<>();
params.put("graphName", graphName);
this.getClient()
.submit("m = " + graphName + ".openManagement();"
+ "ids = m.getOpenInstances();"
+ "for(String id : ids){if(!id.contains("(")){m.forceCloseInstance(id)}};"
+ "m.commit();"
+ "ConfiguredGraphFactory.drop(graphName);"
+ "ConfiguredGraphFactory.create(graphName);"
+ "ConfiguredGraphFactory.drop(graphName);", params);
}
The text was updated successfully, but these errors were encountered: