|
1 | 1 | ---
|
2 |
| -title: Azure Functions Overview |
3 |
| -description: Learn how you can use Azure Functions to build robust serverless apps. |
| 2 | +title: Azure Functions overview |
| 3 | +description: Learn how you can use Azure Functions to build robust serverless apps without writing extra code. |
4 | 4 | ms.assetid: 01d6ca9f-ca3f-44fa-b0b9-7ffee115acd4
|
5 | 5 | ms.topic: overview
|
6 |
| -ms.date: 05/22/2023 |
| 6 | +ms.date: 03/06/2025 |
7 | 7 | ms.custom: devdivchpfy22, build-2023
|
8 |
| -zone_pivot_groups: programming-languages-set-functions-lang-workers |
9 | 8 | ---
|
10 | 9 |
|
11 |
| -# Azure Functions overview |
| 10 | +# What is Azure Functions? |
12 | 11 |
|
13 |
| -Azure Functions is a serverless solution that allows you to write less code, maintain less infrastructure, and save on costs. Instead of worrying about deploying and maintaining servers, the cloud infrastructure provides all the up-to-date resources needed to keep your applications running. |
| 12 | +Azure Functions is a serverless solution that allows you to build robust apps while using less code, and with less infrastructure and lower costs. Instead of worrying about deploying and maintaining servers, you can use the cloud infrastructure to provide all the up-to-date resources needed to keep your applications running. |
14 | 13 |
|
15 |
| -You focus on the code that matters most to you, in the most productive language for you, and Azure Functions handles the rest. |
16 |
| - |
17 |
| -For the best experience with the Functions documentation, choose your preferred development language from the list of native Functions languages at the top of the article. |
| 14 | +You focus on the code that matters most to you, in the most productive language for you, and Azure Functions handles the rest. For a list of supported languages, see [Supported languages in Azure Functions](supported-languages.md). |
18 | 15 |
|
19 | 16 | ## Scenarios
|
20 | 17 |
|
21 |
| -Functions provides a comprehensive set of event-driven [triggers and bindings](functions-triggers-bindings.md) that connect your functions to other services without having to write extra code. |
| 18 | +Functions provides a comprehensive set of event-driven [triggers and bindings](functions-triggers-bindings.md) that connect your functions to other services without having to write extra code. |
22 | 19 |
|
23 |
| -The following are a common, _but by no means exhaustive_, set of integrated scenarios that feature Functions. |
| 20 | +The following list includes common integrated scenarios that use Functions. |
24 | 21 |
|
25 | 22 | | If you want to... | then...|
|
26 | 23 | | --- | --- |
|
27 | 24 | | [Process file uploads](./functions-scenarios.md#process-file-uploads) | Run code when a file is uploaded or changed in blob storage. |
|
28 | 25 | | [Process data in real time](./functions-scenarios.md#real-time-stream-and-event-processing)| Capture and transform data from event and IoT source streams on the way to storage. |
|
29 |
| -| [Infer on data models](./functions-scenarios.md#machine-learning-and-ai)| Pull text from a queue and present it to various AI services for analysis and classification. | |
30 |
| -| [Run scheduled task](./functions-scenarios.md#run-scheduled-tasks)| Execute data clean-up code on pre-defined timed intervals. | |
| 26 | +| [Run AI inference](./functions-scenarios.md#machine-learning-and-ai)| Pull text from a queue and present it to various AI services for analysis and classification. | |
| 27 | +| [Run scheduled task](./functions-scenarios.md#run-scheduled-tasks)| Execute data clean-up code on predefined timed intervals. | |
31 | 28 | | [Build a scalable web API](./functions-scenarios.md#build-a-scalable-web-api)| Implement a set of REST endpoints for your web applications using HTTP triggers. |
|
32 | 29 | | [Build a serverless workflow](./functions-scenarios.md#build-a-serverless-workflow)| Create an event-driven workflow from a series of functions using Durable Functions. |
|
33 |
| -| [Respond to database changes](./functions-scenarios.md#respond-to-database-changes)| Run custom logic when a document is created or updated in [Azure Cosmos DB](/azure/cosmos-db/introduction). | |
34 |
| -| [Create reliable message systems](./functions-scenarios.md#create-reliable-message-systems)| Process message queues using Queue Storage, Service Bus, or Event Hubs. | |
| 30 | +| [Respond to database changes](./functions-scenarios.md#respond-to-database-changes)| Run custom logic when a document is created or updated in a database. | |
| 31 | +| [Create reliable message systems](./functions-scenarios.md#create-reliable-message-systems)| Process message queues using Azure Queue Storage, Service Bus, or Event Hubs. | |
35 | 32 |
|
36 |
| -These scenarios allow you to build event-driven systems using modern architectural patterns. For more information, see [Azure Functions Scenarios](functions-scenarios.md). |
| 33 | +These scenarios allow you to build event-driven systems using modern architectural patterns. For more information, see [Azure Functions scenarios](functions-scenarios.md). |
37 | 34 |
|
38 | 35 | ## Development lifecycle
|
39 | 36 |
|
40 |
| -With Functions, you write your function code in your preferred language using your favorite development tools and then deploy your code to the Azure cloud. Functions provides native support for developing in [C#, Java, JavaScript, PowerShell, Python](./supported-languages.md), plus the ability to use [more languages](./functions-custom-handlers.md), such as Rust and Go. |
| 37 | +With Functions, you write your function code in your preferred language using your favorite development tools, and then deploy your code to the Azure cloud. Functions provides native support for developing in [C#, Java, JavaScript, PowerShell, or Python](./supported-languages.md), plus the ability to use [custom handlers](./functions-custom-handlers.md) for other languages, such as Rust and Go. |
41 | 38 |
|
42 | 39 | Functions integrates directly with Visual Studio, Visual Studio Code, Maven, and other popular development tools to enable seamless debugging and [deployments](functions-deployment-technologies.md).
|
43 | 40 |
|
44 |
| -Functions also integrates with Azure Monitor and Azure Application Insights to provide comprehensive runtime telemetry and analysis of your [functions in the cloud](functions-monitoring.md). |
| 41 | +Functions also integrates with Azure Monitor and Azure Application Insights to provide comprehensive monitoring and analysis of your [functions in the cloud](functions-monitoring.md). |
45 | 42 |
|
46 | 43 | ## Hosting options
|
47 | 44 |
|
48 |
| -Functions provides a variety of [hosting options](functions-scale.md#overview-of-plans) for your business needs and application workload. [Event-driven scaling hosting options](./event-driven-scaling.md) range from fully serverless, where you only pay for execution time (Consumption plan), to always warm instances kept ready for fastest response times (Premium plan). |
| 45 | +Functions provides various [hosting options](functions-scale.md) for your business needs and application workload. [Event-driven scaling hosting options](event-driven-scaling.md) range from fully serverless, where you only pay for execution time (Consumption plan), to always-warm instances kept ready for the fastest response times (Premium plan). |
49 | 46 |
|
50 |
| -When you have excess App Service hosting resources, you can host your functions in an existing App Service plan. This kind of Dedicated hosting plan is also a good choice when you need predictable scaling behaviors and costs from your functions. |
| 47 | +When you have excess App Service hosting resources, you can host your functions in an existing App Service plan. This kind of Dedicated hosting plan is also a good choice when you need predictable scaling behaviors and costs from your functions. |
51 | 48 |
|
52 |
| -If you want complete control over your functions runtime environment and dependencies, you can even deploy your functions in containers that you can fully customize. Your custom containers can be hosted by Functions, deployed as part of a microservices architecture in Azure Container Apps, or even self-hosted in Kubernetes. |
| 49 | +If you want complete control over your runtime environment and dependencies, you can even deploy your functions in containers that you can fully customize. Your custom containers can be hosted by Functions, deployed as part of a microservices architecture in Azure Container Apps, or even self-hosted in Kubernetes. |
53 | 50 |
|
54 |
| -## Next Steps |
| 51 | +## Related content |
55 | 52 |
|
56 |
| -> [!div class="nextstepaction"] |
57 |
| -> [Azure Functions Scenarios](./functions-scenarios.md) |
58 |
| -> [Get started through lessons, samples, and interactive tutorials](./functions-get-started.md) |
| 53 | +- [Azure Functions scenarios](functions-scenarios.md) |
| 54 | +- [Get started with Azure Functions](functions-get-started.md) |
0 commit comments