geoffreyclaude commented on code in PR #14918: URL: https://github.com/apache/datafusion/pull/14918#discussion_r1974272139
########## datafusion/core/src/datasource/listing/table.rs: ########## @@ -1115,7 +1117,7 @@ impl ListingTable { } }) .boxed() - .buffered(ctx.config_options().execution.meta_fetch_concurrency); + .buffer_unordered(ctx.config_options().execution.meta_fetch_concurrency); Review Comment: Ordering does not matter here, so might as well use `buffer_unordered` to avoid stalling on an outlier. -- 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. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org