Microsoft windows azure service runtime

Azure Functions runtime versions overview

Azure Functions currently supports three versions of the runtime host: 3.x, 2.x, and 1.x. All three versions are supported for production scenarios.

Version 1.x is in maintenance mode and only supports development in the Azure portal, Azure Stack Hub portal, or locally on Windows computers. Enhancements are provided only in later versions.

This article details some of the differences between the various versions, how you can create each version, and how to change versions.

Languages

Starting with version 2.x, the runtime uses a language extensibility model, and all functions in a function app must share the same language. The language of functions in a function app is chosen when creating the app and is maintained in the FUNCTIONS_WORKER_RUNTIME setting.

The following table indicates which programming languages are currently supported in each runtime version.

Language 1.x 2.x 3.x
C# GA (.NET Framework 4.7) GA (.NET Core 2.2 1 ) GA (.NET Core 3.1)
Preview (.NET 5.0)
JavaScript GA (Node 6) GA (Node 10 & 8) GA (Node 14, 12, & 10)
F# GA (.NET Framework 4.7) GA (.NET Core 2.2 1 ) GA (.NET Core 3.1)
Java N/A GA (Java 8) GA (Java 11 & 8)
PowerShell N/A GA (PowerShell Core 6) GA (PowerShell 7 & Core 6)
Python N/A GA (Python 3.7 & 3.6) GA (Python 3.8, 3.7, & 3.6)
Preview (Python 3.9)
TypeScript N/A GA 2 GA 2

1 .NET class library apps targeting runtime version 2.x may now be run on .NET Core 3.1 in .NET Core 2.x compatibility mode. To learn more, see Functions v2.x considerations.
2 Supported through transpiling to JavaScript.

See the language-specific developer guide article for more details about supported language versions.
For information about planned changes to language support, see Azure roadmap.

Run on a specific version

By default, function apps created in the Azure portal and by the Azure CLI are set to version 3.x. You can modify this version as needed. You can only downgrade the runtime version to 1.x after you create your function app but before you add any functions. Moving between 2.x and 3.x is allowed even with apps that have existing functions. Before moving an app with existing functions from 2.x to 3.x, be aware of any breaking changes between 2.x and 3.x.

Before making a change to the major version of the runtime, you should first test your existing code by deploying to another function app running on the latest major version. This testing helps to make sure it runs correctly after the upgrade.

Downgrades from v3.x to v2.x aren’t supported. When possible, you should always run your apps on the latest supported version of the Functions runtime.

Changing version of apps in Azure

The version of the Functions runtime used by published apps in Azure is dictated by the FUNCTIONS_EXTENSION_VERSION application setting. The following major runtime version values are supported:

Don’t arbitrarily change this setting, because other app setting changes and changes to your function code may be required.

Pinning to a specific minor version

To resolve issues with your function app running on the latest major version, you have to pin your app to a specific minor version. This gives you time to get your app running correctly on the latest major version. The way that you pin to a minor version differs between Windows and Linux. To learn more, see How to target Azure Functions runtime versions.

Older minor versions are periodically removed from Functions. For the latest news about Azure Functions releases, including the removal of specific older minor versions, monitor Azure App Service announcements.

Pinning to version

.NET function apps running on version 2.x (

2 ) are automatically upgraded to run on .NET Core 3.1, which is a long-term support version of .NET Core 3. Running your .NET functions on .NET Core 3.1 allows you to take advantage of the latest security updates and product enhancements.

Any function app pinned to

2.0 continues to run on .NET Core 2.2, which no longer receives security and other updates. To learn more, see Functions v2.x considerations.

Migrating from 2.x to 3.x

Azure Functions version 3.x is highly backwards compatible to version 2.x. Many apps should be able to safely upgrade to 3.x without any code changes. While moving to 3.x is encouraged, be sure to run extensive tests before changing the major version in production apps.

Breaking changes between 2.x and 3.x

The following are the changes to be aware of before upgrading a 2.x app to 3.x.

JavaScript

Output bindings assigned through context.done or return values now behave the same as setting in context.bindings .

Timer trigger object is camelCase instead of PascalCase

Event Hub triggered functions with dataType binary will receive an array of binary instead of string .

The HTTP request payload can no longer be accessed via context.bindingData.req . It can still be accessed as an input parameter, context.req , and in context.bindings .

Node.js 8 is no longer supported and will not execute in 3.x functions.

.NET Core

The main differences between versions when running .NET class library functions is the .NET Core runtime. Functions version 2.x is designed to run on .NET Core 2.2 and version 3.x is designed to run on .NET Core 3.1.

Breaking changes introduced by .NET Core in version 3.1 and version 3.0, which aren’t specific to Functions but might still affect your app.

Due to support issues with .NET Core 2.2, function apps pinned to version 2 (

2 ) are essentially running on .NET Core 3.1. To learn more, see Functions v2.x compatibility mode.

Migrating from 1.x to later versions

You may choose to migrate an existing app written to use the version 1.x runtime to instead use a newer version. Most of the changes you need to make are related to changes in the language runtime, such as C# API changes between .NET Framework 4.7 and .NET Core. You’ll also need to make sure your code and libraries are compatible with the language runtime you choose. Finally, be sure to note any changes in trigger, bindings, and features highlighted below. For the best migration results, you should create a new function app in a new version and port your existing version 1.x function code to the new app.

While it’s possible to do an «in-place» upgrade by manually updating the app configuration, going from 1.x to a higher version includes some breaking changes. For example, in C#, the debugging object is changed from TraceWriter to ILogger . By creating a new version 3.x project, you start off with updated functions based on the latest version 3.x templates.

Changes in triggers and bindings after version 1.x

Starting with version 2.x, you must install the extensions for specific triggers and bindings used by the functions in your app. The only exception for this HTTP and timer triggers, which don’t require an extension. For more information, see Register and install binding extensions.

There are also a few changes in the function.json or attributes of the function between versions. For example, the Event Hub path property is now eventHubName . See the existing binding table for links to documentation for each binding.

Changes in features and functionality after version 1.x

A few features were removed, updated, or replaced after version 1.x. This section details the changes you see in later versions after having used version 1.x.

In version 2.x, the following changes were made:

Keys for calling HTTP endpoints are always stored encrypted in Azure Blob storage. In version 1.x, keys were stored in Azure File storage by default. When upgrading an app from version 1.x to version 2.x, existing secrets that are in file storage are reset.

The version 2.x runtime doesn’t include built-in support for webhook providers. This change was made to improve performance. You can still use HTTP triggers as endpoints for webhooks.

The host configuration file (host.json) should be empty or have the string «version»: «2.0» .

To improve monitoring, the WebJobs dashboard in the portal, which used the AzureWebJobsDashboard setting is replaced with Azure Application Insights, which uses the APPINSIGHTS_INSTRUMENTATIONKEY setting. For more information, see Monitor Azure Functions.

All functions in a function app must share the same language. When you create a function app, you must choose a runtime stack for the app. The runtime stack is specified by the FUNCTIONS_WORKER_RUNTIME value in application settings. This requirement was added to improve footprint and startup time. When developing locally, you must also include this setting in the local.settings.json file.

The default timeout for functions in an App Service plan is changed to 30 minutes. You can manually change the timeout back to unlimited by using the functionTimeout setting in host.json.

HTTP concurrency throttles are implemented by default for Consumption plan functions, with a default of 100 concurrent requests per instance. You can change this in the maxConcurrentRequests setting in the host.json file.

Because of .NET Core limitations, support for F# script (.fsx) functions has been removed. Compiled F# functions (.fs) are still supported.

The URL format of Event Grid trigger webhooks has been changed to https:///runtime/webhooks/ .

Locally developed application versions

You can make the following updates to function apps to locally change the targeted versions.

Visual Studio runtime versions

In Visual Studio, you select the runtime version when you create a project. Azure Functions tools for Visual Studio supports the three major runtime versions. The correct version is used when debugging and publishing based on project settings. The version settings are defined in the .csproj file in the following properties:

Version 3.x

Azure Functions 3.x and .NET requires the Microsoft.NET.Sdk.Functions extension be at least 3.0.0 .

Version 2.x
Version 1.x
Updating 2.x apps to 3.x in Visual Studio

You can open an existing function targeting 2.x and move to 3.x by editing the .csproj file and updating the values above. Visual Studio manages runtime versions automatically for you based on project metadata. However, it’s possible if you have never created a 3.x app before that Visual Studio doesn’t yet have the templates and runtime for 3.x on your machine. This may present itself with an error like «no Functions runtime available that matches the version specified in the project.» To fetch the latest templates and runtime, go through the experience to create a new function project. When you get to the version and template select screen, wait for Visual Studio to complete fetching the latest templates. After the latest .NET Core 3 templates are available and displayed, you can run and debug any project configured for version 3.x.

Version 3.x functions can only be developed in Visual Studio if using Visual Studio version 16.4 or newer.

VS Code and Azure Functions Core Tools

Azure Functions Core Tools is used for command-line development and also by the Azure Functions extension for Visual Studio Code. To develop against version 3.x, install version 3.x of the Core Tools. Version 2.x development requires version 2.x of the Core Tools, and so on. For more information, see Install the Azure Functions Core Tools.

For Visual Studio Code development, you may also need to update the user setting for the azureFunctions.projectRuntime to match the version of the tools installed. This setting also updates the templates and languages used during function app creation. To create apps in

3 you would update the azureFunctions.projectRuntime user setting to

Maven and Java apps

You can migrate Java apps from version 2.x to 3.x by installing the 3.x version of the core tools required to run locally. After verifying that your app works correctly running locally on version 3.x, update the app’s POM.xml file to modify the FUNCTIONS_EXTENSION_VERSION setting to

3 , as in the following example:

Bindings

Starting with version 2.x, the runtime uses a new binding extensibility model that offers these advantages:

Support for third-party binding extensions.

Decoupling of runtime and bindings. This change allows binding extensions to be versioned and released independently. You can, for example, opt to upgrade to a version of an extension that relies on a newer version of an underlying SDK.

A lighter execution environment, where only the bindings in use are known and loaded by the runtime.

With the exception of HTTP and timer triggers, all bindings must be explicitly added to the function app project, or registered in the portal. For more information, see Register binding extensions.

The following table shows which bindings are supported in each runtime version.

This table shows the bindings that are supported in the major versions of the Azure Functions runtime:

Value Runtime target
Type 1.x 2.x and higher 1 Trigger Input Output
Blob storage вњ” вњ” вњ” вњ” вњ”
Azure Cosmos DB вњ” вњ” вњ” вњ” вњ”
Dapr 3 вњ” вњ” вњ” вњ”
Event Grid вњ” вњ” вњ” вњ”
Event Hubs вњ” вњ” вњ” вњ”
HTTP & webhooks вњ” вњ” вњ” вњ”
IoT Hub вњ” вњ” вњ” вњ”
Kafka 2 вњ” вњ” вњ”
Mobile Apps вњ” вњ” вњ”
Notification Hubs вњ” вњ”
Queue storage вњ” вњ” вњ” вњ”
RabbitMQ 2 вњ” вњ” вњ”
SendGrid вњ” вњ” вњ”
Service Bus вњ” вњ” вњ” вњ”
SignalR вњ” вњ” вњ”
Table storage вњ” вњ” вњ” вњ”
Timer вњ” вњ” вњ”
Twilio вњ” вњ” вњ”

1 Starting with the version 2.x runtime, all bindings except HTTP and Timer must be registered. See Register binding extensions.

2 Triggers aren’t supported in the Consumption plan. Requires runtime-driven triggers.

3 Supported only in Kubernetes, IoT Edge, and other self-hosted modes only.

Function app timeout duration

The timeout duration of a function app is defined by the functionTimeout property in the host.json project file. The following table shows the default and maximum values in minutes for both plans and the different runtime versions:

Plan Runtime Version Default Maximum
Consumption 1.x 5 10
Consumption 2.x 5 10
Consumption 3.x 5 10
Premium 1.x 30 Unlimited
Premium 2.x 30 Unlimited
Premium 3.x 30 Unlimited
App Service 1.x Unlimited Unlimited
App Service 2.x 30 Unlimited
App Service 3.x 30 Unlimited

Regardless of the function app timeout setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This is because of the default idle timeout of Azure Load Balancer. For longer processing times, consider using the Durable Functions async pattern or defer the actual work and return an immediate response.

Next steps

For more information, see the following resources:

Читайте также:  Создание скрытого пользователя windows
Оцените статью