Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo and add missing info #2259

Merged
merged 3 commits into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/en/getstarted/prerequisite-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Before you install Milvus, check your hardware and software to see if they meet

### Additional disk requirements

Disk performance is critical to etcd. It is highly recommended that you use local NVMe SSDs. Slower disk reponse may cause frequent cluster elections that will eventually degrade the etcd service.
Disk performance is critical to etcd. It is highly recommended that you use local NVMe SSDs. Slower disk response may cause frequent cluster elections that will eventually degrade the etcd service.

To test if your disk is qualified, use [fio](https://github.com/axboe/fio).

Expand Down
2 changes: 1 addition & 1 deletion site/en/reference/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ A collection schema is the logical definition of a collection. Usually you need
<tr>
<td>enable_dynamic_field</td>
<td>Whether to enable dynamic schema or not</td>
<td>Data type: Boolean (<code>true</code> or <code>false</code>).<br/>Optional, defaults to <code>False</code><br/>For details on dynamic schema, refer to <a herf="dynamic_schema.md">Dynamic Schema</a> and the user guides for managing collections.</td>
<td>Data type: Boolean (<code>true</code> or <code>false</code>).<br/>Optional, defaults to <code>False</code>.<br/>For details on dynamic schema, refer to <a herf="dynamic_schema.md">Dynamic Schema</a> and the user guides for managing collections.</td>
</tr>
</tbody>
</table>
Expand Down
5 changes: 5 additions & 0 deletions site/en/userGuide/create_collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,11 @@ Output:
<td>Description of the collection to create.</td>
<td>N/A</td>
</tr>
<tr>
<td>enable_dynamic_field</td>
<td>Whether to enable dynamic schema or not</td>
<td>Data type: Boolean (<code>true</code> or <code>false</code>).<br/>Optional, defaults to <code>False</code>.<br/>For details on dynamic schema, refer to <a herf="dynamic_schema.md">Dynamic Schema</a> and the user guides for managing collections.</td>
</tr>
<tr>
<td><code>collection_name</code></td>
<td>Name of the collection to create.</td>
Expand Down
2 changes: 1 addition & 1 deletion site/en/userGuide/drop_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ summary: Learn how to drop an index in Milvus.

# Drop an Index

This topic describes how to drop an index in Milvus.
This topic describes how to drop an index in Milvus. Before dropping an index, make sure to release it first.

<div class="alert caution">
Dropping an index irreversibly removes all corresponding index files.
Expand Down
2 changes: 1 addition & 1 deletion site/en/userGuide/load_partition.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ summary: Learn how to load a partition into memory for search or query in Milvus

This topic describes how to load a partition to memory. Loading partitions instead of the whole collection to memory can significantly reduce the memory usage. All search and query operations within Milvus are executed in memory.

Milvus 2.1 allows users to load a partition as multiple replicas to utilize the CPU and memory resources of extra query nodes. This feature boost the overall QPS and throughput with extra hardware. It is supported on PyMilvus in current release.
Milvus 2.1 or later allows users to load a partition as multiple replicas to utilize the CPU and memory resources of extra query nodes. This feature boost the overall QPS and throughput with extra hardware. It is supported on PyMilvus in current release.

<div class="alert warning">
<ul>
Expand Down
Loading