摘要:
《Windows Azure Platform 系列文章目录》 为什么要使用Azure Key Vault? 我们假设在微软云Azure上有1个场景,在Windows VM里面有1个.NET应用程序,这个.NET应用程序通过ADO.NET链接字符串,链接到后端的SQL VM。 如果Windows V 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 昨天客户正好提到这个问题,现在记录一下。 我们在使用传统的SQL Server,会使用Table Partition,这个功能在云端的Azure SQL Database也是可以实现的。 1.首先我们创建一个Azure SQL Data 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 本文介绍的是国内由世纪互联运维的Azure China。 EA Portal的管理url是:https://ea.azure.cn,这个URL不同于我们管理Azure 资源的portal:https://portal.azure.cn 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 我们在使用NoSQL的时候,如Azure Cosmos DB,可以非常快速的查询非结构化,或半结构化的数据。我们需要花一些时间,研究Cosmos DB的数据建模,来保证查询性能和可扩展性,同事降低成本。 阅读完这篇文章后,我们将学会: 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 The SQL API supports the following aggregate functions. SUM and AVG operate on numeric values, and COUNT, MIN, and MAX 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 Azure Cosmos DB兼容MongoDB的API,下表将帮助我们更容易理解MongoDB中的一些概念: 通过下图实例,我们也可以更直观的了解Mongo中的一些概念: 文档Document 文档是一组键值(key-value)对( 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 Azure Cosmos DB的体系结构分为以下几个部分: 1.Database Accounts Database Account就是1个可以访问的namespace命名空间 2.Database Database就是CosmosDB 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 在Azure Cosmos DB中,还支持Unique Key Constraints(唯一键约束)。 我们可以在Azure CosmosDB的一个或者多个字段(Field),建立Unique Key Constraints 通过使用C 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 本次将介绍Cosmos DB的性能指标RU (Request Unit)。 总的来说,我们设置的Azure CosmosDB RU数值越高,则表示该CosmosDB的读写的性能越好。但是每个小时的单价越贵。 Azure CosmosDB 阅读全文
摘要:
《Windows Azure Platform 系列文章目录》 Azure Cosmos DB使用分区键(Partition Key),来对数据进行水平缩放(Horizon Scale),缩放后的数据子集被称为逻辑分区(Logical partitions)。在同一个逻辑分区的数据都有相同的分区键( 阅读全文