Skip to content

Commit 526fc0e

Browse files
authored
Update search-howto-indexing-azure-blob-storage.md
1 parent a26a757 commit 526fc0e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

articles/search/search-howto-indexing-azure-blob-storage.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ An indexer runs automatically when it's created. You can prevent this by setting
247247

248248
Keep in mind that an indexer can only index data from a single container. If your requirement is to index data from multiple containers and consolidate it into a single AI Search index, this can be achieved by configuring multiple indexers, all directed to the same index. Please be aware of the [maximum number of indexers available per SKU](search-limits-quotas-capacity.md#indexer-limits).
249249

250-
To illustrate, let's consider an example of two indexers, pulling data from two distinct data sources, named `my-blob-datasource1` and `my-blob-datasource2`. Each data source points to a separate Azure Blob container, but both direct to the same index named `my-search-index`:
250+
To illustrate, let's consider an example of two indexers, pulling data from two distinct data sources, named `my-blob-datasource1` and `my-blob-datasource2`. Each data source points to a separate Azure Blob container, but both direct to the same index named `my-search-index`.
251+
252+
First indexer definition example:
251253

252254
```http
253255
POST https://[service name].search.windows.net/indexers?api-version=2023-11-01
@@ -271,7 +273,7 @@ To illustrate, let's consider an example of two indexers, pulling data from two
271273
"fieldMappings" : [ ]
272274
}
273275
```
274-
276+
Second indexer definition that runs in parallel example:
275277

276278
```http
277279
POST https://[service name].search.windows.net/indexers?api-version=2023-11-01

0 commit comments

Comments
 (0)