Skip to content

Commit 4935fe1

Browse files
add populationPercent
1 parent e02c3a2 commit 4935fe1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/ROOT/pages/indexes/search-performance-indexes/managing-indexes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Creating an index requires link:{neo4j-docs-base-uri}/operations-manual/{page-ve
4242

4343
[NOTE]
4444
An index cannot be used while its `state` is `POPULATING`, which occurs immediately after it is created.
45-
To check the `state` of an index -- whether it is `ONLINE` (usable) or `POPULATING`(still being built) -- run the following command: `SHOW INDEXES YIELD *`.
45+
To check the `state` of an index -- whether it is `ONLINE` (usable) or `POPULATING` (still being built; the `populationPercent` column shows the progress of the index creation) -- run the following command: `SHOW INDEXES`.
4646

4747
[[create-range-index]]
4848
=== Create a range index

modules/ROOT/pages/indexes/semantic-indexes/full-text-indexes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ To query a full-text index, use either the link:{neo4j-docs-base-uri}/operations
139139

140140
[NOTE]
141141
An index cannot be used while its `state` is `POPULATING`, which occurs immediately after it is created.
142-
To check the `state` of a full-text index -- whether it is `ONLINE` (usable) or `POPULATING`(still being built) -- run the following command: `SHOW FULLTEXT INDEXES YIELD *`.
142+
To check the `state` of a full-text index -- whether it is `ONLINE` (usable) or `POPULATING` (still being built; the `populationPercent` column shows the progress of the index creation) -- run the following command: `SHOW FULLTEXT INDEXES`.
143143

144144
This query uses the `db.index.fulltext.queryNodes` to look for `nils` in the previously created full-text index `namesAndTeams`:
145145

modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ To query a node vector index, use the link:{neo4j-docs-base-uri}/operations-manu
198198

199199
[NOTE]
200200
An index cannot be used while its `state` is `POPULATING`, which occurs immediately after it is created.
201-
To check the `state` of a vector index -- whether it is `ONLINE` (usable) or `POPULATING`(still being built) -- run the following command: `SHOW VECTOR INDEXES YIELD *`.
201+
To check the `state` of a vector index -- whether it is `ONLINE` (usable) or `POPULATING` (still being built; the `populationPercent` column shows the progress of the index creation) -- run the following command: `SHOW VECTOR INDEXES`.
202202

203203
.Signature for `db.index.vector.queryNodes`
204204
[source,syntax]

0 commit comments

Comments
 (0)