{"id":1739,"date":"2019-01-31T00:00:00","date_gmt":"2019-01-31T00:00:00","guid":{"rendered":"https:\/\/azure.microsoft.com\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse"},"modified":"2025-06-12T05:36:03","modified_gmt":"2025-06-12T12:36:03","slug":"announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/","title":{"rendered":"Announcing the general availability of Query Store for Azure SQL Data Warehouse"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Since our <a href=\"https:\/\/azure.microsoft.com\/blog\/automatic-performance-monitoring-in-azure-sql-data-warehouse-with-query-store\/\" target=\"_blank\" rel=\"noreferrer noopener\">preview announcement<\/a>, hundreds of customers have been enabling <a href=\"https:\/\/docs.microsoft.com\/sql\/relational-databases\/performance\/monitoring-performance-by-using-the-query-store\" target=\"_blank\" rel=\"noreferrer noopener\">Query Store<\/a> to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for <a href=\"https:\/\/azure.com\/sqldw\" target=\"_blank\" rel=\"noreferrer noopener\">Azure SQL Data Warehouse<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Query Store automatically captures a history of queries, plans, and runtime statistics and retains them for your review when monitoring your data warehouse. Query Store separates data by time windows so you can see database usage patterns and understand when plan changes happen.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"top-three-reasons-to-use-query-store-right-now\">Top three reasons to use Query Store right now<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">1. <strong>Find the full text of any query<\/strong>: Using the <a href=\"https:\/\/docs.microsoft.com\/sql\/relational-databases\/system-catalog-views\/sys-query-store-query-transact-sql\" target=\"_blank\" rel=\"noreferrer noopener\">sys.query_store_query<\/a> and <a href=\"https:\/\/docs.microsoft.com\/sql\/relational-databases\/system-catalog-views\/sys-query-store-query-text-transact-sql\" target=\"_blank\" rel=\"noreferrer noopener\">sys.query_store_query_text<\/a> catalog views, you can see the full text of queries executed against your data warehouse over the last 7 days.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; auto-links: false; gutter: false; title: ; quick-code: false; notranslate\" title=\"\">\nSELECT\n     q.query_id\n     , t.query_sql_text\nFROM\n     sys.query_store_query q\n     JOIN sys.query_store_query_text t ON q.query_text_id = t.query_\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">2.<strong> Finding your top executing queries<\/strong>: Query Store tracks all query executions for your review. On a busy data warehouse, you may have thousands or millions of queries executed daily. Using the Query Store catalog views, you can get the top executing queries for further analysis:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; auto-links: false; gutter: false; title: ; quick-code: false; notranslate\" title=\"\">\nSELECT TOP 10\n       q.query_id                    [query_id]\n       , t.query_sql_text            [command]\n       , SUM(rs.count_executions)    [execution_count]\nFROM\n       sys.query_store_query q\n       JOIN sys.query_store_query_text t ON q.query_text_id = t.query_text_id\n       JOIN sys.query_store_plan p ON p.query_id = q.query_id\n       JOIN sys.query_store_runtime_stats rs ON rs.plan_id = p.plan_id\nGROUP BY\n       q.query_id , t.query_sql_text ORDER BY 3 DESC;\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">3. <strong>Finding the execution times for a query<\/strong>: Query also gathers runtime query statistics to help you focus on queries with variance in execution. The variance could be for a variety of reasons such as loading a bunch of new data.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; auto-links: false; gutter: false; title: ; quick-code: false; notranslate\" title=\"\">\nSELECT\n       q.query_id               [query_id]\n       , t.query_sql_text       [command]\n       , rs.avg_duration        [avg_duration]\n       , rs.min_duration        [min_duration]\n       , rs.max_duration        [max_duration]\nFROM\n       sys.query_store_query q\n       JOIN sys.query_store_query_text t ON q.query_text_id = t.query_text_id\n       JOIN sys.query_store_plan p ON p.query_id = q.query_id\n       JOIN sys.query_store_runtime_stats rs ON rs.plan_id = p.plan_id\nWHERE\n       q.query_id = 10\n       AND rs.avg_duration > 0;\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"get-started-now\">Get started now<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Query Store is available in all regions for all generations of SQL Data Warehouse with no additional charges. You can enable Query Store by running the <code>ALTER DATABASE SET QUERY_STORE = ON; <\/code>command.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To get started, you can read the <a href=\"https:\/\/docs.microsoft.com\/sql\/relational-databases\/performance\/monitoring-performance-by-using-the-query-store\" target=\"_blank\" rel=\"noreferrer noopener\">monitoring performance by using the Query Store<\/a> overview topic. A complete list of supported operations can be found in the <a href=\"https:\/\/docs.microsoft.com\/sql\/relational-databases\/system-catalog-views\/query-store-catalog-views-transact-sql\" target=\"_blank\" rel=\"noreferrer noopener\">Query Store Catalog Views<\/a> documentation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"next-steps\">Next steps<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Azure SQL Data Warehouse continues to lead in the areas of security, compliance, privacy, and auditing. For more information, refer to the whitepaper, \u201cGuide to enhancing privacy and addressing GDPR requirements with the Microsoft SQL platform,\u201d on <a href=\"https:\/\/www.microsoft.com\/en-us\/trustcenter\">Microsoft Trust Center<\/a>, or our documentation, \u201c<a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/sql-data-warehouse\/sql-data-warehouse-overview-manage-security\">Secure a database in SQL Data Warehouse<\/a>.\u201d<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">For more information on Query Store in Azure SQL Data Warehouse, refer to the article, \u201c<a href=\"https:\/\/docs.microsoft.com\/sql\/relational-databases\/performance\/monitoring-performance-by-using-the-query-store\">Monitoring performance by using the Query Store<\/a>,\u201d and the Query Store DMVs, such as <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/relational-databases\/system-catalog-views\/sys-query-store-query-transact-sql?view=sql-server-2017\">sys.query_store_query<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">For feature requests, please vote on our <a href=\"https:\/\/feedback.azure.com\/forums\/307516-sql-data-warehouse\">UserVoice<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">To get started today, <a href=\"https:\/\/docs.microsoft.com\/azure\/sql-data-warehouse\/create-data-warehouse-portal\">create an Azure SQL Data Warehouse<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">To stay up-to-date on the latest Azure SQL Data Warehouse news and features, follow us on Twitter <a href=\"https:\/\/twitter.com\/AzureSQLDW\">@AzureSQLDW<\/a>.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Since our preview announcement, hundreds of customers have been enabling Query Store to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for Azure SQL Data Warehouse.<\/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":[1474],"tags":[],"audience":[3054,3057,3053],"content-type":[1465],"product":[1477],"tech-community":[],"topic":[],"coauthors":[658],"class_list":["post-1739","post","type-post","status-publish","format-standard","hentry","category-analytics","audience-business-decision-makers","audience-data-professionals","audience-it-decision-makers","content-type-announcements","product-azure-synapse-analytics","review-flag-1680286581-56","review-flag-1-1680286581-825","review-flag-2-1680286581-601","review-flag-3-1680286581-173","review-flag-7-1680286581-146","review-flag-gener-1680286584-335","review-flag-new-1680286579-546"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Announcing the general availability of Query Store for Azure SQL Data Warehouse | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"Since our preview announcement, hundreds of customers have been enabling Query Store to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for Azure SQL Data Warehouse.\" \/>\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-general-availability-of-query-store-for-azure-sql-data-warehouse\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Announcing the general availability of Query Store for Azure SQL Data Warehouse | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"Since our preview announcement, hundreds of customers have been enabling Query Store to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for Azure SQL Data Warehouse.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/\" \/>\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-01-31T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-12T12:36:03+00:00\" \/>\n<meta name=\"author\" content=\"Matt Usher\" \/>\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=\"Matt Usher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 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-general-availability-of-query-store-for-azure-sql-data-warehouse\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/matt-usher\/\",\"@type\":\"Person\",\"@name\":\"Matt Usher\"}],\"headline\":\"Announcing the general availability of Query Store for Azure SQL Data Warehouse\",\"datePublished\":\"2019-01-31T00:00:00+00:00\",\"dateModified\":\"2025-06-12T12:36:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/\"},\"wordCount\":405,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"articleSection\":[\"Analytics\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/\",\"name\":\"Announcing the general availability of Query Store for Azure SQL Data Warehouse | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"datePublished\":\"2019-01-31T00:00:00+00:00\",\"dateModified\":\"2025-06-12T12:36:03+00:00\",\"description\":\"Since our preview announcement, hundreds of customers have been enabling Query Store to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for Azure SQL Data Warehouse.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Analytics\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/analytics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Announcing the general availability of Query Store for Azure SQL Data Warehouse\"}]},{\"@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 general availability of Query Store for Azure SQL Data Warehouse | Microsoft Azure Blog","description":"Since our preview announcement, hundreds of customers have been enabling Query Store to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for Azure SQL Data Warehouse.","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-general-availability-of-query-store-for-azure-sql-data-warehouse\/","og_locale":"en_US","og_type":"article","og_title":"Announcing the general availability of Query Store for Azure SQL Data Warehouse | Microsoft Azure Blog","og_description":"Since our preview announcement, hundreds of customers have been enabling Query Store to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for Azure SQL Data Warehouse.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2019-01-31T00:00:00+00:00","article_modified_time":"2025-06-12T12:36:03+00:00","author":"Matt Usher","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Matt Usher","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/matt-usher\/","@type":"Person","@name":"Matt Usher"}],"headline":"Announcing the general availability of Query Store for Azure SQL Data Warehouse","datePublished":"2019-01-31T00:00:00+00:00","dateModified":"2025-06-12T12:36:03+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/"},"wordCount":405,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"articleSection":["Analytics"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/","name":"Announcing the general availability of Query Store for Azure SQL Data Warehouse | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"datePublished":"2019-01-31T00:00:00+00:00","dateModified":"2025-06-12T12:36:03+00:00","description":"Since our preview announcement, hundreds of customers have been enabling Query Store to provide insight on query performance. We\u2019re excited to share the general availability of Query Store worldwide for Azure SQL Data Warehouse.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/announcing-the-general-availability-of-query-store-for-azure-sql-data-warehouse\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Analytics","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/analytics\/"},{"@type":"ListItem","position":3,"name":"Announcing the general availability of Query Store for Azure SQL Data Warehouse"}]},{"@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\/1739","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=1739"}],"version-history":[{"count":3,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1739\/revisions"}],"predecessor-version":[{"id":41612,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1739\/revisions\/41612"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=1739"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=1739"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=1739"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=1739"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=1739"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=1739"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=1739"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=1739"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=1739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}