Can you monitor the progress of a neo4j constraint -


we have neo4j database running 2.2 , wondering if has way on monitoring progress of constraint? reason ask docs constraints can take while , want know when done. havent read anywhere in docs says can , tailing console.log , messages.log files not show progress.

use :schema command in browser. list constraints , indexes. indexes marked online populated , cypher use them. indexes in populating status still created , not yet usable.

in java api can use graphdatabaseservice.schema().getindexstate(indexdefinition).


Comments