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?