我无法使用berkeleyJE后端从Titan数据库中删除索引。
索引的状态永远不会从INSTALLED更改为DISABLED。
我尝试过使用Java程序和gremlin命令。
请参阅我在下面使用的gremlin命令,以及最后一个命令的响应中的否定结果。
知道出了什么问题吗?
谢谢, 马修
\,,,/
(o o)
-----oOOo-(3)-oOOo-----
gremlin> graph = TitanFactory.open('../conf/titan-berkeleyje.properties')
==>standardtitangraph[berkeleyje:/TCB/BalanceReporter/db]
gremlin> mgmt = graph.openManagement()
==>com.thinkaurelius.titan.graphdb.database.management.ManagementSystem@2b289ac9
gremlin> property = mgmt.getPropertyKey('account.reference')
==>account.reference
gremlin> index = mgmt.getGraphIndex('account.reference')
==>account.reference
gremlin> indexStatus = index.getIndexStatus(property)
==>INSTALLED
gremlin> mgmt.updateIndex(index, SchemaAction.DISABLE_INDEX)
==>com.thinkaurelius.titan.graphdb.database.management.ManagementSystem$EmptyIndexJobFuture@7bc44ce8
gremlin> mgmt.commit()
==>null
gremlin> if (graph.getOpenTransactions()) graph.tx().rollback()
==>null
gremlin> mgmt.awaitGraphIndexStatus(graph, 'account.reference').status(SchemaStatus.DISABLED).call()
==>GraphIndexStatusReport[success=false, indexName='account.reference', targetStatus=DISABLED, notConverged={account.reference=INSTALLED}, converged={}, elapsed=PT1M0.155S]