Merge Join transformation requires both input data streams to be sorted on the join key columns. Other transformations like Aggregate and Conditional Split work correctly with unsorted data.
The Merge Join transformation combines two sorted inputs on a join key using a merge algorithm, so both input data streams must already be sorted for it to work correctly. Aggregate and Conditional Split don't require sorted input, since they operate row-by-row or on grouped values regardless of order.