deepthi912 commented on code in PR #15178:
URL: https://github.com/apache/pinot/pull/15178#discussion_r1982241163


##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/dedup/BasePartitionDedupMetadataManager.java:
##########
@@ -283,8 +283,13 @@ public void removeSegment(IndexSegment segment) {
       return;
     }
     try {
-      if (skipSegmentOutOfTTL(segment, false)) {
-        return;
+      // segment.getSegmentMetadata().getColumnMetadataMap() will be null when 
offloading a temporary segment data
+      // manager created in BaseTableDataManager.addSegment which caused 
replicas to go into BAD state when
+      // metadataTTL is set
+      if (segment.getSegmentMetadata() != null && 
segment.getSegmentMetadata().getColumnMetadataMap() != null) {

Review Comment:
   Should we eliminate the private final Logger _segmentLogger; all together 
from this class and use the regular way? I think the e.String() is logging the 
message right?



-- 
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: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to