Resuming a multi order by query from a continuation token
See original GitHub issuePagination of a query with a multi order from a continuation token
In code is written that an implementation in .NET Sdk could work fine if ported into JAVA SDK.
How can I do my query/quiries to have the same result before having the new Feature?
Unfortunally, the old client 3.1.0 didn’t rise same error, so we used that approach (Probabily with wrong results)
com.azure.data.cosmos.internal.query.OrderByDocumentQueryExecutionContext<T> Code that rises the exception:
// This code path needs to be implemented, but it's error prone and needs
// testing.
// You can port the implementation from the .net SDK and it should work if
// ported right.
throw new NotImplementedException(
"Resuming a multi order by query from a continuation token is not supported yet.");
Issue Analytics
- State:
- Created 3 years ago
- Reactions:15
- Comments:12 (9 by maintainers)
Top Results From Across the Web
Pagination in Azure Cosmos DB | Microsoft Learn
In this article. Understanding query executions; Handling multiple pages of results; Continuation tokens; Next steps. APPLIES TO: NoSQL.
Read more >Resuming a multi order by query from a continuation token
Pagination of a query with a multi order from a continuation token. In code is written that an implementation in .NET Sdk could...
Read more >How does Cosmos DB Continuation Token work?
The continuation token is used to recreate the state of the index and track progress of the execution. "Next set of results" means,...
Read more >Web API Pagination with the 'Timestamp_ID' Continuation Token
2. When you return the set to the client, the token, should be token = lastResult.Token + 1. 3. Hence you do, Select...
Read more >Author Stored Procedures using the Continuation Model
If the stored procedure is unable to delete all documents, it will return a continuation token. Your client-side code is expected to repeatedly...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@apescione @baldassarreC - Thanks for reporting this issue. @mbhaskar can you please help us figure out if this feature is still in our backlog ?
I catch a “NotImplementedException” with azure-cosmos v3.7.0. Maybe it’s the same issue. Is there a new library version to solve?