Skip to content

Commit

Permalink
Release new docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Milvus-doc-bot authored and Milvus-doc-bot committed Oct 9, 2024
1 parent 69ea2f1 commit 6f1e205
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v2.4.x/site/en/adminGuide/rbac.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ client.grant_role(
)
```

After granting the role, verity that it has been granted:
After granting the role, verify that it has been granted:

```python
client.describe_user(
Expand Down
2 changes: 1 addition & 1 deletion v2.4.x/site/en/faq/performance_faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The following charts are results from a test running on the sift50m dataset and

#### Why do queries sometimes take longer on smaller datasets?

Query operations are conducted on segments. indexes reduce the amount of time it takes to query a segment. If a segment has not been indexed, Milvus resorts to brute-force search on the raw data—drastically increasing query time.
Query operations are conducted on segments. Indexes reduce the amount of time it takes to query a segment. If a segment has not been indexed, Milvus resorts to brute-force search on the raw data—drastically increasing query time.

Therefore, it usually takes longer to query on a small dataset (collection) because it has not built index. This is because the sizes of its segments have not reached the index-building threshold set by `rootCoord.minSegmentSizeToEnableindex`. Call `create_index()` to force Milvus to index segments that have reached the threshold but not yet been automatically indexed, significantly improving query performance.

Expand Down

0 comments on commit 6f1e205

Please sign in to comment.