Skip to content

SHOW INDEX STATUS

The SHOW INDEX STATUS statement shows the status of jobs that rebuild native indexes. You can find out whether a native index is successfully rebuilt or not.

Syntax

SHOW {TAG | EDGE} INDEX STATUS

Example

nebula> SHOW TAG INDEX STATUS;
+----------------+--------------+
| Name           | Index Status |
+----------------+--------------+
| "like_index_0" | "FINISHED"   |
+----------------+--------------+
| "like1"        | "FINISHED"   |
+----------------+--------------+
Got 2 rows (time spent 1456/2122 us)

Last update: January 22, 2021
Back to top