How to Define Data Type for Titan Graph DB Vertex?
问题 I am creating a Graph Data Table using Titan and Blueprint API. I am using HBase as backend. I know how to define data types for key indexes. Example: TitanKey name = graph.makeType().name("name").dataType(String.class).functional().makePropertyKey(); Now I actually want to represent a RDBMS Table in Titan DB Graph. Is there any process through which I can implement 'Column Data Type' (as in RDBMS Table) in the Titan Graph Model ? 回答1: Unlike a relational database, Titan's schema is flexible.