shenh062326 commented on a change in pull request #1868:
URL: https://github.com/apache/hudi/pull/1868#discussion_r464013661
##########
File path:
hudi-client/src/main/java/org/apache/hudi/table/action/commit/UpsertPartitioner.java
##########
@@ -99,7 +100,7 @@ public UpsertPartitioner(WorkloadProfile profile,
JavaSparkContext jsc, HoodieTa
assignInserts(profile, jsc);
LOG.info("Total Buckets :" + totalBuckets + ", buckets info => " +
bucketInfoMap + ", \n"
- + "Partition to insert buckets => " + partitionPathToInsertBuckets +
", \n"
+ + "Partition to insert buckets => " + partitionPathToInsertBucketInfos
+ ", \n"
Review comment:
The parent class Pair has toString() method:
```
@Override
public String toString() {
return new
StringBuilder().append('(').append(getLeft()).append(',').append(getRight()).append(')').toString();
}
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]