SHOW INDEX STATUS¶
The SHOW INDEX STATUS statement shows the status of jobs that rebuild native indexes, which helps check whether a native index is successfully rebuilt or not.
Syntax¶
ngql
SHOW {TAG | EDGE} INDEX STATUS;
Examples¶
```ngql nebula> SHOW TAG INDEX STATUS; +------------------------------------+--------------+ | Name | Index Status | +------------------------------------+--------------+ | "date1_index" | "FINISHED" | | "basketballplayer_all_tag_indexes" | "FINISHED" | | "any_shape_geo_index" | "FINISHED" | +------------------------------------+--------------+
nebula> SHOW EDGE INDEX STATUS; +----------------+--------------+ | Name | Index Status | +----------------+--------------+ | "follow_index" | "FINISHED" | +----------------+--------------+ ```