diff --git a/v2.5.x/site/en/menuStructure/en.json b/v2.5.x/site/en/menuStructure/en.json index c7feeab8c3..ffaa40f454 100644 --- a/v2.5.x/site/en/menuStructure/en.json +++ b/v2.5.x/site/en/menuStructure/en.json @@ -236,12 +236,6 @@ "order": 1, "children": [] }, - { - "label": "Consistency", - "id": "consistency.md", - "order": 2, - "children": [] - }, { "label": "Multi-tenancy", "id": "multi_tenancy.md", @@ -254,12 +248,6 @@ "order": 4, "children": [] }, - { - "label": "Similarity Metrics", - "id": "metric.md", - "order": 5, - "children": [] - }, { "label": "Time Synchronization", "id": "time_sync.md", @@ -298,12 +286,6 @@ "order": 8, "children": [] }, - { - "label": "Reranking", - "id": "reranking.md", - "order": 9, - "children": [] - }, { "label": "In-memory Replica", "id": "replica.md", diff --git a/v2.5.x/site/en/userGuide/schema/number.md b/v2.5.x/site/en/userGuide/schema/number.md index 200db8f9d9..773e52e667 100644 --- a/v2.5.x/site/en/userGuide/schema/number.md +++ b/v2.5.x/site/en/userGuide/schema/number.md @@ -440,7 +440,7 @@ curl --request POST \​ In this example, we insert data that includes `age`, `price`, `pk` (primary field), and vector representations (`embedding`). To ensure that the inserted data matches the fields defined in the schema, it's recommended to check data types in advance to avoid errors.​ -If you set `enable_dynamic_fields=True` when defining the schema, Milvus allows you to insert number fields that were not defined in advance. However, keep in mind that this may increase the complexity of queries and management, potentially impacting performance. For more information, refer to [​Dynamic Field](enable_dynamic_field.md).​ +If you set `enable_dynamic_fields=True` when defining the schema, Milvus allows you to insert number fields that were not defined in advance. However, keep in mind that this may increase the complexity of queries and management, potentially impacting performance. For more information, refer to [​Dynamic Field](enable-dynamic-field.md).​ ## Search and query​ diff --git a/v2.5.x/site/en/userGuide/schema/schema.md b/v2.5.x/site/en/userGuide/schema/schema.md index 4533bb6591..659677b726 100644 --- a/v2.5.x/site/en/userGuide/schema/schema.md +++ b/v2.5.x/site/en/userGuide/schema/schema.md @@ -385,7 +385,7 @@ export schema="{​ ### Add JSON fields​ -A JSON field usually stores half-structured JSON data. For more on the JSON fields, refer to [​JSON Field](use-json-field.md).​ +A JSON field usually stores half-structured JSON data. For more on the JSON fields, refer to [​JSON Field](use-json-fields.md).​
Python @@ -440,7 +440,7 @@ export schema="{​ ### Add Array Fields​ -An array field stores a list of elements. The data types of all elements in an array field should be the same. For more on the array fields, refer to [​Array Field](array_data_field.md).​ +An array field stores a list of elements. The data types of all elements in an array field should be the same. For more on the array fields, refer to [​Array Field](array_data_type.md).​
Python diff --git a/v2.5.x/site/en/userGuide/schema/string.md b/v2.5.x/site/en/userGuide/schema/string.md index 592a85fde7..6ba0808b8d 100644 --- a/v2.5.x/site/en/userGuide/schema/string.md +++ b/v2.5.x/site/en/userGuide/schema/string.md @@ -421,7 +421,7 @@ curl --request POST \​ In this example, we insert data that includes `VARCHAR` fields (`varchar_field1` and `varchar_field2`), a primary field (`pk`), and vector representations (`embedding`). To ensure that the inserted data matches the fields defined in the schema, it is recommended to check data types in advance to avoid insertion errors.​ -If you set `enable_dynamic_fields=True` when defining the schema, Milvus allows you to insert string fields that were not defined in advance. However, keep in mind that this may increase the complexity of queries and management, potentially impacting performance. For more information, refer to [​Dynamic Field](enable-dynammic-field.md).​ +If you set `enable_dynamic_fields=True` when defining the schema, Milvus allows you to insert string fields that were not defined in advance. However, keep in mind that this may increase the complexity of queries and management, potentially impacting performance. For more information, refer to [​Dynamic Field](enable-dynamic-field.md).​ ## Search and query​