Im preparing AZ-204 certification.
We want to execute a function during a long time. the solution (in Microsoft docs) is to use App service plan or durable functions
In one practice test i found a confusing response of the question below:
"You develop an HTTP triggered Azure Function app to process Azure Storage blob data. The app is triggered using an output binding on the blob. The app continues to time out after four minutes. The app must process the blob data. You need to ensure the app does not time out and processes the blob data." Proposed answers:
Solution1: Configure the app to use an App Service hosting plan and enable the Always On setting. Should be YES or NO??
Solution2: Use the Durable Function async pattern to process the blob data. Should be YES or NO ??
Solution3: Pass the HTTP trigger payload into an Azure Service Bus queue to be processed by a queue trigger function and return an immediate HTTP success response. Should be YES or NO ??
according to what I have prepared the three answers are correct. Who can confirm?