Skip to content

Commit a823cdd

Browse files
authored
Merge pull request #206888 from seesharprun/fix-hyperlinks
Cosmos DB | Fix hyperlinks that don't include "DB"
2 parents 3b86e5c + 6a696f3 commit a823cdd

8 files changed

+16
-16
lines changed

articles/cosmos-db/account-databases-containers-items.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Azure Cosmos DB is a fully managed platform-as-a-service (PaaS). To begin using
1616

1717
The Azure Cosmos account is the fundamental unit of global distribution and high availability. Your Azure Cosmos account contains a unique DNS name and you can manage an account by using the Azure portal or the Azure CLI, or by using different language-specific SDKs. For more information, see [how to manage your Azure Cosmos account](how-to-manage-database-account.md). For globally distributing your data and throughput across multiple Azure regions, you can add and remove Azure regions to your account at any time. You can configure your account to have either a single region or multiple write regions. For more information, see [how to add and remove Azure regions to your account](how-to-manage-database-account.md). You can configure the [default consistency](consistency-levels.md) level on an account.
1818

19-
## Elements in an Azure Cosmos account
19+
## Elements in an Azure Cosmos DB account
2020

2121
An Azure Cosmos container is the fundamental unit of scalability. You can virtually have an unlimited provisioned throughput (RU/s) and storage on a container. Azure Cosmos DB transparently partitions your container using the logical partition key that you specify in order to elastically scale your provisioned throughput and storage.
2222

@@ -30,7 +30,7 @@ The following image shows the hierarchy of different entities in an Azure Cosmos
3030

3131
:::image type="content" source="./media/account-databases-containers-items/cosmos-entities.png" alt-text="Azure Cosmos account entities" border="false":::
3232

33-
## Azure Cosmos databases
33+
## Azure Cosmos DB databases
3434

3535
You can create one or multiple Azure Cosmos databases under your account. A database is analogous to a namespace. A database is the unit of management for a set of Azure Cosmos containers. The following table shows how a database is mapped to various API-specific entities:
3636

@@ -52,7 +52,7 @@ You can interact with an Azure Cosmos database with Azure Cosmos APIs as describ
5252
|Create new database| Yes | Yes | Yes (database is mapped to a keyspace) | Yes | NA | NA |
5353
|Update database| Yes | Yes | Yes (database is mapped to a keyspace) | Yes | NA | NA |
5454

55-
## Azure Cosmos containers
55+
## Azure Cosmos DB containers
5656

5757
An Azure Cosmos container is the unit of scalability both for provisioned throughput and storage. A container is horizontally partitioned and then replicated across multiple regions. The items that you add to the container are automatically grouped into logical partitions, which are distributed across physical partitions, based on the partition key. The throughput on a container is evenly distributed across the physical partitions. To learn more about partitioning and partition keys, see [Partition data](partitioning-overview.md).
5858

@@ -86,7 +86,7 @@ A container is specialized into API-specific entities as shown in the following
8686
> [!NOTE]
8787
> When creating containers, make sure you don’t create two containers with the same name but different casing. That’s because some parts of the Azure platform are not case-sensitive, and this can result in confusion/collision of telemetry and actions on containers with such names.
8888
89-
### Properties of an Azure Cosmos container
89+
### Properties of an Azure Cosmos DB container
9090

9191
An Azure Cosmos container has a set of system-defined properties. Depending on which API you use, some properties might not be directly exposed. The following table describes the list of system-defined properties:
9292

@@ -103,7 +103,7 @@ An Azure Cosmos container has a set of system-defined properties. Depending on w
103103
|uniqueKeyPolicy | User-configurable | Used to ensure the uniqueness of one or more values in a logical partition. For more information, see [Unique key constraints](unique-keys.md). | Yes | No | No | No | Yes |
104104
|AnalyticalTimeToLive | User-configurable | Provides the ability to delete items automatically from a container after a set time period. For details, see [Time to Live](analytical-store-introduction.md). | Yes | No | Yes | No | No |
105105

106-
### Operations on an Azure Cosmos container
106+
### Operations on an Azure Cosmos DB container
107107

108108
An Azure Cosmos container supports the following operations when you use any of the Azure Cosmos APIs:
109109

@@ -115,7 +115,7 @@ An Azure Cosmos container supports the following operations when you use any of
115115
| Update a container | Yes | Yes | Yes | Yes | NA | NA |
116116
| Delete a container | Yes | Yes | Yes | Yes | NA | NA |
117117

118-
## Azure Cosmos items
118+
## Azure Cosmos DB items
119119

120120
Depending on which API you use, an Azure Cosmos item can represent either a document in a collection, a row in a table, or a node or edge in a graph. The following table shows the mapping of API-specific entities to an Azure Cosmos item:
121121

articles/cosmos-db/concepts-limits.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ You can provision throughput at a container-level or a database-level in terms o
2525

2626
| Resource | Limit |
2727
| --- | --- |
28-
| Maximum RUs per container ([dedicated throughput provisioned mode](account-databases-containers-items.md#azure-cosmos-containers)) | 1,000,000 <sup>1</sup> |
29-
| Maximum RUs per database ([shared throughput provisioned mode](account-databases-containers-items.md#azure-cosmos-containers)) | 1,000,000 <sup>1</sup> |
28+
| Maximum RUs per container ([dedicated throughput provisioned mode](account-databases-containers-items.md#azure-cosmos-db-containers)) | 1,000,000 <sup>1</sup> |
29+
| Maximum RUs per database ([shared throughput provisioned mode](account-databases-containers-items.md#azure-cosmos-db-containers)) | 1,000,000 <sup>1</sup> |
3030
| Maximum RUs per partition (logical & physical) | 10,000 |
3131
| Maximum storage across all items per (logical) partition | 20 GB <sup>2</sup>|
3232
| Maximum number of distinct (logical) partition keys | Unlimited |
@@ -78,8 +78,8 @@ In summary, here are the minimum provisioned RU limits when using manual through
7878

7979
| Resource | Limit |
8080
| --- | --- |
81-
| Minimum RUs per container ([dedicated throughput provisioned mode with manual throughput](./account-databases-containers-items.md#azure-cosmos-containers)) | 400 |
82-
| Minimum RUs per database ([shared throughput provisioned mode with manual throughput](./account-databases-containers-items.md#azure-cosmos-containers)) | 400 RU/s for first 25 containers. |
81+
| Minimum RUs per container ([dedicated throughput provisioned mode with manual throughput](./account-databases-containers-items.md#azure-cosmos-db-containers)) | 400 |
82+
| Minimum RUs per database ([shared throughput provisioned mode with manual throughput](./account-databases-containers-items.md#azure-cosmos-db-containers)) | 400 RU/s for first 25 containers. |
8383

8484
Cosmos DB supports programmatic scaling of throughput (RU/s) per container or database via the SDKs or portal.
8585

articles/cosmos-db/how-to-setup-cmk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ No, there's no charge to enable this feature.
433433
434434
All the data stored in your Azure Cosmos account is encrypted with the customer-managed keys, except for the following metadata:
435435
436-
- The names of your Azure Cosmos DB [accounts, databases, and containers](./account-databases-containers-items.md#elements-in-an-azure-cosmos-account)
436+
- The names of your Azure Cosmos DB [accounts, databases, and containers](./account-databases-containers-items.md#elements-in-an-azure-cosmos-db-account)
437437
438438
- The names of your [stored procedures](./stored-procedures-triggers-udfs.md)
439439

articles/cosmos-db/index-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.reviewer: jucocchi
1313
# Indexing in Azure Cosmos DB - Overview
1414
[!INCLUDE[appliesto-sql-api](includes/appliesto-sql-api.md)]
1515

16-
Azure Cosmos DB is a schema-agnostic database that allows you to iterate on your application without having to deal with schema or index management. By default, Azure Cosmos DB automatically indexes every property for all items in your [container](account-databases-containers-items.md#azure-cosmos-containers) without having to define any schema or configure secondary indexes.
16+
Azure Cosmos DB is a schema-agnostic database that allows you to iterate on your application without having to deal with schema or index management. By default, Azure Cosmos DB automatically indexes every property for all items in your [container](account-databases-containers-items.md#azure-cosmos-db-containers) without having to define any schema or configure secondary indexes.
1717

1818
The goal of this article is to explain how Azure Cosmos DB indexes data and how it uses indexes to improve query performance. It is recommended to go through this section before exploring how to customize [indexing policies](index-policy.md).
1919

articles/cosmos-db/sql/how-to-create-multiple-cosmos-db-triggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This article describes how you can configure multiple Azure Functions triggers f
2222

2323
When building serverless architectures with [Azure Functions](../../azure-functions/functions-overview.md), it's [recommended](../../azure-functions/performance-reliability.md#avoid-long-running-functions) to create small function sets that work together instead of large long running functions.
2424

25-
As you build event-based serverless flows using the [Azure Functions trigger for Cosmos DB](./change-feed-functions.md), you'll run into the scenario where you want to do multiple things whenever there is a new event in a particular [Azure Cosmos container](../account-databases-containers-items.md#azure-cosmos-containers). If actions you want to trigger, are independent from one another, the ideal solution would be to **create one Azure Functions triggers for Cosmos DB per action** you want to do, all listening for changes on the same Azure Cosmos container.
25+
As you build event-based serverless flows using the [Azure Functions trigger for Cosmos DB](./change-feed-functions.md), you'll run into the scenario where you want to do multiple things whenever there is a new event in a particular [Azure Cosmos container](../account-databases-containers-items.md#azure-cosmos-db-containers). If actions you want to trigger, are independent from one another, the ideal solution would be to **create one Azure Functions triggers for Cosmos DB per action** you want to do, all listening for changes on the same Azure Cosmos container.
2626

2727
## Optimizing containers for multiple Triggers
2828

articles/search/search-howto-index-cosmosdb-gremlin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Avoid port numbers in the endpoint URL. If you include the port number, the conn
9898

9999
## Add search fields to an index
100100

101-
In a [search index](search-what-is-an-index.md), add fields to accept the source JSON documents or the output of your custom query projection. Ensure that the search index schema is compatible with your graph. For content in Cosmos DB, your search index schema should correspond to the [Azure Cosmos DB items](../cosmos-db/account-databases-containers-items.md#azure-cosmos-items) in your data source.
101+
In a [search index](search-what-is-an-index.md), add fields to accept the source JSON documents or the output of your custom query projection. Ensure that the search index schema is compatible with your graph. For content in Cosmos DB, your search index schema should correspond to the [Azure Cosmos DB items](../cosmos-db/account-databases-containers-items.md#azure-cosmos-db-items) in your data source.
102102

103103
1. [Create or update an index](/rest/api/searchservice/create-index) to define search fields that will store data:
104104

articles/search/search-howto-index-cosmosdb-mongodb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Avoid port numbers in the endpoint URL. If you include the port number, the conn
103103
104104
## Add search fields to an index
105105
106-
In a [search index](search-what-is-an-index.md), add fields to accept the source JSON documents or the output of your custom query projection. Ensure that the search index schema is compatible with source data. For content in Cosmos DB, your search index schema should correspond to the [Azure Cosmos DB items](../cosmos-db/account-databases-containers-items.md#azure-cosmos-items) in your data source.
106+
In a [search index](search-what-is-an-index.md), add fields to accept the source JSON documents or the output of your custom query projection. Ensure that the search index schema is compatible with source data. For content in Cosmos DB, your search index schema should correspond to the [Azure Cosmos DB items](../cosmos-db/account-databases-containers-items.md#azure-cosmos-db-items) in your data source.
107107
108108
1. [Create or update an index](/rest/api/searchservice/create-index) to define search fields that will store data:
109109

articles/search/search-howto-index-cosmosdb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ SELECT DISTINCT VALUE c.name FROM c ORDER BY c.name
155155

156156
## Add search fields to an index
157157

158-
In a [search index](search-what-is-an-index.md), add fields to accept the source JSON documents or the output of your custom query projection. Ensure that the search index schema is compatible with source data. For content in Cosmos DB, your search index schema should correspond to the [Azure Cosmos DB items](../cosmos-db/account-databases-containers-items.md#azure-cosmos-items) in your data source.
158+
In a [search index](search-what-is-an-index.md), add fields to accept the source JSON documents or the output of your custom query projection. Ensure that the search index schema is compatible with source data. For content in Cosmos DB, your search index schema should correspond to the [Azure Cosmos DB items](../cosmos-db/account-databases-containers-items.md#azure-cosmos-db-items) in your data source.
159159

160160
1. [Create or update an index](/rest/api/searchservice/create-index) to define search fields that will store data:
161161

0 commit comments

Comments
 (0)