Let me start with note that i am completely understand Azure functions and serverless concepts and Azure function's 5 min max time out limit.
If you want to run any jobs more than 10 minutes choose webjobs. Azure functions, runs only for 5 minutes by default, if your process exceeds 5 minutes, then azure function throws timeout exception. You can increase the timeout to 10 minutes in host.json.
Question :
I am try to build following architecture to save cost on azure and want to deploy Spring rest micro service as azure functions.
I have created demo Java Azure function and it's working fine . - Azure Java function -502-Bad Gateway
Now i want to call my API inside of azure functions and also want to use my spring-boot jar (upload jar in storage or any other locations).
Did any one try this and is it possible with Azure java functions ?