79142447

Date: 2024-10-30 18:53:53
Score: 1
Natty:
Report link

The issue is really with the consumption plan of Azure Function when it comes to the "cold start phenomenon". In this case you can try to implement a keep-alive mechanism to periodically invoke the function, be it a timed trigger or HTTP trigger which will ping your Service Bus Function.

OR

you can switch to flex-consumption tier which supports always ready instances feature: https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan#always-ready-instances

Hopefully that helps !

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: catJam