Execute the query, store the results in a table, and return a reference to the new table Run a Kusto query and export results to Azure Storage in Parquet or CSV format.
Execute the query, store the results in a table, and return a reference to the new table Run a Kusto query and export results to Azure Storage in Parquet or CSV format.
kusto_export_cmd(query, storage_uri, name_prefix, key, format, distributed)
Arguments
query: The text of the Kusto query to run
storage_uri: The URI of the blob storage container to export to
name_prefix: The filename prefix for each exported file
key: The account key for the storage container. uses the identity that is signed into Kusto to authenticate to Azure Storage.
format: Options are "parquet", "csv", "tsv", "json"
distributed: logical, indicates whether Kusto should distributed the export job to multiple nodes, in which case multiple files will be written to storage concurrently.