EnricoMi commented on PR #44429:
URL: https://github.com/apache/spark/pull/44429#issuecomment-1867848098
This once again breaks writing sorted partitioned files, last time broken
with 3.0.0 and fixed in 3.3.2: #38358, #39431.
When the user calls
```
ds.repartition(partitionColumns: _*)
.sortWithinPartitions((partitionColumns ++ sortColumns): _*)
.write
.partitionBy(partitionColumns: _*)
.parquet(...)
```
then the in-partition sort by `sortColumns` is not redundant but desired.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]