{"id":1477,"date":"2019-04-03T00:00:00","date_gmt":"2019-04-03T00:00:00","guid":{"rendered":"https:\/\/azure.microsoft.com\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads"},"modified":"2025-06-19T13:14:13","modified_gmt":"2025-06-19T20:14:13","slug":"announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/","title":{"rendered":"Announcing the Azure Functions Premium plan for enterprise serverless workloads"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale. With the Premium plan you can use pre-warmed instances to run your app with no delay after being idle, you can run on more powerful instances, and you can connect to VNETs, all while automatically scaling in response to load.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Huge thanks to everyone that participated in our private preview! <a href=\"https:\/\/www.symantec.com\/\">Symantec Corporation <\/a>and <a href=\"https:\/\/volparasolutions.com\/\">Volpara Solutions<\/a> are just a few of the companies that will benefit from the new features of the Premium plan.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">See below of a comparison of how the Premium plan improves on our existing dynamically scaling plan, the Consumption Plan. <img decoding=\"async\" title=\"SKU Comparison\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp\" alt=\"SKU Comparison table including the Consumption plan and the Premium plan in preview.\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"advanced-scale-controls-enable-customized-deployments\">Advanced scale controls enable customized deployments<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Instance size<\/strong> can now be specified with the Premium plan. You can select up to four <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/virtual-machines\/windows\/sizes-general#dv2-series\" target=\"_blank\" rel=\"noopener\">D-series<\/a> cores and 14 GB of memory. These instances are substantially more powerful than the <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/virtual-machines\/windows\/sizes-general#av2-series\" target=\"_blank\" rel=\"noopener\">A-series<\/a> instances available to functions using the Consumption plan, allowing you to run much more CPU or memory intensive workloads in individual invocations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"available-instance-sizes\">Available Instance sizes<\/h3>\n\n\n\n<figure class=\"wp-block-image has-custom-border\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/c8ed0bf3-8489-4dcb-967c-60b75023e36d.webp\" alt=\"Instance size graphic displaying details for EP1, EP2, and EP3.\" style=\"border-radius:0px\" title=\"Scale levels\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Maximum Instances<\/strong> can now also be specified with the Premium plan. This is one of the most highly requested features and allows you to limit the maximum scale out of your Premium plan. Restricting max scale out can protect downstream resources from being overwhelmed by your functions and allows you to predict your maximum possible bill each month.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Minimum Instances<\/strong> can be specified in the Premium plan to allow you to pre-scale your application ahead of predicted demand. If you suspect an email campaign, sale, or any time gated event will cause your app to scale faster than it can replenish pre-warmed instances. You can increase your minimum instances to pre-load capacity.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We\u2019ve built a sample Durable Function that will move any <a href=\"https:\/\/aka.ms\/premium-plan-sample\" target=\"_blank\" rel=\"noopener\">function between the Consumption and Premium plan with pre-warmed instances on a schedule<\/a>, allowing you to optimize for the best cost.<\/p>\n\n\n\n<figure class=\"wp-block-image has-custom-border\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/1f391939-718c-4de3-93d0-ba205fa70494.webp\" alt=\"Durable Function that moves any function between the Consumption and Premium plan with pre-warmed instances on a schedule.\" style=\"border-radius:0px\" title=\"Sliders\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"connect-functions-to-vnet\">Connect Functions to VNET<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Premium plan allows dynamic scaling functions to connect to a VNET and securely access resources in a private network. This feature was previously only available by running Functions in an App Service Plan or App Service Environment, and is now available in a dynamically scaling model by using the Premium plan. Read more about <a href=\"https:\/\/aka.ms\/fxpremiumnetworking\" target=\"_blank\" rel=\"noopener\">VNET integration<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"pre-warmed-instances-let-you-avoid-cold-start\">Pre-warmed Instances let you avoid cold start<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">With the Functions Premium plan we are offering a solution to the delay when calling a serverless application for the first time: pre-warmed instances. This delay is commonly referred as cold start, and it\u2019s one of the most common problems amongst serverless developers. For more details on what cold start is and why it happens please refer to the blog post, \u201c<a href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/understanding-serverless-cold-start\/?ref=msdn\" target=\"_blank\" rel=\"noopener\">Understanding serverless cold start<\/a>.\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the Premium plan, we offer you the ability to specify a number of <strong>pre-warmed instances<\/strong> that are kept warm with your code ready to execute. When your application needs to scale, it first uses a pre-warmed instance with no cold start. Your app immediately pre-warms another instance in the background to replenish the buffer of pre-warmed instances. This model allows you to avoid any delay on the execution for the first request to an idle app, and also at each scaling point.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Today we only allow one pre-warmed instance per site, but we expect to open that up to higher numbers in the following weeks.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Keeping a pool of pre-warmed instances to scale into is one of the core advantages beyond existing workarounds. Today in the Consumption plan many developers work around cold start by implementing a \u201cpinger\u201d to constantly ping their application to keep it warm. While this does work for the first request, apps with pingers will still experience cold start as they scale out, since the new instances pulled to run the application won\u2019t be ready to execute the code immediately. We always keep the number of pre-warmed instances you\u2019ve requested ready as a buffer, so you\u2019ll never see cold-start delays so long as you\u2019re scaling slower than we can warm up instances.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"try-it-out-and-learn-more\">Try it out and learn more!<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Azure Functions Premium plan is available in preview today to try out! Here\u2019s what you can do to learn more about it:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">Check out <a href=\"https:\/\/aka.ms\/funcpremiumpreview\" target=\"_blank\" rel=\"noopener\">how to get started with the Premium plan<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Learn <a href=\"https:\/\/aka.ms\/premium-plan-sample\" target=\"_blank\" rel=\"noopener\">how to switch functions between Consumption and Premium plans<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Sign up for an <a href=\"https:\/\/azure.microsoft.com\/free\/serverless\" target=\"_blank\" rel=\"noopener\">Azure free account<\/a> if you don\u2019t have one yet, and try out the Azure Functions Premium plan.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Troubleshoot with the community and file any issues you run into on our <a href=\"https:\/\/github.com\/Azure\/azure-functions\/issues?q=is%3Aopen+is%3Aissue+label%3Apremium-plan\" target=\"_blank\" rel=\"noopener\">GitHub repo<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">Learn more about the Premium plan and other enterprise serverless features in the Mechanics Show below:<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image has-custom-border\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/a946ba27-0869-4770-a3df-bd19a593d119.webp\" alt=\"Hybrid enterprise serverless video thumbnail\" style=\"border-radius:0px\" title=\"Hybrid enterprise serverless video thumbnail\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","footnotes":"","msx_community_cta_settings":[]},"categories":[1467,1470,1485],"tags":[],"audience":[3055,3053,3056],"content-type":[1465],"product":[1536],"tech-community":[],"topic":[],"coauthors":[577],"class_list":["post-1477","post","type-post","status-publish","format-standard","hentry","category-compute","category-containers","category-internet-of-things","audience-developers","audience-it-decision-makers","audience-it-implementors","content-type-announcements","product-azure-functions","review-flag-alway-1680286580-106","review-flag-free-1680286579-836","review-flag-never-1680286580-606","review-flag-new-1680286579-546","review-flag-priva-1680286584-258"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Announcing the Azure Functions Premium plan for enterprise serverless workloads | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Announcing the Azure Functions Premium plan for enterprise serverless workloads | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Azure Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/microsoftazure\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-03T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-19T20:14:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp\" \/>\n<meta name=\"author\" content=\"Alex Karcher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@azure\" \/>\n<meta name=\"twitter:site\" content=\"@azure\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alex Karcher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/alex-karcher\/\",\"@type\":\"Person\",\"@name\":\"Alex Karcher\"}],\"headline\":\"Announcing the Azure Functions Premium plan for enterprise serverless workloads\",\"datePublished\":\"2019-04-03T00:00:00+00:00\",\"dateModified\":\"2025-06-19T20:14:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/\"},\"wordCount\":802,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp\",\"articleSection\":[\"Compute\",\"Containers\",\"Internet of things\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/\",\"name\":\"Announcing the Azure Functions Premium plan for enterprise serverless workloads | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp\",\"datePublished\":\"2019-04-03T00:00:00+00:00\",\"dateModified\":\"2025-06-19T20:14:13+00:00\",\"description\":\"We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Compute\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/compute\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Announcing the Azure Functions Premium plan for enterprise serverless workloads\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"name\":\"Microsoft Azure Blog\",\"description\":\"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.\",\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\",\"name\":\"Microsoft Azure Blog\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"width\":512,\"height\":512,\"caption\":\"Microsoft Azure Blog\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/microsoftazure\",\"https:\/\/x.com\/azure\",\"https:\/\/www.instagram.com\/microsoftdeveloper\/\",\"https:\/\/www.linkedin.com\/company\/16188386\",\"https:\/\/www.youtube.com\/user\/windowsazure\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117\",\"name\":\"shakir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"caption\":\"shakir\"},\"sameAs\":[\"https:\/\/azure.microsoft.com\"],\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Announcing the Azure Functions Premium plan for enterprise serverless workloads | Microsoft Azure Blog","description":"We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/","og_locale":"en_US","og_type":"article","og_title":"Announcing the Azure Functions Premium plan for enterprise serverless workloads | Microsoft Azure Blog","og_description":"We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2019-04-03T00:00:00+00:00","article_modified_time":"2025-06-19T20:14:13+00:00","og_image":[{"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp","type":"","width":"","height":""}],"author":"Alex Karcher","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Alex Karcher","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/alex-karcher\/","@type":"Person","@name":"Alex Karcher"}],"headline":"Announcing the Azure Functions Premium plan for enterprise serverless workloads","datePublished":"2019-04-03T00:00:00+00:00","dateModified":"2025-06-19T20:14:13+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/"},"wordCount":802,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp","articleSection":["Compute","Containers","Internet of things"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/","name":"Announcing the Azure Functions Premium plan for enterprise serverless workloads | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp","datePublished":"2019-04-03T00:00:00+00:00","dateModified":"2025-06-19T20:14:13+00:00","description":"We are very excited to announce the Azure Functions Premium plan in preview, our newest Functions hosting model! This plan enables a suite of long requested scaling and connectivity options without compromising on event-based scale.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#primaryimage","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/04\/20190403-pp1-SKUComparison_2.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-azure-functions-premium-plan-for-enterprise-serverless-workloads\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Compute","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/compute\/"},{"@type":"ListItem","position":3,"name":"Announcing the Azure Functions Premium plan for enterprise serverless workloads"}]},{"@type":"WebSite","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","name":"Microsoft Azure Blog","description":"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.","publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization","name":"Microsoft Azure Blog","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","width":512,"height":512,"caption":"Microsoft Azure Blog"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/microsoftazure","https:\/\/x.com\/azure","https:\/\/www.instagram.com\/microsoftdeveloper\/","https:\/\/www.linkedin.com\/company\/16188386","https:\/\/www.youtube.com\/user\/windowsazure"]},{"@type":"Person","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117","name":"shakir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4","url":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","caption":"shakir"},"sameAs":["https:\/\/azure.microsoft.com"],"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/"}]}},"msxcm_display_generated_audio":false,"msxcm_animated_featured_image":null,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Azure Blog","distributor_original_site_url":"https:\/\/azure.microsoft.com\/en-us\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1477","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/comments?post=1477"}],"version-history":[{"count":1,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1477\/revisions"}],"predecessor-version":[{"id":42532,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1477\/revisions\/42532"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=1477"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=1477"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=1477"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=1477"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=1477"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=1477"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=1477"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=1477"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=1477"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}