I am trying to figure out requirement for my project.
Based on feedback from the community, if it takes more than 230 seconds, it is better to use Durable function than using a regular HTTP Trigger.
My requirement is just pulling data from other third party API using HTTP, store data inside Azure SQL and use the data for reporting (Power BI) at the end.
Honestly, I am not sure how long it would take to pull data, but I guess I would just start with a safer (Durable function) approach.
So, I thought diving into Durable would be a better option. Is it?
From Youtube that I watched, it appears that it is more like "Http-based Async Long-running APIs" from scenarios of Durable function.
Am I on the right approach?
Thank you.