logic app to save data in adls gen2

Yang Chow Mun 121 Reputation points
2024-06-20T15:02:05.7333333+00:00

Hi all, I would like to utilize logic app to write into adls gen2.

After the file is saved in adls gen2, it should be able to read by databrick as delta table.

May I know is there a specific file format to do it or how it can be achived? thanks

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,961 questions
Azure Databricks
Azure Databricks
An Apache Spark-based analytics platform optimized for Azure.
2,043 questions
0 comments No comments
{count} votes

Accepted answer
  1. Luis Arias 5,826 Reputation points
    2024-06-20T15:24:26.56+00:00

    Hi Yang Chow Mun,

    I understood that you want to load some files on storage account data lake to be readed or mounted from Databricks.

    First to write data into ADLS Gen2 using Logic Apps, you can use the Azure Blob Storage connector. Although there’s no specific connector for ADLS Gen2 in Logic Apps, ADLS Gen2 is essentially a blob container. You can use the ‘Create Blob’ task to write data into it, Secondly you need to access to this storage from Databricks either Mounting the storage account container or directly reading and writing.

    1. https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-azureblobstorage?tabs=consumption
    2. https://techcommunity.microsoft.com/t5/azure-paas-blog/mount-adls-gen2-or-blob-storage-in-azure-databricks/ba-p/3802926 / https://docs.databricks.com/en/connect/storage/azure-storage.html

    On the other side about the file format to do it the Parquet file format is commonly used because it is a columnar storage file format that is optimized for use with big data processing frameworks like Apache Hadoop. Besides that there is are various formats, including CSV, JSON, and ORC.

    References:

    Luis


0 additional answers

Sort by: Most helpful