SHOW INDEX STATUS
SHOW INDEX STATUS returns the name of the created tag or edge type index and its status of job.
The status of rebuilding indexes includes:
QUEUE: The job is in a queue.RUNNING: The job is running.FINISHED: The job is finished.FAILED: The job has failed.STOPPED: The job has stopped.INVALID: The job is invalid.
note
For details on how to create an index, see CREATE INDEX.
Syntax
SHOW {TAG | EDGE} INDEX STATUS;
Example
nebula> SHOW TAG INDEX STATUS;
+----------------------+--------------+
| Name | Index Status |
+----------------------+--------------+
| "player_index_0" | "FINISHED" |
| "player_index_1" | "FINISHED" |
+----------------------+--------------+