Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create an index on a vertex property that already exists in Titan (Cassandra)?

Tags:

gremlin

titan

I am using Titan Server (Cassandra) v 0.3.1. I'd like to create an index on a vertex key/property that I have already started to use. However, in their documentation, Titan explains that:

To index vertices by key, the respective key index must be created before the key is first used in a vertex property.

If I try to create an index on a field that already exists, I see an error as expected:

gremlin> g.createKeyIndex("my_key",Vertex.class)
Cannot add an index to an already existing property key: my_key

However, even if I try to clear out the graph by removing all vertices & edges, I see the same error:

gremlin> g.E.remove()
==>null
gremlin> g.V.remove()
==>null
gremlin> g.createKeyIndex("my_key",Vertex.class)
Cannot add an index to an already existing property key: my_key

So it seems that my_key persists in the underlying data store even after all of the graph elements are removed. This is consistent with the docs (even though elements have been deleted the property has already been 'first used'), but seemed worth a shot.

My next step is going to be to re-create a new Cassandra data store altogether, but I'm wondering if there is a better option.

What is the easiest way to create an index on a field that has already been used in Titan?

like image 456
bcm360 Avatar asked Jun 15 '13 15:06

bcm360


1 Answers

Point Titan to a new Cassandra data store and create the index before inserting any elements with that property.

gremlin> g.createKeyIndex("my_key",Vertex.class)
==>null
like image 107
bcm360 Avatar answered Oct 05 '22 04:10

bcm360