zachjsh commented on code in PR #14560:
URL: https://github.com/apache/druid/pull/14560#discussion_r1261526304
##########
processing/src/main/java/org/apache/druid/timeline/SegmentId.java:
##########
@@ -231,6 +231,16 @@ static String tryExtractMostProbableDataSource(String
segmentId)
}
}
+
+ /**
+ * Creates a merged SegmentId for the given data source, interval and
partition number. Used when segments are
+ * merged.
+ */
+ public static SegmentId merged(String dataSource, Interval interval, int
partitionNum)
+ {
+ return of(dataSource, interval, "merged", partitionNum);
Review Comment:
See previous comment
##########
processing/src/main/java/org/apache/druid/timeline/SegmentId.java:
##########
@@ -231,6 +231,16 @@ static String tryExtractMostProbableDataSource(String
segmentId)
}
}
+
+ /**
+ * Creates a merged SegmentId for the given data source, interval and
partition number. Used when segments are
+ * merged.
+ */
+ public static SegmentId merged(String dataSource, Interval interval, int
partitionNum)
+ {
+ return of(dataSource, interval, "merged", partitionNum);
Review Comment:
See previous comment regarding this.
--
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]