|
1 | 1 | ---
|
2 | 2 | title: Query containers in Azure Cosmos DB
|
3 |
| -description: Learn how to query containers in Azure Cosmos DB using in-partition, cross-partition, and partial corss partition queries |
| 3 | +description: Learn how to query containers in Azure Cosmos DB using in-partition and cross-partition queries |
4 | 4 | author: markjbrown
|
5 | 5 | ms.service: cosmos-db
|
6 | 6 | ms.topic: conceptual
|
7 |
| -ms.date: 12/02/2019 |
| 7 | +ms.date: 3/18/2019 |
8 | 8 | ms.author: mjbrown
|
9 | 9 | ---
|
10 | 10 |
|
11 | 11 | # Query an Azure Cosmos container
|
12 | 12 |
|
13 |
| -This article explains how to query a container (collection, graph, or table) in Azure Cosmos DB. |
| 13 | +This article explains how to query a container (collection, graph, or table) in Azure Cosmos DB. In particular, it covers how in-partition and cross-partition queries work in Azure Cosmos DB. |
14 | 14 |
|
15 | 15 | ## In-partition query
|
16 | 16 |
|
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 partitions corresponding to the partition key values specified in the filter. For example, the following query is routed to the `DeviceId` partition, which holds all the documents corresponding to partition key value `XMS-0001`. |
| 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. |
18 | 18 |
|
19 |
| -```csharp |
20 |
| -// Query using partition key into a class called, DeviceReading |
21 |
| -IQueryable<DeviceReading> query = client.CreateDocumentQuery<DeviceReading>( |
22 |
| - UriFactory.CreateDocumentCollectionUri("myDatabaseName", "myCollectionName")) |
23 |
| - .Where(m => m.MetricType == "Temperature" && m.DeviceId == "XMS-0001"); |
| 19 | +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. |
| 20 | + |
| 21 | +```sql |
| 22 | + SELECT * FROM c WHERE c.DeviceId = 'XMS-0001' |
24 | 23 | ```
|
25 | 24 |
|
26 |
| -## Cross-partition query |
| 25 | +As with the earlier example, this query will also filter to a single partition. Adding the additional filter on `Location` does not change this: |
27 | 26 |
|
28 |
| -The following query doesn't have a filter on the partition key (`DeviceId`), and is fanned out to all partitions where it is run against the partition's index. To run a query across partitions, set `EnableCrossPartitionQuery` to true (or `x-ms-documentdb-query-enablecrosspartition` in the REST API). |
| 27 | +```sql |
| 28 | + SELECT * FROM c WHERE c.DeviceId = 'XMS-0001' AND c.Location = 'Seattle' |
| 29 | +``` |
29 | 30 |
|
30 |
| -The EnableCrossPartitionQuery property accepts a boolean value. When set to true and if your query doesn't have a partition key, Azure Cosmos DB fans out the query across partitions. The fan out is done by issuing individual queries to all the partitions. To read the query results, the client applications should consume the results from the FeedResponse and check for the ContinuationToken property. To read all the results, keep iterating on the data until the ContinuationToken is null. |
| 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: |
31 | 32 |
|
32 |
| -```csharp |
33 |
| -// Query across partition keys into a class called, DeviceReading |
34 |
| -IQueryable<DeviceReading> crossPartitionQuery = client.CreateDocumentQuery<DeviceReading>( |
35 |
| - UriFactory.CreateDocumentCollectionUri("myDatabaseName", "myCollectionName"), |
36 |
| - new FeedOptions { EnableCrossPartitionQuery = true }) |
37 |
| - .Where(m => m.MetricType == "Temperature" && m.MetricValue > 100); |
| 33 | +```sql |
| 34 | + SELECT * FROM c WHERE c.DeviceId > 'XMS-0001' |
38 | 35 | ```
|
39 | 36 |
|
40 |
| -Azure Cosmos DB supports aggregate functions COUNT, MIN, MAX, and AVG over containers by using SQL. The aggregate functions over containers starting from the SDK version 1.12.0 and later. Queries must include a single aggregate operator, and must include a single value in the projection. |
41 |
| - |
42 |
| -## Parallel cross-partition query |
| 37 | +## Cross-partition query |
43 | 38 |
|
44 |
| -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. For example, the following query is configured to run in parallel across partitions. |
| 39 | +The following query doesn't have a filter on the partition key (`DeviceId`). Therefore, it must fan-out to all physical partitions where it is run against each partition's index: |
45 | 40 |
|
46 |
| -```csharp |
47 |
| -// Cross-partition Order By Query with parallel execution |
48 |
| -IQueryable<DeviceReading> crossPartitionQuery = client.CreateDocumentQuery<DeviceReading>( |
49 |
| - UriFactory.CreateDocumentCollectionUri("myDatabaseName", "myCollectionName"), |
50 |
| - new FeedOptions { EnableCrossPartitionQuery = true, MaxDegreeOfParallelism = 10, MaxBufferedItemCount = 100}) |
51 |
| - .Where(m => m.MetricType == "Temperature" && m.MetricValue > 100) |
52 |
| - .OrderBy(m => m.MetricValue); |
| 41 | +```sql |
| 42 | + SELECT * FROM c WHERE c.Location = 'Seattle` |
53 | 43 | ```
|
54 | 44 |
|
| 45 | +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. |
| 46 | +
|
| 47 | +The indexes in different physical partitions are independent from one another. There is no global index in Azure Cosmos DB. |
| 48 | +
|
| 49 | +## Parallel cross-partition query |
| 50 | +
|
| 51 | +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. |
| 52 | +
|
55 | 53 | You can manage parallel query execution by tuning the following parameters:
|
56 | 54 |
|
57 |
| -- **MaxDegreeOfParallelism**: 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 `MaxDegreeOfParallelism` is not specified or set to 0, which is the default value, 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. |
58 | 56 |
|
59 | 57 | - **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.
|
60 | 58 |
|
61 |
| -With the same state of the collection, a parallel query returns results in the same order as a serial execution. When performing a cross-partition query that includes sorting operators (ORDER BY, TOP), the Azure Cosmos DB SDK issues the query in parallel across partitions. It merges partially sorted results in the client side to produce globally ordered results. |
| 59 | +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. |
| 60 | + |
| 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. |
| 62 | + |
| 63 | +## Useful example |
| 64 | + |
| 65 | +Here's an analogy to better understand cross-partition queries: |
| 66 | +
|
| 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. |
| 68 | + |
| 69 | +We can compare in-partition and cross-partition queries using this example: |
| 70 | + |
| 71 | +### In-partition query |
| 72 | + |
| 73 | +If the delivery driver knows the correct apartment complex (physical partition), then they can immediately drive to the correct building. The driver can check the apartment complex's list of the resident's unit numbers (the index) and quickly deliver the appropriate packages. In this case, the driver does not waste any time or effort driving to an apartment complex to check and see if any package recipients live there. |
| 74 | + |
| 75 | +### Cross-partition query (fan-out) |
| 76 | + |
| 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. |
| 78 | +
|
| 79 | +### Cross-partition query (scoped to only a few physical partitions) |
| 80 | +
|
| 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. |
| 82 | +
|
| 83 | +## Avoiding cross-partition queries |
| 84 | +
|
| 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. |
| 86 | + |
| 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). |
| 88 | + |
| 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. |
| 90 | + |
| 91 | +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. |
| 92 | + |
| 93 | +You should try to avoid cross-partition queries if your workload meets the criteria below: |
| 94 | +- You plan to have over 30,000 RU's provisioned |
| 95 | +- You plan to store over 100 GB of data |
62 | 96 |
|
63 | 97 | ## Next steps
|
64 | 98 |
|
|
0 commit comments