viirya commented on code in PR #13469: URL: https://github.com/apache/datafusion/pull/13469#discussion_r1847130362
########## datafusion/physical-plan/src/joins/sort_merge_join.rs: ########## @@ -68,8 +68,46 @@ use crate::{ RecordBatchStream, SendableRecordBatchStream, Statistics, }; -/// join execution plan executes partitions in parallel and combines them into a set of -/// partitions. +/// Join execution plan that executes equi-join predicates on multiple partitions using Sort-Merge +/// join algorithm and applies an optional filter post join. Can be used to join arbitrarily large +/// inputs where one or both of the inputs don't fit in the available memory. Review Comment: > where one or both of the inputs don't fit in the available memory. Hmm, is this true? -- 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