I want to set up my own id to vertex like the way mentioned below.
BaseConfiguration configuration = new BaseConfiguration();
configuration.setProperty("storage.backend", "hbase");
configuration.setProperty("storage.hostname", "slave05");
configuration.setProperty("storage.port", "2181");
configuration.setProperty("storage.tablename", "REC_GRAPH1");
TitanGraph graph = TitanFactory.open(configuration);
Vertex vertex = graph.addVertex(200);
graph.commit();
But I'm not able to.. I guess I'm missing some configuration setup.
Please help me..
Thanks, Vivek