Skip to content

Commit 814361c

Browse files
authored
Merge pull request #103406 from spektom/external_table_updates
External table documentation updates
2 parents be5df5b + 3c7e7be commit 814361c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

articles/data-explorer/data-lake-query-data.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ ms.date: 07/17/2019
1313

1414
Azure Data Lake Storage is a highly scalable and cost-effective data lake solution for big data analytics. It combines the power of a high-performance file system with massive scale and economy to help you speed your time to insight. Data Lake Storage Gen2 extends Azure Blob Storage capabilities and is optimized for analytics workloads.
1515

16-
Azure Data Explorer integrates with Azure Blob Storage and Azure Data Lake Storage Gen2, providing fast, cached, and indexed access to data in the lake. You can analyze and query data in the lake without prior ingestion into Azure Data Explorer. You can also query across ingested and uningested native lake data simultaneously.
16+
Azure Data Explorer integrates with Azure Blob Storage and Azure Data Lake Storage (Gen1 and Gen2), providing fast, cached, and indexed access to data in the lake. You can analyze and query data in the lake without prior ingestion into Azure Data Explorer. You can also query across ingested and uningested native lake data simultaneously.
1717

1818
> [!TIP]
19-
> The best query performance necessitates data ingestion into Azure Data Explorer. The capability to query data in Azure Data Lake Storage Gen2 without prior ingestion should only be used for historical data or data that is rarely queried. [Optimize your query performance in the lake](#optimize-your-query-performance) for best results.
19+
> The best query performance necessitates data ingestion into Azure Data Explorer. The capability to query external data without prior ingestion should only be used for historical data or data that is rarely queried. [Optimize your query performance in the lake](#optimize-your-query-performance) for best results.
2020
2121

2222
## Create an external table
2323

2424
> [!NOTE]
25-
> Currently supported storage accounts are Azure Blob Storage or Azure Data Lake Storage Gen2. Currently supported data formats are json, csv, tsv and txt.
25+
> Currently supported storage accounts are Azure Blob Storage or Azure Data Lake Storage (Gen1 and Gen2).
2626
2727
1. Use the `.create external table` command to create an external table in Azure Data Explorer. Additional external table commands such as `.show`, `.drop`, and `.alter` are documented in [External table commands](/azure/kusto/management/externaltables).
2828

@@ -41,6 +41,7 @@ Azure Data Explorer integrates with Azure Blob Storage and Azure Data Lake Stora
4141
> * When you define an external table with partitions, the storage structure is expected to be identical.
4242
For example, if the table is defined with a DateTime partition in yyyy/MM/dd format (default), the URI storage file path should be *container1/yyyy/MM/dd/all_exported_blobs*.
4343
> * If the external table is partitioned by a datetime column, always include a time filter for a closed range in your query (for example, the query - `ArchivedProducts | where Timestamp between (ago(1h) .. 10m)` - should perform better than this (opened range) one - `ArchivedProducts | where Timestamp > ago(1h)` ).
44+
> * All [supported ingestion formats](ingest-data-overview.md#supported-data-formats) can be queried using external tables.
4445
4546
1. The external table is visible in the left pane of the Web UI
4647

articles/data-explorer/ingest-data-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ For organizations with an existing infrastructure that are based on a messaging
113113
## Supported data formats
114114

115115
For all ingestion methods other than ingest from query, format the data so that Azure Data Explorer can parse it.
116-
* The supported data formats are: TXT, CSV, TSV, TSVE, PSV, SCSV, SOH​, JSON (line-separated, multi-line), Avro, and Parquet​.
116+
* The supported data formats are: TXT, CSV, TSV, TSVE, PSV, SCSV, SOH​, JSON (line-separated, multi-line), Avro, Orc and Parquet​.
117117
* Supports ZIP and GZIP compression.
118118

119119
> [!NOTE]

0 commit comments

Comments
 (0)