标签: amazon-dynamodb gremlin tinkerpop janusgraph
我创建了一个对janusgraph具有唯一约束的复合索引。 之后,我已经加载了数百万条记录,但是由于某些技术问题,我必须删除索引的唯一约束。 有可能吗?
byCodeIndex = mgmt.buildIndex(PropertyConfig.INDEX_CODE_VERTEX_CODE, Vertex.class).addKey(propertyKeyCode).unique().buildCompositeIndex();
我不想创建新索引,只想通过删除其唯一约束来更新索引。