Titan 图与 cassandra 一起使用时会在“titan”键空间下创建一个表“vertex_ids”。但是在使用 janus 时,我似乎无法在“janusgrpah”键空间下找到“vertex_ids”表。我还阅读了文档,其中描述了值的存储方式,但没有说明在哪些表下。
问问题
374 次
1 回答
3
JanusGraph 从 TitanDB 1.0.0 开始。两者都在使用下面的 cassandra 表:
- edgestore : 将顶点、属性和边存储为邻接列表
- graphindex :顶点和边属性的内置索引
- titan_ids (TitanDB) janusgraph_ids (JanusGraph) : 存储 ID 块
- txlog : 存储事务日志
- systemlog : 存储系统日志
- system_properties :存储系统属性
- edgestore_lock_ :用于锁定 edgestore 表
- graphindex_lock_ :用于锁定graphindex表
- system_properties_lock_ :用于锁定 system_properties 表
于 2017-06-07T13:44:50.543 回答