Skip to content

Commit c5bff91

Browse files
authored
Merge pull request #102434 from orspod/json
Add to intro in json file
2 parents 1200fd1 + 2af7433 commit c5bff91

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

articles/data-explorer/ingest-json-formats.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ ms.author: orspodek
66
ms.reviewer: kerend
77
ms.service: data-explorer
88
ms.topic: conceptual
9-
ms.date: 01/23/2020
9+
ms.date: 01/27/2020
1010
---
1111

1212
# Ingest JSON formatted sample data into Azure Data Explorer
1313

14-
This article shows you how to ingest JSON formatted data into an Azure Data Explorer database. You'll start with simple examples of raw and mapped JSON, continue to multi-lined JSON, and then tackle more complex JSON schemas containing arrays and dictionaries.
14+
This article shows you how to ingest JSON formatted data into an Azure Data Explorer database. You'll start with simple examples of raw and mapped JSON, continue to multi-lined JSON, and then tackle more complex JSON schemas containing arrays and dictionaries. The examples detail the process of ingesting JSON formatted data using Kusto query language (KQL), C#, or Python. The Kusto query language `ingest` control commands are executed directly to the engine endpoint. In production scenarios, ingestion is executed to the Data Management service using client libraries or data connections. Read [Ingest data using the Azure Data Explorer Python library](/azure/data-explorer/python-ingest-data) and [Ingest data using the Azure Data Explorer .NET Standard SDK](/azure/data-explorer/net-standard-ingest-data) for a walk-through regarding ingesting data with these client libraries.
1515

1616
## Prerequisites
1717

@@ -77,9 +77,6 @@ Use Kusto query language to ingest data in a raw JSON format.
7777
.ingest into table RawEvents h'https://kustosamplefiles.blob.core.windows.net/jsonsamplefiles/simple.json?st=2018-08-31T22%3A02%3A25Z&se=2020-09-01T22%3A02%3A00Z&sp=r&sv=2018-03-28&sr=b&sig=LQIbomcKI8Ooz425hWtjeq6d61uEaq21UVX7YrM61N4%3D' with (format=json, jsonMappingReference=RawEventMapping)
7878
```
7979
80-
> [!NOTE]
81-
> This shows the `ingest` control commands executed directly to the engine endpoint. In production scenarios, ingestion is executed to the Data Management service using client libraries or data connections. Read [Ingest data using the Azure Data Explorer Python library](/azure/data-explorer/python-ingest-data) and [Ingest data using the Azure Data Explorer .NET Standard SDK](/azure/data-explorer/net-standard-ingest-data) for a walk-through regarding ingesting data with these client libraries.
82-
8380
# [C#](#tab/c-sharp)
8481
8582
Use C# to ingest data in raw JSON format.

0 commit comments

Comments
 (0)