Skip to content

Commit e65f17c

Browse files
committed
Adding known issues for non partitioned migration doc
1 parent 8033772 commit e65f17c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

articles/cosmos-db/migrate-containers-partitioned-to-nonpartitioned.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,14 @@ Older version of Azure Cosmos DB SDKs such as V2.x.x and V1.x.x don’t support
113113

114114
If a migrated container is consumed by the latest/V3 version of SDK and you start populating the system defined partition key within the new documents, you cannot access (read, update, delete, query) such documents from the older SDKs anymore.
115115

116+
## Known issues
117+
118+
**Querying for the count of items that were inserted without a partition key by using V3 SDK may involve higher throughput consumption**
119+
120+
If you query from the V3 SDK for the items that are inserted by using V2 SDK, or the items inserted by using the V3 SDK with `PartitionKey.None` parameter, the count query may consume more RU/s if the `PartitionKey.None` parameter is supplied in the FeedOptions. We recommend that you don't supply the `PartitionKey.None` parameter if no other items are inserted with a partition key.
121+
122+
If new items are inserted with different values for the partition key, querying for such item counts by passing the appropriate key in `FeedOptions` will not have any issues. After inserting new documents with partition key, if you need to query just the document count without the partition key value, that query may again incur higher RU/s similar to the regular partitioned collections.
123+
116124
## Next steps
117125

118126
* [Partitioning in Azure Cosmos DB](partitioning-overview.md)

0 commit comments

Comments
 (0)