Skip to content

Commit 9d2335f

Browse files
Merge pull request #2739 from MicrosoftDocs/main638940493657534218sync_temp
For protected branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 730ac7d + 0367f84 commit 9d2335f

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

data-explorer/ingest-data-overview.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
title: Azure Data Explorer data ingestion overview
3-
description: Learn about the different ways you can ingest (load) data in Azure Data Explorer
3+
description: Discover Azure Data Explorer's data ingestion options, including streaming, batch queues, and direct ingestion, for real-time analytics and historical data needs.
44
ms.reviewer: akshay.dixit
55
ms.topic: conceptual
6-
ms.date: 05/29/2025
6+
ms.date: 09/10/2025
7+
Search Keywords: Azure Data Explorer, Kusto, data ingestion, streaming ingestion, queued ingestion, batched ingestion, direct ingestion, data formats, ingestion methods, data pipelines, real-time analytics, historical data
78
---
89

910
# Azure Data Explorer data ingestion overview
@@ -13,7 +14,9 @@ Data ingestion involves loading data into a table in your cluster. Azure Data Ex
1314
Azure Data Explorer offers one-time ingestion or the establishment of a continuous ingestion pipeline, using either streaming or queued ingestion. To determine which is right for you, see [One-time data ingestion](#one-time-data-ingestion) and [Continuous data ingestion](#continuous-data-ingestion).
1415

1516
> [!NOTE]
16-
> Data is persisted in storage according to the set [retention policy](/kusto/management/retention-policy?view=azure-data-explorer&preserve-view=true).
17+
>
18+
> * Data is persisted in storage according to the set [retention policy](/kusto/management/retention-policy?view=azure-data-explorer&preserve-view=true).
19+
> * If a single string value in a record, or the entire record, exceeds the allowed data limit of 64MB, ingestion fails.
1720
1821
## One-time data ingestion
1922

data-explorer/kusto/management/batching-policy.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ title: IngestionBatching policy
33
description: Learn how to use the IngestionBatching policy to optimize batching for ingestion.
44
ms.reviewer: orspodek
55
ms.topic: reference
6-
ms.date: 08/21/2024
6+
ms.date: 09/21/2025
7+
Search Keywords: IngestionBatching, ingestion batching, batching policy, ingestion optimization, data ingestion settings, Azure Data Explorer ingestion, Kusto ingestion, data batching, ingestion performance
78
---
89
# Ingestion batching policy
910

10-
## Overview
11-
1211
> [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)]
1312
1413
During the queued ingestion process, the service optimizes for throughput by batching small ingress data chunks together before ingestion. Batching reduces the resources consumed by the queued ingestion process and doesn't require post-ingestion resources to optimize the small data shards produced by non-batched ingestion.

data-explorer/kusto/query/ai-chat-completion-prompt-plugin.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,10 @@ The following example sends a separate prompt for each row to the Azure OpenAI c
153153
let connectionString = 'https://myaccount.openai.azure.com/openai/deployments/gpt4o/chat/completion?api-version=2024-06-01;managed_identity=system';
154154
let options = dynamic({
155155
"RetriesOnThrottling": 1,
156-
"GlobalTimeout": 2m
156+
"GlobalTimeout": 2m,
157+
"ModelParameters": {
158+
"temperature: 0.7
159+
}
157160
});
158161
datatable(Prompt: string)
159162
[
@@ -171,7 +174,10 @@ datatable(Prompt: string)
171174
let connectionString = 'https://myaccount.openai.azure.com/openai/deployments/gpt4o/chat/completions?api-version=2024-06-01;impersonate';
172175
let options = dynamic({
173176
"RetriesOnThrottling": 1,
174-
"GlobalTimeout": 2m
177+
"GlobalTimeout": 2m,
178+
"ModelParameters": {
179+
"temperature: 0.7
180+
}
175181
});
176182
datatable(Prompt: string)
177183
[
@@ -189,3 +195,4 @@ datatable(Prompt: string)
189195

190196
* [ai_embeddings()](ai-embeddings-plugin.md)
191197
* [ai_chat_completion()](ai-chat-completion-plugin.md)
198+

0 commit comments

Comments
 (0)