borcast hash join --小表先缓存到drver端,再广播到每一个execute,再将小表构建hash table
shuffle hash join --先shuffle,相同key分发到一起,再将小表构建hash table
shuffle sort merge join --先shuffle,相同key分发到一起,并排序,排序后直接关联
spark 三种join,学习记录
于 2023-07-10 15:40:55 首次发布
borcast hash join --小表先缓存到drver端,再广播到每一个execute,再将小表构建hash table
shuffle hash join --先shuffle,相同key分发到一起,再将小表构建hash table
shuffle sort merge join --先shuffle,相同key分发到一起,并排序,排序后直接关联