Which of the following operations will always return a new DataFrame with updated partitions from DataFrame storesDF by inducing a shuffle?
Which of the following operations will always return a new DataFrame with updated partitions from DataFrame storesDF by inducing a shuffle?
The operation storesDF.repartition() will always return a new DataFrame with updated partitions from DataFrame storesDF by inducing a shuffle. This method is specifically designed to redistribute data across a different number of partitions, which requires shuffling the data.
C. storesDF.repartition()