Skip to content

Commit 328bd5c

Browse files
author
Mark Heffernan
committed
Make delimited text GA in docs
1 parent 1186981 commit 328bd5c

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

articles/search/search-howto-index-csv-blobs.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Search over CSV blobs
33
titleSuffix: Azure Cognitive Search
4-
description: Extract and import CSV from Azure Blob storage using the delimitedText parsing mode, currently in public preview.
4+
description: Extract and import CSV from Azure Blob storage using the delimitedText parsing mode.
55

66
manager: nitinme
77
author: mgottein
@@ -12,11 +12,7 @@ ms.topic: conceptual
1212
ms.date: 11/04/2019
1313
---
1414

15-
# How to index CSV blobs using delimitedText parsing mode and Blob indexers in Azure Cognitive Search
16-
17-
> [!IMPORTANT]
18-
> The delimitedText parsing mode is currently in public preview. Preview functionality is provided without a service level agreement, and is not recommended for production workloads. For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
19-
> The [REST API version 2019-05-06-Preview](search-api-preview.md) provides this feature. There is currently no portal or .NET SDK support.
15+
# How to index CSV blobs using delimitedText parsing mode and Blob indexers in Azure Cognitive Search
2016

2117
By default, [Azure Cognitive Search blob indexer](search-howto-indexing-azure-blob-storage.md) parses delimited text blobs as a single chunk of text. However, with blobs containing CSV data, you often want to treat each line in the blob as a separate document. For example, given the following delimited text, you might want to parse it into two documents, each containing "id", "datePublished", and "tags" fields:
2218

@@ -60,7 +56,7 @@ Putting this all together, here are the complete payload examples.
6056

6157
Datasource:
6258

63-
POST https://[service name].search.windows.net/datasources?api-version=2019-05-06-Preview
59+
POST https://[service name].search.windows.net/datasources?api-version=2019-05-06
6460
Content-Type: application/json
6561
api-key: [admin key]
6662

@@ -73,7 +69,7 @@ Datasource:
7369

7470
Indexer:
7571

76-
POST https://[service name].search.windows.net/indexers?api-version=2019-05-06-Preview
72+
POST https://[service name].search.windows.net/indexers?api-version=2019-05-06
7773
Content-Type: application/json
7874
api-key: [admin key]
7975

includes/search-blob-data-sources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ ms.author: magottei
1717
* RTF
1818
* Plain text files (see also [Indexing plain text](../articles/search/search-howto-indexing-azure-blob-storage.md#IndexingPlainText))
1919
* JSON (see [Indexing JSON blobs](../articles/search/search-howto-index-json-blobs.md))
20-
* CSV (see [Indexing CSV blobs](../articles/search/search-howto-index-csv-blobs.md) preview feature)
20+
* CSV (see [Indexing CSV blobs](../articles/search/search-howto-index-csv-blobs.md))

0 commit comments

Comments
 (0)