Skip to content

Commit 947c6f7

Browse files
committed
Updated management content
1 parent 65348bf commit 947c6f7

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

articles/search/includes/how-tos/manage-index-portal.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ To view all your indexes:
3737

3838
On the index page, the portal provides the following statistics:
3939

40-
+ The number of documents in the index.
41-
+ The storage space used by the index.
42-
+ The vector storage space used by the index.
43-
+ The maximum storage space for each index on your search service, which [depends on your pricing tier](../../search-limits-quotas-capacity.md). This value doesn't represent the total storage currently available to the index.
40+
+ Number of documents in the index.
41+
+ Storage space used by the index.
42+
+ Vector storage space used by the index.
43+
+ Maximum storage space for each index on your search service, which [depends on your pricing tier](../../search-limits-quotas-capacity.md). This value doesn't represent the total storage currently available to the index.
4444

4545
:::image type="content" source="../../media/search-how-to-manage-index/index-statistics.png" alt-text="Screenshot of the index statistics in the portal." border="true" lightbox="../../media/search-how-to-manage-index/index-statistics.png":::
4646

@@ -60,7 +60,7 @@ On the index page, select **Edit JSON** to view its complete definition.
6060
## Delete an index
6161

6262
> [!WARNING]
63-
> You can't undo an index deletion. Before you proceed, make sure that you want to permanently remove the index and its documents from your search service. We recommend that you test this operation in a nonproduction environment.
63+
> You can't undo an index deletion. Before you proceed, make sure that you want to permanently remove the index and its documents from your search service.
6464
6565
On the index page, select **Delete** to initiate the deletion process.
6666

articles/search/includes/how-tos/manage-index-rest.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ GET https://[service name].search.windows.net/indexes?api-version=[api version]
3434

3535
## View an index's statistics
3636

37-
Each index is defined by fields and optional components that enhance search capabilities, such as analyzers, normalizers, tokenizers, and synonym maps. This definition determines the index's structure and behavior during indexing and querying.
38-
3937
Use [Indexes - Get Statistics (REST API)](/rest/api/searchservice/indexes/get-statistics) to retrieve the document count, storage usage, and vector storage usage of an index.
4038

4139
```http
@@ -47,6 +45,8 @@ GET https://[service name].search.windows.net/indexes/[index name]/stats?api-ver
4745

4846
## View an index's definition
4947

48+
Each index is defined by fields and optional components that enhance search capabilities, such as analyzers, normalizers, tokenizers, and synonym maps. This definition determines the index's structure and behavior during indexing and querying.
49+
5050
Use [Indexes - Get (REST API)](/rest/api/searchservice/indexes/get) to retrieve the JSON definition of an index.
5151

5252
```http
@@ -59,7 +59,7 @@ GET https://[service name].search.windows.net/indexes/[index name]?api-version=[
5959
## Delete an index
6060

6161
> [!WARNING]
62-
> You can't undo an index deletion. Before you proceed, make sure that you want to permanently remove the index and its documents from your search service. We recommend that you test this operation in a nonproduction environment.
62+
> You can't undo an index deletion. Before you proceed, make sure that you want to permanently remove the index and its documents from your search service.
6363
6464
Use [Indexes - Delete (REST API)](/rest/api/searchservice/indexes/delete) to permanently delete an index.
6565

articles/search/includes/how-tos/manage-index-sdk.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.topic: include
77
ms.date: 07/03/2025
88
---
99

10-
After you [create an index](../../search-how-to-create-search-index.md), you can use the Azure SDKs to access its statistics and definition or remove it from your search service.
10+
After you [create an index](../../search-how-to-create-search-index.md), you can use the Azure SDK for .NET, Java, JavaScript, or Python to access its statistics and definition or remove it from your search service.
1111

1212
This article describes how to manage an index without affecting its content. For guidance on modifying an index definition, see [Update or rebuild an index in Azure AI Search](../../search-howto-reindex.md).
1313

@@ -261,10 +261,12 @@ index = client.get_index("[index name]")
261261
print(json.dumps(index.as_dict(), indent=2, sort_keys=True, ensure_ascii=False))
262262
```
263263

264+
---
265+
264266
## Delete an index
265267

266268
> [!WARNING]
267-
> You can't undo an index deletion. Before you proceed, make sure that you want to permanently remove the index and its documents from your search service. We recommend that you test this operation in a nonproduction environment.
269+
> You can't undo an index deletion. Before you proceed, make sure that you want to permanently remove the index and its documents from your search service.
268270
269271
Use your preferred Azure SDK to permanently delete an index.
270272

articles/search/search-how-to-manage-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Index Management
33
titleSuffix: Azure AI Search
4-
description: Learn how to manage indexes in Azure AI Search. Operations include viewing all indexes on your search services, checking index-specific statistics and definitions, and deleting indexes.
4+
description: Learn how to manage indexes in Azure AI Search. Operations include viewing all indexes on your search service, checking index-specific statistics and definitions, and deleting indexes.
55
manager: nitinme
66
author: haileytap
77
ms.author: haileytapia

0 commit comments

Comments
 (0)