Skip to content

Commit 5dba4c3

Browse files
Merge pull request #295916 from cdpark/refresh-functions-overview
Feature 375938: Q&M: Freshness updates for key Functions articles -- Overview & versions
2 parents 1d5a42c + 110ce21 commit 5dba4c3

File tree

4 files changed

+64
-67
lines changed

4 files changed

+64
-67
lines changed
Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,54 @@
11
---
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.
44
ms.assetid: 01d6ca9f-ca3f-44fa-b0b9-7ffee115acd4
55
ms.topic: overview
6-
ms.date: 05/22/2023
6+
ms.date: 03/06/2025
77
ms.custom: devdivchpfy22, build-2023
8-
zone_pivot_groups: programming-languages-set-functions-lang-workers
98
---
109

11-
# Azure Functions overview
10+
# What is Azure Functions?
1211

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.
1413

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).
1815

1916
## Scenarios
2017

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.
2219

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.
2421

2522
| If you want to... | then...|
2623
| --- | --- |
2724
| [Process file uploads](./functions-scenarios.md#process-file-uploads) | Run code when a file is uploaded or changed in blob storage. |
2825
| [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. |
3128
| [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. |
3229
| [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. |
3532

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).
3734

3835
## Development lifecycle
3936

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.
4138

4239
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).
4340

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).
4542

4643
## Hosting options
4744

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).
4946

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.
5148

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.
5350

54-
## Next Steps
51+
## Related content
5552

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

Comments
 (0)