You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -106,7 +106,7 @@ The following tables compare AWS Lambda concepts, resources, and properties with
106
106
107
107
| AWS Lambda | Azure Functions |
108
108
|---|---|
109
-
| - Pay per use for the total invocation count and for the GB/s for each instance (with a fixed concurrency of 1) <br> - 1 ms increments <br> - 400,000 Gbps free tier | - Pay per use for the total invocation count and for the GB/s of each instance (with configurable concurrent invocations) <br> - 100 ms increments <br> - 100,000 Gbps free tier <br> - [Consumption-based costs](/azure/azure-functions/functions-consumption-costs#consumption-based-costs) |
109
+
| - Pay per use for the total invocation count and for the GB/s for each instance (with a fixed concurrency of 1) <br><br> - 1 ms increments <br><br> - 400,000 Gbps free tier | - Pay per use for the total invocation count and for the GB/s of each instance (with configurable concurrent invocations) <br><br> - 100 ms increments <br><br> - 100,000 Gbps free tier <br><br> - [Consumption-based costs](/azure/azure-functions/functions-consumption-costs#consumption-based-costs) |
110
110
111
111
### Source code storage
112
112
@@ -118,13 +118,13 @@ The following tables compare AWS Lambda concepts, resources, and properties with
118
118
119
119
| AWS Lambda feature | Azure Functions feature |
120
120
|---|---|
121
-
| - SAM CLI <br> - [LocalStack](https://github.com/localstack/localstack) | - Azure Functions Core Tools <br> - Visual Studio Code <br> - Visual Studio <br> - GitHub Codespaces <br> - VSCode.dev <br> - Maven <br> - [Code and test Azure Functions locally](/azure/azure-functions/functions-develop-local) |
121
+
| - SAM CLI <br><br> - [LocalStack](https://github.com/localstack/localstack) | - Azure Functions Core Tools <br><br> - Visual Studio Code <br><br> - Visual Studio <br><br> - GitHub Codespaces <br><br> - VSCode.dev <br><br> - Maven <br><br> - [Code and test Azure Functions locally](/azure/azure-functions/functions-develop-local) |
122
122
123
123
### Deployment
124
124
125
125
| Feature | AWS Lambda | Azure Functions |
126
126
|---|---|---|
127
-
| Deployment package | - ZIP file <br> - Container image | ZIP file (For container image deployment, use the dedicated or premium SKU.) |
127
+
| Deployment package | - ZIP file <br><br> - Container image | ZIP file (For container image deployment, use the dedicated or premium SKU.) |
128
128
| ZIP file size (console) | 50 MB maximum | 500 MB maximum for ZIP deployment |
129
129
| ZIP file size (CLI/SDK) | 250 MB maximum for ZIP deployment, 500 MB maximum for unzipped | 500 MB maximum for ZIP deployment |
130
130
| Container image size | 10 GB maximum | Container support with flexible storage via Azure |
Copy file name to clipboardExpand all lines: articles/azure-functions/migration/lambda-functions-migration-migrate.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -246,7 +246,7 @@ The following snippets are examples of common SDK code. The AWS Lambda code maps
246
246
:::column-end:::
247
247
:::column span="":::
248
248
249
-
Azure Functions code (Trigger)
249
+
Azure Functions code (trigger)
250
250
251
251
```
252
252
import { app } from '@azure/functions';
@@ -344,7 +344,9 @@ Deployments follow a single path. After you build your project code and zip it i
344
344
### Generate IaC files
345
345
346
346
- Use tools like Bicep, Azure Resource Manager templates, or Terraform to create IaC files to deploy Azure resources.
347
+
347
348
- Define resources such as Azure Functions, storage accounts, and networking components in your IaC files.
349
+
348
350
- Use this [IaC samples repository](https://github.com/Azure-Samples/azure-functions-flex-consumption-samples/tree/main/IaC) for samples that use Azure Functions recommendations and best practices.
0 commit comments