Hi all, I have a use case where I'd like to scan a single tablet and get back data sorted by primary key. My understanding is that Kudu scans read DiskRowSets, which are ordered, but if PK range spans more than 1 (not yet compacted) rowset, ordering would not be guaranteed.
I saw a "setFaultTolerant" option in Kudu Java API. This adds the benefit of having a resumable scan and (implicitly?) sorts by PK? It is not explicitly mentioned in the Javadoc, so I'd like to know if I can rely on this API for ordering guarantees or is there another more suitable API? Best, Petar