Skip to content

Commit 348f66c

Browse files
committed
done ingestfromstorage doc
1 parent b359cb9 commit 348f66c

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

docs/en-US/Invoke-KustoIngestFromStorage.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Invoke-KustoIngestFromStorage .\myJson.json -Table MyJsonTable -Database myDb -F
6363

6464
> [!NOTE]
6565
>
66-
> The reason `multijson` format instead of `json` is used in this example is because a Json Array is considered as
67-
> `multijson` whereas _JSON Lines_ corresponds to the `json` format. 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.
66+
> 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.
67+
> 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.
6868
6969
## PARAMETERS
7070

@@ -96,14 +96,11 @@ This parameter determines the format of the file to be ingested. The default val
9696
Type: DataSourceFormat
9797
Parameter Sets: (All)
9898
Aliases:
99-
Accepted values: csv, tsv, scsv, sohsv, psv, txt,
100-
raw, tsve, w3clogfile, apacheavro,
101-
orc, sstream, parquet, avro,
102-
multijson, singlejson, json
99+
Accepted values: csv, tsv, scsv, sohsv, psv, txt, raw, tsve, w3clogfile, apacheavro, orc, sstream, parquet, avro, multijson, singlejson, json
103100
104101
Required: False
105102
Position: Named
106-
Default value: None
103+
Default value: csv
107104
Accept pipeline input: False
108105
Accept wildcard characters: False
109106
```
@@ -133,7 +130,7 @@ You can define the format value with the relevant mapping type.
133130

134131
To create a new mapping object, checkout [`New-KustoIngestionMapping`](New-KustoIngestionMapping.md) and [`New-KustoColumnMapping`](New-KustoColumnMapping.md) documentations.
135132

136-
See [__data mappings__](https://learn.microsoft.com/en-us/kusto/management/mappings?view=microsoft-fabric) for more information.
133+
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.
137134

138135
```yaml
139136
Type: IngestionMapping
@@ -149,7 +146,7 @@ Accept wildcard characters: False
149146

150147
### -MaxRetries
151148

152-
{{ Fill MaxRetries Description }}
149+
Determines the total retry service calls when there is an ingestion failure.
153150

154151
```yaml
155152
Type: Int32
@@ -158,14 +155,14 @@ Aliases:
158155
159156
Required: False
160157
Position: Named
161-
Default value: None
158+
Default value: 3
162159
Accept pipeline input: False
163160
Accept wildcard characters: False
164161
```
165162

166163
### -Path
167164

168-
{{ Fill Path Description }}
165+
The path or URI to the file to ingest.
169166

170167
```yaml
171168
Type: String
@@ -181,7 +178,7 @@ Accept wildcard characters: False
181178

182179
### -RetryDelay
183180

184-
{{ Fill RetryDelay Description }}
181+
Determines the time to wait before retrying. The default value is __1 second__.
185182

186183
```yaml
187184
Type: TimeSpan
@@ -190,14 +187,14 @@ Aliases:
190187
191188
Required: False
192189
Position: Named
193-
Default value: None
190+
Default value: [timespan] '00:00:01'
194191
Accept pipeline input: False
195192
Accept wildcard characters: False
196193
```
197194

198195
### -Table
199196

200-
{{ Fill Table Description }}
197+
Specifies the database table in your Cluster to ingest into.
201198

202199
```yaml
203200
Type: String

0 commit comments

Comments
 (0)