O estado do índice nunca muda para ENABLED no Titan com o backend do Amazon DynamoDB

Estou tentando usar o índice composto no DynamoDB e o índice nunca muda deINSTALLED paraREGISTERED Estado.

Aqui está o código que eu usei para criá-lo

        graph.tx().rollback(); //Never create new indexes while a transaction is active
        TitanManagement mgmt=graph.openManagement();
        PropertyKey propertyKey=getOrCreateIfNotExist(mgmt, "propertyKeyName");
        String indexName = makePropertyKeyIndexName(propertyKey);

        if (mgmt.getGraphIndex(indexName)==null) {
            mgmt.buildIndex(indexName, Vertex.class).addKey(propertyKey).buildCompositeIndex();
            mgmt.commit();
            graph.tx().commit();
            ManagementSystem.awaitGraphIndexStatus(graph, indexName).status(SchemaStatus.REGISTERED).call(); 
        }else {
            mgmt.rollback();
        }

Uma amostra do log é:

... ...

612775 [main] INFO com.thinkaurelius.titan.graphdb.database.management.GraphIndexStatusWatcher - Algumas chaves no índice myIndex não possuem status no momento REGISTADO: type = INSTALLED 613275 [main] INFO com.thinkaurelius.titan.graphdb. database.management.GraphIndexStatusWatcher - Algumas chaves no índice typeIndex atualmente não têm status REGISTADO: type = INSTALLED 613275 [main] INFO com.thinkaurelius.titan.graphdb.database.management.GraphIndexStatusWatcher - Tempo limite excedido (PT1M) para o índice typeIndex para convergir no status REGISTRADO

questionAnswers(1)

yourAnswerToTheQuestion