Skip to content

Commit e5a5e08

Browse files
authored
Merge pull request #112715 from SnehaGunda/nodejs
Adding notes for container case sensitive names
2 parents 2469175 + d15edeb commit e5a5e08

11 files changed

+23
-12
lines changed

articles/cosmos-db/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@
518518
- name: Total Cost of Ownership (TCO)
519519
href: total-cost-ownership.md
520520
- name: Understand your bill
521+
displayName: free tier
521522
href: understand-your-bill.md
522523
- name: Optimize provisioned throughput cost
523524
displayName: request units, RUs, RU
@@ -531,6 +532,7 @@
531532
- name: Optimize multi-region cost
532533
href: optimize-cost-regions.md
533534
- name: Optimize development/testing cost
535+
displayName: free tier
534536
href: optimize-dev-test.md
535537
- name: Optimize cost with reserved capacity
536538
href: cosmos-db-reserved-capacity.md

articles/cosmos-db/analytics-usecases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: markjbrown
55
ms.author: mjbrown
66
ms.topic: conceptual
77
ms.service: cosmos-db
8-
ms.date: 09/26/2019
8+
ms.date: 04/20/2020
99
ms.reviewer: sngun
1010
---
1111

articles/cosmos-db/audit-control-plane-logs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to audit the control plane operations such as add a regio
44
author: SnehaGunda
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 03/16/2020
7+
ms.date: 04/23/2020
88
ms.author: sngun
99

1010
---

articles/cosmos-db/conflict-resolution-policies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article describes the conflict categories and conflict resolut
44
author: markjbrown
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 08/05/2019
7+
ms.date: 04/20/2020
88
ms.author: mjbrown
99
ms.reviewer: sngun
1010
---

articles/cosmos-db/consistency-levels-across-apis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: markjbrown
55
ms.author: mjbrown
66
ms.service: cosmos-db
77
ms.topic: conceptual
8-
ms.date: 07/23/2019
8+
ms.date: 04/23/2020
99
ms.reviewer: sngun
1010
---
1111

articles/cosmos-db/consistency-levels-choosing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: markjbrown
55
ms.author: mjbrown
66
ms.service: cosmos-db
77
ms.topic: conceptual
8-
ms.date: 07/23/2019
8+
ms.date: 04/23/2020
99
ms.reviewer: sngun
1010

1111
---

articles/cosmos-db/consistency-levels-tradeoffs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: markjbrown
55
ms.author: mjbrown
66
ms.service: cosmos-db
77
ms.topic: conceptual
8-
ms.date: 04/06/2020
8+
ms.date: 04/23/2020
99
ms.reviewer: sngun
1010
---
1111

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: markjbrown
55
ms.author: mjbrown
66
ms.service: cosmos-db
77
ms.topic: conceptual
8-
ms.date: 09/01/2019
8+
ms.date: 04/24/2020
99
ms.reviewer: sngun
1010

1111
---
@@ -60,9 +60,9 @@ An Azure Cosmos container is a schema-agnostic container of items. Items in a co
6060

6161
You can set [Time to Live (TTL)](time-to-live.md) on selected items in an Azure Cosmos container or for the entire container to gracefully purge those items from the system. Azure Cosmos DB automatically deletes the items when they expire. It also guarantees that a query performed on the container doesn't return the expired items within a fixed bound. To learn more, see [Configure TTL on your container](how-to-time-to-live.md).
6262

63-
You can use [change feed](change-feed.md) to subscribe to the operations log that is managed for each logical partition of your container. Change feed provides the log of all the updates performed on the container, along with the before and after images of the items. For more information, see [Build reactive applications by using change feed](serverless-computing-database.md). You can also configure the retention duration for the change feed by using the change feed policy on the container.
63+
You can use [change feed](change-feed.md) to subscribe to the operations log that is managed for each logical partition of your container. Change feed provides the log of all the updates performed on the container, along with the before and after images of the items. For more information, see [Build reactive applications by using change feed](serverless-computing-database.md). You can also configure the retention duration for the change feed by using the change feed policy on the container.
6464

65-
You can register [stored procedures, triggers, user-defined functions (UDFs)](stored-procedures-triggers-udfs.md), and [merge procedures](how-to-manage-conflicts.md) for your Azure Cosmos container.
65+
You can register [stored procedures, triggers, user-defined functions (UDFs)](stored-procedures-triggers-udfs.md), and [merge procedures](how-to-manage-conflicts.md) for your Azure Cosmos container.
6666

6767
You can specify a [unique key constraint](unique-keys.md) on your Azure Cosmos container. By creating a unique key policy, you ensure the uniqueness of one or more values per logical partition key. If you create a container by using a unique key policy, no new or updated items with values that duplicate the values specified by the unique key constraint can be created. To learn more, see [Unique key constraints](unique-keys.md).
6868

@@ -72,6 +72,9 @@ An Azure Cosmos container is specialized into API-specific entities as shown in
7272
| --- | --- | --- | --- | --- | --- |
7373
|Azure Cosmos container | Container | Table | Collection | Graph | Table |
7474

75+
> [!NOTE]
76+
> 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.
77+
7578
### Properties of an Azure Cosmos container
7679

7780
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:

articles/cosmos-db/gremlin-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: LuisBosquez
55
ms.service: cosmos-db
66
ms.subservice: cosmosdb-graph
77
ms.topic: overview
8-
ms.date: 06/24/2019
8+
ms.date: 04/23/2020
99
ms.author: lbosq
1010
---
1111

articles/cosmos-db/how-to-create-container.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ description: Learn how to create a container in Azure Cosmos DB by using Azure p
44
author: markjbrown
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 12/02/2019
7+
ms.date: 04/24/2020
88
ms.author: mjbrown
99
---
1010

1111
# Create an Azure Cosmos container
1212

1313
This article explains the different ways to create an Azure Cosmos container (collection, table, or graph). You can use Azure portal, Azure CLI, or supported SDKs for this. This article demonstrates how to create a container, specify the partition key, and provision throughput.
1414

15+
> [!NOTE]
16+
> 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.
17+
1518
## Create a container using Azure portal
1619

1720
### <a id="portal-sql"></a>SQL API

0 commit comments

Comments
 (0)