Query Using Cursors
Cursor pagination for large Pinot result sets.
When to use it
Submit a cursor-backed query
curl --request POST 'http://localhost:8099/query/sql?getCursor=true&numRows=1' \
--header 'Content-Type: application/json' \
--data '{"sql":"SELECT * FROM nation LIMIT 100"}'Fetch the next page
curl -X GET 'http://localhost:8099/responseStore/236490978000000006/results?offset=1&numRows=1'What to watch for
What this page covered
Next step
Related pages
Last updated
Was this helpful?

