ftp to azure storage blob (triggered processing)

后端 未结 5 2071
醉酒成梦
醉酒成梦 2021-01-21 11:06

I want to transfert encrypted files from an ftp server to `azure blob storage container

Here is the workfow in question:

CSV

5条回答
  •  后悔当初
    2021-01-21 11:33

    Don't overengineer it.

    Use a Logic App to poll the FTP server and detect new files, place them in blob storage.

    Create a blob-triggered Azure Function (Consumption Plan, v2 runtime) and do your data transformation in code (in v2 you have a choice between TypeScript, JavaScript, C# and Python). Write the results to blob storage with a blob output binding.

    OPTIONAL Have a second Logic App trigger on the resulting blobs and e-mail/text you notifications.

提交回复
热议问题