Search code examples
azureazure-functionsbilling

Azure Functions Billing Async Methods


When using Azure Functions based on a Consumption Based Plan that preform an async task, are you billed at the same rate if you await them vs. not awaiting?


Solution

  • Yes, that does not affect the billing. Billing timer is simply based on the amount of time between the start and the end of the function.

    However, writing proper async code is always preferable from a scaling standpoint.