vertex_ids table missing in cassandra under the janusgraph keyspace?

北战南征 提交于 2019-12-25 09:43:12

问题


Titan graph when used with cassandra creates a table "vertex_ids" under the "titan" keyspace. But when working with janus , I can't seem to find the "vertex_ids" table under the 'janusgrpah' keyspace. Also I read the documentation where they describe how the values are stored but it doesn't tell under which tables.


回答1:


JanusGraph started from TitanDB 1.0.0. Both are using these below cassandra tables :

  • edgestore : Store Vertex, Property and Edges as Adjacency List
  • graphindex : Builtin indexes for vertex and edge properties
  • titan_ids (TitanDB) janusgraph_ids (JanusGraph) : Store ID Block
  • txlog : Store Transaction Log
  • systemlog : Store System Log
  • system_properties : Store System Properties
  • edgestore_lock_ : Used to lock edgestore table
  • graphindex_lock_ : Used to lock graphindex table
  • system_properties_lock_ : Used to lock system_properties table


来源:https://stackoverflow.com/questions/44413366/vertex-ids-table-missing-in-cassandra-under-the-janusgraph-keyspace

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!