问题
I am getting files in a particular folder on my Azure Datalake store at regular interval. As soon as file come, I want to process it further using an Azure function. Is that possible?
回答1:
UPDATE: With Multi-Protocol Access for Azure Data Lake Storage, the storage extension should indeed work and some basic tests do confirm that.
There are open issues [1, 2] for official confirmation of support.
Though Azure Data Lake Storage (ADLS) Gen2 is built upon Azure Blob Storage, there are a couple of known issues and differences which are documented.
Because of these differences, I believe we can't use the existing bindings available for Blob storage or Event Grid.
But you could still have a Function, triggered by Timer, for example and use the ADLS v2 REST API to read/update files.
Also, depending on your use case of course, you might really want to look into the other integrations that ADLS v2 supports, namely - HDInsight, Databricks, SQL Data Warehouse.
来源:https://stackoverflow.com/questions/55874266/process-azure-datalake-store-file-using-azure-function