Skip to content

Commit 71dbba3

Browse files
authored
Merge pull request #277543 from Saisang/sai-includescleanup-cosmos-db
[GREAT DIVIDE] Includes clean up cosmos-db
2 parents ef98598 + 41fbaec commit 71dbba3

22 files changed

+52
-52
lines changed

includes/passwordless/cosmos-nosql/cosmos-nosql-create-assign-roles.md renamed to articles/cosmos-db/includes/cosmos-nosql-create-assign-roles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: include file
1212

1313
When developing locally with passwordless authentication, make sure the user account that connects to Cosmos DB is assigned a role with the correct permissions to perform data operations. Currently, Azure Cosmos DB for NoSQL doesn't include built-in roles for data operations, but you can create your own using the Azure CLI or PowerShell.
1414

15-
Roles consist of a collection of permissions or actions that a user is allowed to perform, such as read, write, and delete. You can read more about [configuring role-based access control (RBAC)](../../../articles/cosmos-db/how-to-setup-rbac.md) in the Cosmos DB security configuration documentation.
15+
Roles consist of a collection of permissions or actions that a user is allowed to perform, such as read, write, and delete. You can read more about [configuring role-based access control (RBAC)](../how-to-setup-rbac.md) in the Cosmos DB security configuration documentation.
1616

1717
## Create the custom role
1818

File renamed without changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
author: IEvangelist
3+
ms.service: cloud-services
4+
ms.topic: include
5+
ms.date: 09/28/2020
6+
ms.author: dapine
7+
---
8+
9+
If you don't have an [Azure subscription](../../guides/developer/azure-developer-guide.md#understanding-accounts-subscriptions-and-billing), create a [free account](https://azure.microsoft.com/free/java) before you begin.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
author: seesharprun
3+
ms.author: sidandrews
4+
ms.reviewer: mjbrown
5+
ms.service: cosmos-db
6+
ms.subservice: table
7+
ms.topic: include
8+
ms.date: 02/05/2024
9+
---
10+
11+
> [!div class="op_single_selector"]
12+
>
13+
> - [.NET](../tutorial-develop-table-dotnet.md)
14+
> - [Node.js](../table-storage-how-to-use-nodejs.md)
15+
> - [Java](../table-storage-how-to-use-java.md)
16+
> - [C++](../table-storage-how-to-use-c-plus.md)
17+
> - [PHP](../table-storage-how-to-use-php.md)
18+
> - [Go](../table-storage-how-to-use-go.md)
19+
>

includes/storage-table-cosmos-comparison.md renamed to articles/cosmos-db/includes/storage-table-cosmos-comparison.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ If you currently use Azure Table Storage, you gain the following benefits by mov
1414
|Feature | Azure Table Storage | Azure Cosmos DB for Table |
1515
| --- | --- | --- |
1616
| Latency | Fast, but no upper bounds on latency. | Single-digit millisecond latency for reads and writes, backed with <10-ms latency reads and <15-ms latency writes at the 99th percentile, at any scale, anywhere in the world. |
17-
| Throughput | Variable throughput model. Tables have a scalability limit of 20,000 operations per second. | Highly scalable with [dedicated reserved throughput per table](../articles/cosmos-db/request-units.md) that's backed by SLAs. Accounts have no upper limit on throughput and support >10 million operations per second per table in provisioned throughput mode. |
18-
| Global distribution | Single region with one optional readable secondary read region for high availability that supports automatic and manual account failover. | [Turnkey global distribution](../articles/cosmos-db/distribute-data-globally.md) from one to 30+ regions. Support for [service-managed and manual failovers](../articles/cosmos-db/high-availability.md) at any time, anywhere in the world. |
17+
| Throughput | Variable throughput model. Tables have a scalability limit of 20,000 operations per second. | Highly scalable with [dedicated reserved throughput per table](../request-units.md) that's backed by SLAs. Accounts have no upper limit on throughput and support >10 million operations per second per table in provisioned throughput mode. |
18+
| Global distribution | Single region with one optional readable secondary read region for high availability that supports automatic and manual account failover. | [Turnkey global distribution](../distribute-data-globally.md) from one to 30+ regions. Support for [service-managed and manual failovers](../high-availability.md) at any time, anywhere in the world. |
1919
| Indexing | Only primary index on `PartitionKey` and `RowKey`. No secondary indexes. | Automatic and complete indexing on all properties, no index management. |
2020
| Query | Query execution uses index for primary key, and scans otherwise. | Queries can take advantage of automatic indexing on properties for fast query times. |
21-
| Consistency | Strong within primary region. Eventual within secondary region. | [Five well-defined consistency levels](../articles/cosmos-db/consistency-levels.md) to trade off availability, latency, throughput, and consistency based on your application needs. |
22-
| Pricing | Consumption-based. | Available in both [consumption-based](../articles/cosmos-db/serverless.md) and [provisioned capacity](../articles/cosmos-db/set-throughput.md) modes. |
21+
| Consistency | Strong within primary region. Eventual within secondary region. | [Five well-defined consistency levels](../consistency-levels.md) to trade off availability, latency, throughput, and consistency based on your application needs. |
22+
| Pricing | Consumption-based. | Available in both [consumption-based](../serverless.md) and [provisioned capacity](../set-throughput.md) modes. |
2323
| SLAs | 99.99% availability. | 99.99% availability SLA for all single region accounts and all multi-region accounts with relaxed consistency, and 99.999% read availability on all multi-region database accounts [Industry-leading comprehensive SLAs](https://azure.microsoft.com/support/legal/sla/cosmos-db/) on general availability. |

articles/cosmos-db/mongodb/tutorial-develop-nodejs-part-4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In this tutorial section, you can either use the Azure Cloud Shell (in your inte
3434

3535
[!INCLUDE [cloud-shell-try-it](~/reusable-content/ce-skilling/azure/includes/cloud-shell-try-it.md)]
3636

37-
[!INCLUDE [Log in to Azure](../../../includes/login-to-azure.md)]
37+
[!INCLUDE [Log in to Azure](../includes/login-to-azure.md)]
3838

3939
[!INCLUDE [Create resource group](~/reusable-content/ce-skilling/azure/includes/app-service-web-create-resource-group.md)]
4040

articles/cosmos-db/nosql/migrate-passwordless.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following tutorial explains how to migrate an existing application to connec
1919

2020
## Configure roles and users for local development authentication
2121

22-
[!INCLUDE [cosmos-nosql-create-assign-roles](../../../includes/passwordless/cosmos-nosql/cosmos-nosql-create-assign-roles.md)]
22+
[!INCLUDE [cosmos-nosql-create-assign-roles](../includes/cosmos-nosql-create-assign-roles.md)]
2323

2424
### Sign-in to Azure locally
2525

articles/cosmos-db/table/how-to-use-c-plus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ ms.author: sidandrews
1212
# How to use Azure Table storage and Azure Cosmos DB for Table with C++
1313
[!INCLUDE[Table](../includes/appliesto-table.md)]
1414

15-
[!INCLUDE [storage-selector-table-include](../../../includes/storage-selector-table-include.md)]
16-
[!INCLUDE [storage-table-applies-to-storagetable-and-cosmos](../../../includes/storage-table-applies-to-storagetable-and-cosmos.md)]
15+
[!INCLUDE [storage-selector-table-include](../includes/storage-selector-table-include.md)]
16+
[!INCLUDE [storage-table-applies-to-storagetable-and-cosmos](../includes/storage-table-applies-to-storagetable-and-cosmos.md)]
1717

1818
This guide shows you common scenarios by using the Azure Table storage service or Azure Cosmos DB for Table. The samples are written in C++ and use the [Azure Storage Client Library for C++](https://github.com/Azure/azure-storage-cpp/blob/master/README.md). This article covers the following scenarios:
1919

articles/cosmos-db/table/how-to-use-go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ms.author: sidandrews
1515

1616
[!INCLUDE[Table](../includes/appliesto-table.md)]
1717

18-
[!INCLUDE [storage-selector-table-include](../../../includes/storage-selector-table-include.md)]
19-
[!INCLUDE [storage-table-applies-to-storagetable-and-cosmos](../../../includes/storage-table-applies-to-storagetable-and-cosmos.md)]
18+
[!INCLUDE [storage-selector-table-include](../includes/storage-selector-table-include.md)]
19+
[!INCLUDE [storage-table-applies-to-storagetable-and-cosmos](../includes/storage-table-applies-to-storagetable-and-cosmos.md)]
2020

2121
In this article, you'll learn how to create, list, and delete Azure Tables and Table entities with the Azure SDK for Go.
2222

0 commit comments

Comments
 (0)