Skip to content

Commit 53abb45

Browse files
committed
Make data format names uppercase
1 parent 971237e commit 53abb45

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/data-explorer/ingestion-supported-formats.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ Data ingestion is the process by which data is added to a table and is made avai
1515

1616
|Format |Extension |Description|
1717
|---------|------------|-----------|
18-
|avro |`.avro` |An [Avro container file](https://avro.apache.org/docs/current/). The following codes are supported: `null`, `deflate` (`snappy` is currently not supported).|
18+
|Avro |`.avro` |An [Avro container file](https://avro.apache.org/docs/current/). The following codes are supported: `null`, `deflate` (`snappy` is currently not supported).|
1919
|CSV |`.csv` |A text file with comma-separated values (`,`). See [RFC 4180: _Common Format and MIME Type for Comma-Separated Values (CSV) Files_](https://www.ietf.org/rfc/rfc4180.txt).|
2020
|JSON |`.json` |A text file with JSON objects delimited by `\n` or `\r\n`. See [JSON Lines (JSONL)](http://jsonlines.org/).|
21-
|multijson|`.multijson`|A text file with a JSON array of property bags (each representing a record), or any number of property bags delimited by whitespace, `\n` or `\r\n`. Each property bag can be spread on multiple lines. This format is preferred over `JSON`, unless the data is non-property bags.|
22-
|orc |`.orc` |An [Orc file](https://en.wikipedia.org/wiki/Apache_ORC).|
23-
|parquet |`.parquet` |A [Parquet file](https://en.wikipedia.org/wiki/Apache_Parquet).|
24-
|psv |`.psv` |A text file with pipe-separated values (<code>&#124;</code>).|
25-
|raw |`.raw` |A text file whose entire contents is a single string value.|
26-
|scsv |`.scsv` |A text file with semicolon-separated values (`;`).|
27-
|sohsv |`.sohsv` |A text file with SOH-separated values. (SOH is ASCII codepoint 1; this format is used by Hive on HDInsight.)|
28-
|tsv |`.tsv` |A text file with tab-separated values (`\t`).|
29-
|tsve |`.tsv` |A text file with tab-separated values (`\t`). A backslash character (`\`) is used for escaping.|
30-
|txt |`.txt` |A text file with lines delimited by `\n`. Empty lines are skipped.|
21+
|MultiJSON|`.multijson`|A text file with a JSON array of property bags (each representing a record), or any number of property bags delimited by whitespace, `\n` or `\r\n`. Each property bag can be spread on multiple lines. This format is preferred over `JSON`, unless the data is non-property bags.|
22+
|ORC |`.orc` |An [Orc file](https://en.wikipedia.org/wiki/Apache_ORC).|
23+
|Parquet |`.parquet` |A [Parquet file](https://en.wikipedia.org/wiki/Apache_Parquet).|
24+
|PSV |`.psv` |A text file with pipe-separated values (<code>&#124;</code>).|
25+
|RAW |`.raw` |A text file whose entire contents is a single string value.|
26+
|SCsv |`.scsv` |A text file with semicolon-separated values (`;`).|
27+
|SOHsv |`.sohsv` |A text file with SOH-separated values. (SOH is ASCII codepoint 1; this format is used by Hive on HDInsight.)|
28+
|TSV |`.tsv` |A text file with tab-separated values (`\t`).|
29+
|TSVE |`.tsv` |A text file with tab-separated values (`\t`). A backslash character (`\`) is used for escaping.|
30+
|TXT |`.txt` |A text file with lines delimited by `\n`. Empty lines are skipped.|
3131

3232
## Supported data compression formats
3333

0 commit comments

Comments
 (0)