AzureStorage. DataLake

The function returns a table containing the documents found in the specified container and its subfolders at the account URL endpoint from an Azure Data Lake Storage filesystem. Users can specify opti...

Syntax

AzureStorage.DataLake(endpoint as text, optional options as nullable record) as table.

About

The function returns a table containing the documents found in the specified container and its subfolders at the account URL endpoint from an Azure Data Lake Storage filesystem. Users can specify options to customize the behavior: - BlockSize: Determines the amount of data read before waiting for the consumer. The default value is 4 MB. - RequestSize: Specifies the size of data to attempt reading in a single HTTP request to the server. The default value is 4 MB. - ConcurrentRequests: Enhances data download speed by determining the number of requests made in parallel, though it increases memory usage. Memory required is calculated as (ConcurrentRequests * RequestSize). The default value is 16. - HierarchicalNavigation: A boolean (true/false) option that controls whether files are displayed in a tree-like directory view or a flat list. The default value is false.