You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uses First() to obtain only the first page of the results, and assumes that this is the total number of documents.
In fact, for larger collections, Cosmos DB will return multiple pages with partial counts, which have to be summed up in order to obtain the true total.
The correct code should enumerate all pages in the response.
The text was updated successfully, but these errors were encountered:
The number of document to copy is calculated in
CosmosDBHelper.GetSourceRecordCount
in an invalid way.The code below
uses
First()
to obtain only the first page of the results, and assumes that this is the total number of documents.In fact, for larger collections, Cosmos DB will return multiple pages with partial counts, which have to be summed up in order to obtain the true total.
The correct code should enumerate all pages in the response.
The text was updated successfully, but these errors were encountered: