You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/search-howto-reindex.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ GET {{baseUrl}}/indexes/hotels-vector-quickstart/docs('1')?api-version=2023-11-
85
85
86
86
## Change an index schema
87
87
88
-
The index schema defines the physical data structures created on the search service, so there aren't many schema changes that you can make without incurring a full rebuild. The following list enumerates the schema changes that can be introduced seamlessly into an existing index. Generally, the list includes new fields and functionality used during query executions.
88
+
The index schema defines the physical data structures created on the search service, so there aren't many schema changes that you can make without incurring a full rebuild. The following list enumerates the schema changes that can be introduced seamlessly into an existing index. Generally, the list includes new fields and functionality used during query execution.
89
89
90
90
+ Add a new field
91
91
+ Set the `retrievable` attribute on an existing field
@@ -102,9 +102,9 @@ The order of operations is:
102
102
103
103
1. Revise the schema with updates from the previous list.
1.[Update index content](#update-content) to match your revised schema if you added a new field. For all other changes, the existing content is used as-is.
108
108
109
109
When you update the index schema, existing documents in the index are given a null value for the new field. On the next index documents job, values from external source data replace the nulls added by Azure AI Search.
110
110
@@ -131,9 +131,9 @@ The order of operations is:
131
131
132
132
1.[Drop the existing index](/rest/api/searchservice/indexes/delete). queries targeting the index are immediately dropped. Remember that deleting an index is irreversible, destroying physical storage for the fields collection and other constructs.
133
133
134
-
1.[Post a revised index](/rest/api/searchservice/indexes/create), where the body of the request includes changed or modified field definitions.
134
+
1.[Post a revised index](/rest/api/searchservice/indexes/create), where the body of the request includes changed or modified field definitions and configurations.
135
135
136
-
1.[Load the index with documents](/rest/api/searchservice/documents) from an external source.
136
+
1.[Load the index with documents](/rest/api/searchservice/documents) from an external source. Documents are indexed using the field definitions and configurations of the new schema.
137
137
138
138
When you create the index, physical storage is allocated for each field in the index schema, with an inverted index created for each searchable field and a vector index created for each vector field. Fields that aren't searchable can be used in filters or expressions, but don't have inverted indexes and aren't full-text or fuzzy searchable. On an index rebuild, these inverted indexes and vector indexes are deleted and recreated based on the index schema you provide.
Copy file name to clipboardExpand all lines: articles/search/search-manage-rest.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -291,7 +291,7 @@ You can only regenerate one admin API key at a time.
291
291
### Regnerate admin keys
292
292
POST https://management.azure.com/subscriptions/{{subscriptionId}}/resourcegroups/{{resource-group}}/providers/Microsoft.Search/searchServices/{{search-service-name}}/regenerateAdminKey/primary?api-version=2023-11-01 HTTP/1.1
0 commit comments