Concept Flow - Broadcast joins for small tables
Start with two tables
Identify small table
Broadcast small table to all nodes
Perform join locally on each node
Combine results from all nodes
Output joined table
Broadcast join sends the small table to all worker nodes to join locally with the big table, speeding up the join.