Data formats supported for ingestion

Learn about the various data and compression formats supported for ingestion.

Data ingestion is the process by which data is added to a table and is made available for query. For all ingestion methods, other than ingest-from-query, the data must be in one of the supported formats. The following table lists and describes the formats that is supported for data ingestion.

For more information about why ingestion might fail, see Ingestion failures and Ingestion error codes in Azure Data Explorer.

FormatExtensionDescription
ApacheAvro.avroAn AVRO format with support for logical types. The following compression codecs are supported: null, deflate, and snappy. Reader implementation of the apacheavro format is based on the official Apache Avro library. For information about ingesting Event Hub Capture Avro files, see Ingesting Event Hub Capture Avro files.
Avro.avroA legacy implementation for AVRO format based on .NET library. The following compression codecs are supported: null, deflate (for snappy - use ApacheAvro data format).
CSV.csvA text file with comma-separated values (,). See RFC 4180: Common Format and MIME Type for Comma-Separated Values (CSV) Files.
JSON.jsonA text file with JSON objects delimited by \n or \r\n. See JSON Lines (JSONL).
MultiJSON.multijsonA 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.
ORC.orcAn ORC file.
Parquet.parquetA Parquet file.
PSV.psvA text file with pipe-separated values (|).
RAW.rawA text file whose entire contents is a single string value.
SCsv.scsvA text file with semicolon-separated values (;).
SOHsv.sohsvA text file with SOH-separated values. (SOH is ASCII codepoint 1; this format is used by Hive on HDInsight.)
TSV.tsvA text file with tab-separated values (\t).
TSVE.tsvA text file with tab-separated values (\t). A backslash character (\) is used for escaping.
TXT.txtA text file with lines delimited by \n. Empty lines are skipped.
W3CLOGFILE.logWeb log file format standardized by the W3C.

For more info on ingesting data using json or multijson formats, see ingest json formats.

Supported data compression formats

Blobs and files can be compressed through any of the following compression algorithms:

CompressionExtension
gzip.gz
zip.zip

Indicate compression by appending the extension to the name of the blob or file.

For example:

  • MyData.csv.zip indicates a blob or a file formatted as CSV, compressed with zip (archive or a single file)
  • MyData.json.gz indicates a blob or a file formatted as JSON, compressed with gzip.

Blob or file names that don’t include the format extensions but just compression (for example, MyData.zip) is also supported. In this case, the file format must be specified as an ingestion property because it cannot be inferred.