Skip to content

Commit 3b2bc7b

Browse files
Merge pull request #228728 from seesharprun/cosmos-rename-how-to-model-partition-example
Cosmos DB | Rename `how-to-model-partition-example.md` to `model-partition-example.md`
2 parents 22d3b5d + 923a1a2 commit 3b2bc7b

27 files changed

+32
-27
lines changed

articles/cosmos-db/.openpublishing.redirection.cosmos-db.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@
6565
"redirect_url": "/azure/cosmos-db/nosql/samples-java",
6666
"redirect_document_id": true
6767
},
68+
{
69+
"source_path_from_root": "/articles/cosmos-db/nosql/how-to-model-partition-example.md",
70+
"redirect_url": "/azure/cosmos-db/nosql/model-partition-example",
71+
"redirect_document_id": true
72+
},
6873
{
6974
"source_path_from_root": "/articles/cosmos-db/nosql/sql-api-nodejs-samples.md",
7075
"redirect_url": "/azure/cosmos-db/nosql/samples-nodejs",

articles/cosmos-db/concepts-limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ An Azure Cosmos DB item can represent either a document in a collection, a row i
173173

174174
¹ Large document sizes up to 16 MB are supported with Azure Cosmos DB for MongoDB only. Read the [feature documentation](../cosmos-db/mongodb/feature-support-42.md#data-types) to learn more.
175175

176-
There are no restrictions on the item payloads (like number of properties and nesting depth), except for the length restrictions on partition key and ID values, and the overall size restriction of 2 MB. You may have to configure indexing policy for containers with large or complex item structures to reduce RU consumption. See [Modeling items in Azure Cosmos DB](how-to-model-partition-example.md) for a real-world example, and patterns to manage large items.
176+
There are no restrictions on the item payloads (like number of properties and nesting depth), except for the length restrictions on partition key and ID values, and the overall size restriction of 2 MB. You may have to configure indexing policy for containers with large or complex item structures to reduce RU consumption. See [Modeling items in Azure Cosmos DB](nosql/model-partition-example.md) for a real-world example, and patterns to manage large items.
177177

178178
## Per-request limits
179179

articles/cosmos-db/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ additionalContent:
5757
- title: Model your data
5858
links:
5959
- text: Data modeling and partitioning
60-
url: how-to-model-partition-example.md
60+
url: nosql/model-partition-example.md
6161
- text: Azure Cosmos DB service quotas
6262
url: concepts-limits.md
6363
- title: Analytics with Azure Synapse Link

articles/cosmos-db/mongodb/pre-migration-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The following Azure Cosmos DB configuration choices can't be modified or undone
166166
* In a similar way, the partitioning capability automatically adds capacity and rebalances the data accordingly. For more information on choosing the right partition key for your data, see [choosing a partition key](../partitioning-overview.md#choose-partitionkey).
167167
* Follow the guide for [Data modeling in Azure Cosmos DB](../modeling-data.md) to choose a data model.
168168
* Follow [Optimize provisioned throughput cost in Azure Cosmos DB](../optimize-cost-throughput.md#optimize-by-provisioning-throughput-at-different-levels) to choose between dedicated and shared throughput for each resource that you migrate
169-
* [How to model and partition data on Azure Cosmos DB using a real-world example](../how-to-model-partition-example.md) is a real-world example of sharding and data modeling to aid you in your decision-making process
169+
* [How to model and partition data on Azure Cosmos DB using a real-world example](../nosql/model-partition-example.md) is a real-world example of sharding and data modeling to aid you in your decision-making process
170170

171171
### Cost of ownership
172172

articles/cosmos-db/nosql/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
href: modeling-data.md
153153
- name: Modeling and partitioning - a real-world example
154154
displayName: model, partition, example
155-
href: how-to-model-partition-example.md
155+
href: model-partition-example.md
156156
- name: Synthetic partition key
157157
href: synthetic-partition-keys.md
158158
- name: Partitioning and horizontal scaling

articles/cosmos-db/nosql/change-feed-design-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For example, the change feed helps you perform the following tasks efficiently:
7070

7171
* Implement an application-level data tiering and archival. For example, you can store "hot data" in Azure Cosmos DB and age out "cold data" to other storage systems such as [Azure Blob Storage](../../storage/common/storage-introduction.md).
7272

73-
When you have to [denormalize data across partitions and containers](how-to-model-partition-example.md#v2-introducing-denormalization-to-optimize-read-queries
73+
When you have to [denormalize data across partitions and containers](model-partition-example.md#v2-introducing-denormalization-to-optimize-read-queries
7474
), you can read from your container's change feed as a source for this data replication. Real-time data replication with the change feed can only guarantee eventual consistency. You can [monitor how far the Change Feed Processor lags behind](how-to-use-change-feed-estimator.md) in processing changes in your Azure Cosmos DB container.
7575

7676
## Event sourcing

0 commit comments

Comments
 (0)