Hi When Impala does a partitioned join on a node, it split the build input into partitions until a partition can fit into memory and consume the probe input then do the join and output rows.
My question is will impala schedule multiple tasks to do join if multiple partitions fit into memory, or iterate over partitions? And for one partition does it use multiple threads to do join? Thanks in advanced. JJ