{"id":662,"date":"2020-05-11T00:00:00","date_gmt":"2020-05-11T00:00:00","guid":{"rendered":"https:\/\/azure.microsoft.com\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload"},"modified":"2025-06-29T23:29:01","modified_gmt":"2025-06-30T06:29:01","slug":"office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/","title":{"rendered":"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><i>This post is part 1 of a two-part series about <\/i><i>how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them. In part 1, we explore the challenges that led the Microsoft Office Licensing Service team to move from Azure Table storage to Azure Cosmos DB, and how it migrated its production workload to the new service. In <\/i><a href=\"https:\/\/azure.microsoft.com\/blog\/office-licensing-service-and-azure-cosmos-db-part-2-improved-performance-and-availability\" target=\"_blank\" rel=\"noopener\"><i>part 2<\/i><\/a><i>, we examine the outcomes resulting from the team\u2019s efforts.<\/i><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-challenge-limited-throughput-and-other-capabilities\">The challenge: Limited throughput and other capabilities<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">At Microsoft, the Office Licensing Service (OLS) supports activation of the Microsoft Office client on millions of devices around the world\u2014including Windows, Mac, tablets, and mobile. It stores information such as machine ID, product ID, activation count, expiration date, and more. OLS is accessed by the Office client more than more than 240 million times per day by users around the world, with the first call coming from the client upon license activation and then every 2-3 days thereafter as the client checks to make sure the license is still valid.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Until recently, OLS relied on Azure Table storage for its backend data store, which contained about 5 TB of data spread across 18 tables\u2014with separate tables used for different license categories such as consumer, enterprise, and OEM pre-installation.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In early 2018, after years of continued workload growth, the OLS service began approaching the point where it would require more throughput than Table storage could deliver. If the issue wasn\u2019t addressed, the inherent throughput limit of Table storage would begin to threaten overall service quality to the detriment of millions of users worldwide.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Danny Cheng, a software engineer at Microsoft, who leads the OLS development team explains:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>\u201cEach Table storage account has a fixed maximum throughput and doesn\u2019t scale past that. By 2018, OLS was running low on available storage throughput, and, given that we were already maintaining each table in its own Table storage account, there was no way for us to get more throughput to serve more requests from our customers. We were being throttled during peak usage hours for the OLS service, so we had to find a more scalable storage backend soon.<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>In looking for a long-term solution to its storage needs, the OLS team wanted more than just additional throughput. We wanted the ability to deploy OLS in different regions around the world, as a means of minimizing latency by putting copies of the service closer to where our users are. But with Table storage, geo-replication capabilities are fairly limited.\u201d<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The OLS team also wanted better disaster recovery. With Table storage, they were storing all data in multiple regions within the United States. All reads and writes went to the primary region, and there were no SLAs in place for replication to the two backup regions, which could take up to 60 minutes. If the primary region became unavailable, human intervention would be required and data loss would be likely.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>\u201cIf a region were to go down, it would be a real panic situation\u2014with 30 to 60 minutes of downtime and a similar window for data loss,\u201d says Cheng. <\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-solution-a-lift-and-shift-migration-to-azure-cosmos-db\">The solution: A lift-and-shift migration to Azure Cosmos DB<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The OLS team chose to move to <a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/cosmos-db\/\" target=\"_blank\" rel=\"noopener\">Azure Cosmos DB<\/a>, which offered a lift-and-shift migration path from Table storage\u2014making it easy to swap-in a premium backend service with turnkey global distribution, low latency, virtually unlimited scalability, guaranteed high availability, and more.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>\u201cAt first, when we realized we needed a new storage backend, it was intimidating in that we didn\u2019t know how much new code would be needed,\u201d says Cheng. \u201cWe looked at several storage options on Azure, and Azure Cosmos DB was the only one that met all our needs. And with its <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/table-introduction\" target=\"_blank\" rel=\"noopener\">Table API<\/a>, we wouldn\u2019t even need to write much new code. In many ways, it was an ideal lift-and-shift\u2014delivering the scalability we needed and lots of other benefits with little work.\u201d<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"design-decisions\">Design decisions<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In preparing to deploy Azure Cosmos DB, the OLS team had to make a few basic design decisions:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/consistency-levels\" target=\"_blank\" rel=\"noopener\">Consistency level<\/a>, which gave the team options for addressing the fundamental tradeoffs between read consistency and latency, availability, and throughput.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>\u201cWe picked strong consistency because some of our business logic requires reading from storage immediately after writing to it,\u201d explains Cheng.<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/partitioning-overview\" target=\"_blank\" rel=\"noopener\">Partition key<\/a>, which dictates how items within an Azure Cosmos DB container are divided into logical partitions\u2014and determines the ultimate scalability of the data store.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>\u201cWith the Azure Cosmos DB Table API, partition keys naturally map to what we had in Table storage\u2014so we were able to reuse the same partition key,\u201d says Cheng.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"migration-process\">Migration process<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Although Azure Cosmos DB offered a data migration tool, its use at that time would have entailed some downtime for the OLS service, which wasn\u2019t an option. <i>(<\/i><em>Note: Today you can do <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/cosmosdb-migrationchoices\" target=\"_blank\" rel=\"noopener\">live migrations without downtime<\/a>.) <\/em>To address this, the OLS team built a data migration solution that consisted of three components:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">A Data Migrator that moves current data from Table storage to Azure Cosmos DB.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">A Dual Writer that writes new database changes to both Table storage and Azure Cosmos DB.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">A Consistency Checker that catches any mismatches between Table storage and Azure Cosmos DB.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">The Data Migrator component is based on <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/table-import\" target=\"_blank\" rel=\"noopener\">the same one provided to Microsoft customers by the Azure Cosmos DB team<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>\u201cTo solve the downtime problem, we added Dual Writer and Consistency Checker components, which run on the same production servers as the OLS service itself,\u201d explains Cheng.<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The OLS team completed the migration process in late 2019. Today, Azure Cosmos DB is deployed to the same three regions as Table storage, which the team did to mimic the Table storage topology as closely as possible during the migration. Similarly, North Central US is the primary (read\/write) region while the other two regions are currently read-only. The Azure Cosmos DB environment has 18 tables containing 5 TB of data and consumes about 1 million <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/request-units\" target=\"_blank\" rel=\"noopener\">request units per second (RU\/s)<\/a>, which are the units used to reserve guaranteed database throughput in Azure Cosmos DB.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now that migration is complete, the team plans to turn on <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/how-to-multi-master\" target=\"_blank\" rel=\"noopener\">multi-master capabilities<\/a>, which will write-enable all regions instead of just the primary one. Tying into this, the team also plans to scale out globally by replicating its backend store to additional regions around the world\u2014as a means of improving latency from the perspective of the Office client by putting copies of the OLS data closer to where its users are.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In <a href=\"https:\/\/azure.microsoft.com\/blog\/office-licensing-service-and-azure-cosmos-db-part-2-improved-performance-and-availability\" target=\"_blank\" rel=\"noopener\">part 2<\/a> of this series, we examine the outcomes resulting from the team\u2019s efforts to build its new Office Licensing Service on Azure Cosmos DB.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"get-started-with-azure-cosmos-db-today\">Get started with Azure Cosmos DB today<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\"><p>Visit <u><a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/cosmos-db\/\" target=\"_blank\" rel=\"noopener\">Azure Cosmos DB<\/a><\/u>.<\/p><\/li>\n\n\n\n<li class=\"wp-block-list-item\">See <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cosmos-db\/table-introduction\" target=\"_blank\" rel=\"noopener\">Introduction to Azure Cosmos DB Table API<\/a>.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>This post is part 1 of a two-part series about how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them.<\/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":[1473,1485],"tags":[48],"audience":[3057,3055,3053,3056],"content-type":[1527],"product":[1538],"tech-community":[],"topic":[],"coauthors":[177],"class_list":["post-662","post","type-post","status-publish","format-standard","hentry","category-databases","category-internet-of-things","tag-big-data","audience-data-professionals","audience-developers","audience-it-decision-makers","audience-it-implementors","content-type-customer-stories","product-azure-cosmos-db","review-flag-1680286581-295","review-flag-1-1680286581-825","review-flag-2-1680286581-601","review-flag-3-1680286581-173","review-flag-5-1680286581-950","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>Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"This post is part 1 of a two-part series about how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them.\" \/>\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\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"This post is part 1 of a two-part series about how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/\" \/>\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=\"2020-05-11T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-30T06:29:01+00:00\" \/>\n<meta name=\"author\" content=\"Parul Matah\" \/>\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=\"Parul Matah\" \/>\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\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/parul-matah\/\",\"@type\":\"Person\",\"@name\":\"Parul Matah\"}],\"headline\":\"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload\",\"datePublished\":\"2020-05-11T00:00:00+00:00\",\"dateModified\":\"2025-06-30T06:29:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/\"},\"wordCount\":1135,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"keywords\":[\"Big Data\"],\"articleSection\":[\"Databases\",\"Internet of things\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/\",\"name\":\"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"datePublished\":\"2020-05-11T00:00:00+00:00\",\"dateModified\":\"2025-06-30T06:29:01+00:00\",\"description\":\"This post is part 1 of a two-part series about how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Databases\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/databases\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload\"}]},{\"@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":"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload | Microsoft Azure Blog","description":"This post is part 1 of a two-part series about how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them.","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\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/","og_locale":"en_US","og_type":"article","og_title":"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload | Microsoft Azure Blog","og_description":"This post is part 1 of a two-part series about how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2020-05-11T00:00:00+00:00","article_modified_time":"2025-06-30T06:29:01+00:00","author":"Parul Matah","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Parul Matah","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/parul-matah\/","@type":"Person","@name":"Parul Matah"}],"headline":"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload","datePublished":"2020-05-11T00:00:00+00:00","dateModified":"2025-06-30T06:29:01+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/"},"wordCount":1135,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"keywords":["Big Data"],"articleSection":["Databases","Internet of things"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/","name":"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"datePublished":"2020-05-11T00:00:00+00:00","dateModified":"2025-06-30T06:29:01+00:00","description":"This post is part 1 of a two-part series about how organizations use Azure Cosmos DB to meet real world needs, and the difference it\u2019s making to them.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/office-licensing-service-and-azure-cosmos-db-part-1-migrating-the-production-workload\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Databases","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/databases\/"},{"@type":"ListItem","position":3,"name":"Office Licensing Service and Azure Cosmos DB part 1: Migrating the production workload"}]},{"@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\/662","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=662"}],"version-history":[{"count":1,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/662\/revisions"}],"predecessor-version":[{"id":44409,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/662\/revisions\/44409"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=662"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=662"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=662"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=662"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=662"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=662"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}