Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 HBase 设置了 Titan。
我删除图中的所有顶点
全部删除后显示为空。
gremlin> g.V.count() ==>0
但是如果我重新登录titan,那么图中会有一堆空顶点
gremlin> g.V.count() ==>85267
我检查一个顶点的值,它是空的 gremlin> gv(840012).map()
空顶点的原因是什么?我怎样才能彻底清洁它们?
嗨,我在 Titan 中遇到了与 cassendra DB 相同的问题。
这是由于在未提交的情况下关闭图表。
g = TitanFactory.open('../conf/titan-cassandra-es.properties'); // 删除节点 g.commit();
执行“g.commit();” 在关闭图表之前。