Skip to content

Commit

Permalink
Merge pull request #2748 from liyun95/v2.4.x
Browse files Browse the repository at this point in the history
update docs based on chatbot insights
  • Loading branch information
liyun95 authored Aug 6, 2024
2 parents eb43b97 + 2807d9b commit e9fea6d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions site/en/faq/product_faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ Milvus supports Binary, Float32, Float16, and BFloat16 vector types.
- Float32 vectors: Default storage with a precision of about 7 decimal digits. Even Float64 values are stored with Float32 precision, leading to potential precision loss upon retrieval.
- Float16 and BFloat16 vectors: Offer reduced precision and memory usage. Float16 is suitable for applications with limited bandwidth and storage, while BFloat16 balances range and efficiency, commonly used in deep learning to reduce computational requirements without significantly impacting accuracy.

#### Does Milvus support specifying default values for scalar or vector fields?

Currently, Milvus 2.4.x does not support specifying default values for scalar or vector fields. This feature is planned for future releases.

#### Still have questions?

You can:
Expand Down
4 changes: 4 additions & 0 deletions site/en/getstarted/install-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ The selection of a deployment mode typically depends on the development stage of

The choice of Milvus deployment mode depends on your project's stage and scale. Milvus provides a flexible and powerful solution for various needs, from rapid prototyping to large-scale enterprise deployment.

- **Milvus Lite** is recommended for smaller datasets, up to a few million vectors.
- **Milvus Standalone** is suitable for medium-sized datasets, scaling up to 100 million vectors.
- **Milvus Distributed** is designed for large-scale deployments, capable of handling datasets from 100 million up to tens of billions of vectors.

![Select deployment option for your use case](../../../assets/select-deployment-option.png)

## Comparison on functionalities
Expand Down
4 changes: 2 additions & 2 deletions site/en/userGuide/manage-collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,11 +335,11 @@ export fields='[{ \
<tbody>
<tr>
<td><code>auto_id</code></td>
<td>Whether allows the primary field to automatically increment.<br>Setting this to <strong>True</strong> makes the primary field automatically increment. In this case, the primary field should not be included in the data to insert to avoid errors.</td>
<td>Determines if the primary field automatically increments.<br>Setting this to <strong>True</strong> makes the primary field automatically increment. In this case, the primary field should not be included in the data to insert to avoid errors. The auto-generated IDs have a fixed length and cannot be altered.</td>
</tr>
<tr>
<td><code>enable_dynamic_field</code></td>
<td>Whether allows Milvus saves the values of undefined fields in a dynamic field if the data being inserted into the target collection includes fields that are not defined in the collection's schema.<br>When you set this to <strong>True</strong>, Milvus will create a field called <strong>$meta</strong> to store any undefined fields and their values from the data that is inserted.</td>
<td>Determines if Milvus saves the values of undefined fields in a dynamic field if the data being inserted into the target collection includes fields that are not defined in the collection's schema.<br>When you set this to <strong>True</strong>, Milvus will create a field called <strong>$meta</strong> to store any undefined fields and their values from the data that is inserted.</td>
</tr>
<tr>
<td><code>field_name</code></td>
Expand Down

0 comments on commit e9fea6d

Please sign in to comment.