I would like to create a pipeline in Data Factory and I would like to use Azure Function for some C# code which will download files from some web services, etc. The problem is that only HTTP Triggered function is supported in Azure Factory and HTTP Triggered function has duration limited for 230 seconds. https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale
Is there any workaround how to trigger azure function with longer duration from data factory? I need to do it synchronously, because another processes will work with downloaded data.
Thank you very much for any ideas.