Closed igorbernstein2 closed 2 years ago
How common is this use case? I don't have a good sense of how highly this should be prioritized. cc @garrettjonesgoogle
I'd say its a pretty low priority. I just want to get rid of this ugliness: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/36409f5b1df89609eaef92d09cebea97931339bd/google-cloud-clients/google-cloud-bigtable-admin/src/main/java/com/google/cloud/bigtable/admin/v2/BigtableTableAdminClient.java#L439-L478
Closing due to low priority and lack of activity for a long time.
Currently there is no straightforward way to asynchronously get all of the entries in a paginated method. The user either has to use a thread pool and call
AbstractPage#iterateAll()
or use chained futures for each page.