I\'m trying to use composite index on DynamoDB and the index never switches from from INSTALLED to REGISTERED state.
INSTALLED
REGISTERED
Here is the code I use
Waiting for a longer time does the trick. Example:
ManagementSystem.awaitGraphIndexStatus(graph, propertyKeyIndexName) .status(SchemaStatus.ENABLED) .timeout(10, ChronoUnit.MINUTES) // set timeout to 10 min .call();