-
Notifications
You must be signed in to change notification settings - Fork 210
Closed
Description
Problem
In AuronUniffleShuffleReader.scala, there is an empty log statement that provides no useful information when empty shuffle partitions are detected:
if (!emptyPartitionIds.isEmpty) {
logInfo(s"") // Empty log message
}This makes debugging and monitoring difficult as we cannot identify which partitions are empty during shuffle operations.
Solution
Replace the empty log message with meaningful information that includes:
The count of empty shuffle partitions
The list of empty partition IDs:
if (!emptyPartitionIds.isEmpty) {
logInfo(s"Found ${emptyPartitionIds.size()} empty shuffle partitions: ${emptyPartitionIds.asScala.mkString(",")}")
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels