You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en-US/Invoke-KustoIngestFromStream.md
+49-33Lines changed: 49 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
9
9
10
10
## SYNOPSIS
11
11
12
-
{{ Fill in the Synopsis }}
12
+
Ingests stream into Azure Data Explorer.
13
13
14
14
## SYNTAX
15
15
@@ -29,23 +29,39 @@ Invoke-KustoIngestFromStream
29
29
30
30
## DESCRIPTION
31
31
32
-
{{ Fill in the Description }}
32
+
Similar to [`Invoke-KustoIngestFromStorage`](Invoke-KustoIngestFromStorage.md), the `Invoke-KustoIngestFromStream` allows you to ingest data into a table on your Azure Data Explorer Cluster, the only difference is the source being a
33
+
[__Stream__](https://learn.microsoft.com/en-us/dotnet/api/system.io.stream) instead of a path or URI.
> This example specifies a format of `multijson` instead `json` because a _JSON Array_ is classified as multijson, while _JSON Lines_ adhere to the `json` format.
54
+
> See [__The JSON format__](https://learn.microsoft.com/en-us/azure/data-explorer/ingest-json-formats?tabs=kusto-query-language#the-json-format) for more details.
43
55
44
56
## PARAMETERS
45
57
46
58
### -Database
47
59
48
-
{{ Fill Database Description }}
60
+
This non mandatory parameter determines which Database in your Cluster will be targetted by your ingest command.
61
+
62
+
> [!NOTE]
63
+
>
64
+
> If not supplied, the Database used will be the one specified when you called [`Connect-Kusto`](Connect-Kusto.md).
This optional parameter indicates how to map data from the source file to the actual columns in the table.
132
+
You can define the format value with the relevant mapping type.
133
+
134
+
To create a new mapping object, checkout [`New-KustoIngestionMapping`](New-KustoIngestionMapping.md) and [`New-KustoColumnMapping`](New-KustoColumnMapping.md) documentations.
135
+
136
+
See [__data mappings__](https://learn.microsoft.com/en-us/kusto/management/mappings?view=microsoft-fabric) and [__Class `KustoIngestionProperties`__](https://learn.microsoft.com/en-us/kusto/api/netfx/kusto-ingest-client-reference?view=microsoft-fabric#class-kustoingestionproperties) for more information.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
216
+
This cmdlet supports the common parameters.
217
+
For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
210
218
211
219
## INPUTS
212
220
@@ -219,3 +227,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
219
227
## NOTES
220
228
221
229
## RELATED LINKS
230
+
231
+
[__Ingest from storage__](https://learn.microsoft.com/en-us/kusto/management/data-ingestion/ingest-from-storage?view=microsoft-fabric)
0 commit comments