Skip to content

Commit 5722a01

Browse files
committed
fix acrolynx issues
1 parent 1f9a44e commit 5722a01

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This article explains how to query a container (collection, graph, or table) in
1414

1515
## In-partition query
1616

17-
When you query data from containers, if the query has a partition key filter specified, Azure Cosmos DB handles the query automatically. It routes the query to the [physical partitions](partition-data.md#physical-partitions) corresponding to the partition key values specified in the filter.
17+
When you query data from containers, if the query has a partition key filter specified, Azure Cosmos DB automatically optimizes the query. It routes the query to the [physical partitions](partition-data.md#physical-partitions) corresponding to the partition key values specified in the filter.
1818

1919
For example, consider the below query with an equality filter on `DeviceId`. This query has an equality filter that includes `DeviceId`. If we run this query on a container partitioned on `DeviceId`, this query will filter to a single partition.
2020

@@ -28,7 +28,7 @@ As with the earlier example, this query will also filter to a single partition.
2828
SELECT * FROM c WHERE c.DeviceId = 'XMS-0001' AND c.Location = 'Seattle'
2929
```
3030

31-
Here's a query that has a range filter on the partition key and will not be scoped to a single physical partition. In order to be an in-partition query, the query must have an equality filter that includes the partition key:
31+
Here's a query that has a range filter on the partition key and won't be scoped to a single physical partition. In order to be an in-partition query, the query must have an equality filter that includes the partition key:
3232

3333
```sql
3434
SELECT * FROM c WHERE c.DeviceId > 'XMS-0001'
@@ -44,27 +44,27 @@ The following query doesn't have a filter on the partition key (`DeviceId`). The
4444
4545
Each physical partition has its own index. Therefore, when you run a cross-partition query on a container, you are effectively running one query *per* physical partition. Azure Cosmos DB will automatically aggregate results across different physical partitions.
4646
47-
The indexes in different physical partitions are completely independent from one another. There is no global index in Azure Cosmos DB.
47+
The indexes in different physical partitions are independent from one another. There is no global index in Azure Cosmos DB.
4848
4949
## Parallel cross-partition query
5050
5151
The Azure Cosmos DB SDKs 1.9.0 and later support parallel query execution options. Parallel cross-partition queries allow you to perform low latency, cross-partition queries.
5252
5353
You can manage parallel query execution by tuning the following parameters:
5454
55-
- **MaxConcurrency**: Sets the maximum number of simultaneous network connections to the container's partitions. If you set this property to `-1`, the SDK manages the degree of parallelism. If the `MaxConcurrency` is not specified or set to `0`, there is a single network connection to the container's partitions.
55+
- **MaxConcurrency**: Sets the maximum number of simultaneous network connections to the container's partitions. If you set this property to `-1`, the SDK manages the degree of parallelism. If the `MaxConcurrency` set to `0`, there is a single network connection to the container's partitions.
5656
5757
- **MaxBufferedItemCount**: Trades query latency versus client-side memory utilization. If this option is omitted or to set to -1, the SDK manages the number of items buffered during parallel query execution.
5858
5959
Because of the Azure Cosmos DB's ability to parallelize cross-partition queries, query latency will generally scale well as you add [physical partitions](partition-data.md#physical-partitions). However, RU charge will increase significantly as the total number of physical partitions increases.
6060

61-
When you run a cross-partition query, you are essentially doing a separate query per individual physical partition. While cross-partition queries queries will utilize the index, if available, they are still not nearly as efficient as in-partition queries.
61+
When you run a cross-partition query, you are essentially doing a separate query per individual physical partition. While cross-partition queries queries will use the index, if available, they are still not nearly as efficient as in-partition queries.
6262

6363
## Useful example
6464

6565
Here's an analogy to better understand cross-partition queries:
6666
67-
Let's imagine you are a delivery driver that has to delivery packages to different apartment complexes. Each apartment complex has a list on the premises that has all of the resident's unit numbers. We can compare each apartment complex to a physical partition and each list to the physical partition's index.
67+
Let's imagine you are a delivery driver that has to deliver packages to different apartment complexes. Each apartment complex has a list on the premises that has all of the resident's unit numbers. We can compare each apartment complex to a physical partition and each list to the physical partition's index.
6868

6969
We can compare in-partition and cross-partition queries using this example:
7070

@@ -74,23 +74,23 @@ If the delivery driver knows the correct apartment complex (physical partition),
7474

7575
### Cross-partition query (fan-out)
7676

77-
If the delivery driver does not know the correct apartment complex (physical partition), they'll need to drive to every single apartment building and check the list with all of the resident's unit numbers (the index). Once they arrive at each apartment complex, they'll still be able to utilize the list of the address of each resident. However, they will need to check every apartment complex's list, whether any package recipients live there or not. This is how cross-partition queries work. While they can utilize the index (don't need to knock on every single door), they must separately check the index for every physical partition.
77+
If the delivery driver does not know the correct apartment complex (physical partition), they'll need to drive to every single apartment building and check the list with all of the resident's unit numbers (the index). Once they arrive at each apartment complex, they'll still be able to use the list of the addresses of each resident. However, they will need to check every apartment complex's list, whether any package recipients live there or not. This is how cross-partition queries work. While they can use the index (don't need to knock on every single door), they must separately check the index for every physical partition.
7878
7979
### Cross-partition query (scoped to only a few physical partitions)
8080
81-
If the delivery driver knows that all package recipients live within a certain few apartment complexes, they won't need to drive to every single one. While this will still require more work than visiting just a single building, the delivery driver still saves significant time and effort. If a query has the partition key in its filter with the `IN` keyword, it will only check the relevant physical partition's indexes for data.
81+
If the delivery driver knows that all package recipients live within a certain few apartment complexes, they won't need to drive to every single one. While driving to a few apartment complexes will still require more work than visiting just a single building, the delivery driver still saves significant time and effort. If a query has the partition key in its filter with the `IN` keyword, it will only check the relevant physical partition's indexes for data.
8282
8383
## Avoiding cross-partition queries
8484
85-
For most containers, it is inevitable that you will have some cross-partition queries. This is ok! Nearly all query operations are supported across partitions (both logical partition keys and physical partitions). Azure Cosmos DB also has many optimizations in the query engine and client SDK's to parallelize query execution across physical partitions.
85+
For most containers, it's inevitable that you will have some cross-partition queries. Having some cross-partition queries is ok! Nearly all query operations are supported across partitions (both logical partition keys and physical partitions). Azure Cosmos DB also has many optimizations in the query engine and client SDKs to parallelize query execution across physical partitions.
8686

87-
For most read-heavy scenarios, we recommend simply selecting the most common property in your query filters. In addition, you should make sure your partition key adheres to other [partition key selection best practices](partitioning-overview.md#choose-partitionkey).
87+
For most read-heavy scenarios, we recommend simply selecting the most common property in your query filters. You should also make sure your partition key adheres to other [partition key selection best practices](partitioning-overview.md#choose-partitionkey).
8888

89-
Avoiding cross-partition queries matters typically only matters with large containers. You are charged a minimum of about 2.5 RU's each time you check a physical partition's index for results, even if no items in the physical partition match the query's filter. Therefore, if you have only one (or just a few) physical partitions, cross-partition queries will not consume significantly fewer RU's than in-partition queries.
89+
Avoiding cross-partition queries typically only matters with large containers. You are charged a minimum of about 2.5 RU's each time you check a physical partition's index for results, even if no items in the physical partition match the query's filter. As such, if you have only one (or just a few) physical partitions, cross-partition queries will not consume significantly fewer RU's than in-partition queries.
9090

9191
The number of physical partitions is tied to the amount of provisioned RU's. Each physical partition allows for up to 10,000 provisioned RU's and can store up to 50 GB of data. Azure Cosmos DB will automatically manage physical partitions for you. The number of physical partitions in your container is dependent on your provisioned throughput and consumed storage.
9292

93-
Therefore, you should try to avoid cross-partition queries if your workload meets the criteria below:
93+
You should try to avoid cross-partition queries if your workload meets the criteria below:
9494
- You plan to have over 30,000 RU's provisioned
9595
- You plan to store over 100 GB of data
9696

0 commit comments

Comments
 (0)