Does anyone know a way to extract all the keys?
I have 600 milion keys but I need to query the document one by one. How can I get this list?
If I run a query like:
SELECT META(`internal`).id FROM `internal` LIMIT 10 OFFSET 600000000
I always get timeouts, so, there is no way in which I can extract in small batches. It work corectly if the offset is small, but when we reach a few milions the couchbase become unresponsive.
Thank you,