Azure functions subscribing to the function app start event

Amar-Azure-Practice 661 Reputation points
2021-01-22T17:04:56.993+00:00

Hi

I am looking for some kind of preprocessing mechanism before the function app instance get created.

like in web app we have the App_Start event, similer kind of thing do we have in Azure function apps.

and for functions with in the function app do we have a reprocessing king events?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,607 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 69,971 Reputation points
    2021-01-25T04:01:52.733+00:00

    Hi @Amar-Azure-Practice

    Azure function has a warmup trigger to pre-load custom dependencies during the pre-warming process so that your functions are ready to start processing requests immediately. You can use a warmup function to open/manage connections, load dependencies, or run any other custom logic before your app will begin receiving traffic.

    Can you please provide more details on your last query?

    0 comments No comments