Skip to content

Commit 613c830

Browse files
committed
Final pre-GA revisions (remove preview)
1 parent d48466a commit 613c830

File tree

5 files changed

+7
-17
lines changed

5 files changed

+7
-17
lines changed

articles/azure-functions/flex-consumption-plan.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,7 @@ Deployments in the Flex Consumption plan follow a single path. After your projec
9595

9696
The minimum billable execution period for both execution modes is 1,000 ms. Past that, the billable activity period is rounded up to the nearest 100 ms. You can find details on the Flex Consumption plan billing meters in the [Monitoring reference](monitor-functions-reference.md?tab=flex-consumption-plan#metrics).
9797

98-
For details about how costs are calculated when you run in a Flex Consumption plan, including examples, see [Consumption-based costs](functions-consumption-costs.md?tabs=flex-consumtion-plan#consumption-based-costs).
99-
100-
For the most up-to-date information on execution pricing, always ready baseline costs, and free grants for on demand executions, see the [Azure Functions pricing page](https://azure.microsoft.com/pricing/details/functions/).
98+
For details about how costs are calculated when you run in a Flex Consumption plan, including examples, see [Consumption-based costs](functions-consumption-costs.md?tabs=flex-consumtion-plan#consumption-based-costs).
10199

102100
## Supported language stack versions
103101

articles/azure-functions/functions-consumption-costs.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Estimating consumption-based costs in Azure Functions
33
description: Learn how to better estimate the costs that you might incur when running your function app in either the Consumption plan or the Flex Consumption plan in Azure Functions.
4-
ms.date: 5/05/2024
4+
ms.date: 11/05/2024
55
ms.topic: conceptual
66
ms.custom:
77
- build-2024
@@ -57,16 +57,6 @@ In addition to execution time, when using one or more always ready instances, yo
5757
>[!IMPORTANT]
5858
>In this article, prices are only provided to help understand example calculations. Always check the [Azure Functions pricing page](https://azure.microsoft.com/pricing/details/functions/) when estimating costs you might incur while running your functions in the Flex Consumtion plan.
5959
60-
For the examples in this section, consider the discounted preview pricing in this table for pay-as-you-go in East US.
61-
62-
| Mode | Meter | Free monthly grants | Consumption rates |
63-
| ------------| ----------------- | -------------------------- | ------------------------ |
64-
| On-demand | Execution time (GB-s) | `100,000` | `$0.000016` per GB-s |
65-
| On-demand | Executions (count) | `250,000` | `$0.20` per million executions |
66-
| Always ready | Baseline (idle) time (GB-s) | \- | `$0.000004` per GB-s |
67-
| Always ready | Execution time (GB-s) | \- | `$0.000009` per GB-s |
68-
| Always ready | Executions (count) | \- | `$0.20` per million executions |
69-
7060
Consider a function app that is comprised only of HTTP triggers with and these basic facts:
7161

7262
+ HTTP triggers handle 40 constant requests per second.

articles/azure-functions/functions-event-grid-blob-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This article shows how to create a function that runs based on events raised whe
1818
> * Create an event-based Blob Storage triggered function in a new project.
1919
> * Validate locally within Visual Studio Code using the Azurite emulator.
2020
> * Create a blob storage container in a new storage account in Azure.
21-
> * Create a function app in the Flex Consumption plan (preview).
21+
> * Create a function app in the Flex Consumption plan.
2222
> * Create an event subscription to the new blob container.
2323
> * Deploy and validate your function code in Azure.
2424

articles/azure-functions/functions-reference-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ As a Python developer, you might also be interested in these topics:
4646

4747
## [Hosting options](#tab/hosting)
4848

49-
+ [Flex Consumption plan](./flex-consumption-plan.md): Linux-based serverless hosting option that features full support for managed identities, virtual networks, and flexible deployments. This plan is currently in preview.
49+
+ [Flex Consumption plan](./flex-consumption-plan.md): Linux-based serverless hosting option that features full support for managed identities, virtual networks, and flexible deployments.
5050
+ [Container hosting options](container-concepts.md): Run and deploy your Python functions on Linux in a Docker container, including integrated [Azure Container Apps hosting](functions-container-apps-hosting.md).
5151
+ [Compare hosting options...](functions-scale.md)
5252

includes/functions-flex-consumption-billing-table.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.service: azure-functions
44
ms.custom:
55
- build-2024
66
ms.topic: include
7-
ms.date: 05/13/2024
7+
ms.date: 11/05/2024
88
ms.author: glenga
99
---
1010
There are two modes by which your costs are determined when running your apps in the Flex Consumption plan. Each mode is determined on a per-instance basis.
@@ -13,3 +13,5 @@ There are two modes by which your costs are determined when running your apps in
1313
| ---- | ---- |
1414
| **On Demand** | When running in _on demand_ mode, you are billed only for the amount of time your function code is executing on your available instances. In on demand mode, no minimum instance count is required. You're billed for:<br/><br/>• The total amount of memory provisioned while each on demand instance is _actively_ executing functions (in GB-seconds), minus a free grant of GB-s per month.<br/>• The total number of executions, minus a free grant (number) of executions per month. |
1515
| **Always ready** | You can configure one or more instances, assigned to specific trigger types (HTTP/Durable/Blob) and individual functions, that are always available to be able handle requests. When you have any always ready instances enabled, you're billed for:<br/><br/>• The total amount of memory provisioned across all of your always ready instances, known as the _baseline_ (in GB-seconds).<br/>• The total amount of memory provisioned during the time each always ready instance is _actively_ executing functions (in GB-seconds).<br/>• The total number of executions.<br/><br/>In always ready billing, there are no free grants. |
16+
17+
For the most up-to-date information on execution pricing, always ready baseline costs, and free grants for on demand executions, see the [Azure Functions pricing page](https://azure.microsoft.com/pricing/details/functions/#pricing).

0 commit comments

Comments
 (0)