zhtaoxiang commented on code in PR #9815:
URL: https://github.com/apache/pinot/pull/9815#discussion_r1025612085


##########
pinot-plugins/pinot-minion-tasks/pinot-minion-builtin-tasks/src/main/java/org/apache/pinot/plugin/minion/tasks/mergerollup/MergeRollupTaskGenerator.java:
##########
@@ -539,6 +542,13 @@ private List<PinotTaskConfig> 
createPinotTaskConfigs(List<SegmentZKMetadata> sel
     }
 
     List<PinotTaskConfig> pinotTaskConfigs = new ArrayList<>();
+    StringBuilder partitionSuffixBuilder = new StringBuilder();
+    if (partition != null && !partition.isEmpty()) {
+      for (int columnPartition : partition) {
+        
partitionSuffixBuilder.append(DELIMITER_IN_SEGMENT_NAME).append(columnPartition);

Review Comment:
   Discussed offline again, we decided to change back to the initial solution. 
This will not be a problem due to line 375~376.



-- 
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]

Reply via email to