pitrou commented on a change in pull request #9995: URL: https://github.com/apache/arrow/pull/9995#discussion_r611832688
########## File path: cpp/src/arrow/filesystem/s3fs.cc ########## @@ -1762,6 +1851,50 @@ Result<std::vector<FileInfo>> S3FileSystem::GetFileInfo(const FileSelector& sele return results; } +FileInfoGenerator S3FileSystem::GetFileInfoGenerator(const FileSelector& select) { + auto maybe_base_path = S3Path::FromString(select.base_dir); + if (!maybe_base_path.ok()) { + return MakeFailingGenerator<FileInfoVector>(maybe_base_path.status()); + } + auto base_path = *std::move(maybe_base_path); + + if (base_path.empty()) { + // List all buckets, then possibly recurse + PushGenerator<AsyncGenerator<FileInfoVector>> gen; + auto producer = gen.producer(); Review comment: Good idea. Also perhaps the stop token can be examined (though the thread pool should fail the task if the stop token was cancelled). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org