deemoliu commented on code in PR #9062: URL: https://github.com/apache/pinot/pull/9062#discussion_r929428348
########## pinot-core/src/main/java/org/apache/pinot/core/data/manager/realtime/RealtimeTableDataManager.java: ########## @@ -416,15 +415,18 @@ private void buildDedupMeta(ImmutableSegmentImpl immutableSegment) { private void handleUpsert(ImmutableSegmentImpl immutableSegment) { String segmentName = immutableSegment.getSegmentName(); - Integer partitionGroupId = - SegmentUtils.getRealtimeSegmentPartitionId(segmentName, _tableNameWithType, _helixManager, - _primaryKeyColumns.get(0)); - Preconditions.checkNotNull(partitionGroupId, - String.format("PartitionGroupId is not available for segment: '%s' (upsert-enabled table: %s)", segmentName, + Integer partitionGroupId = SegmentUtils + .getRealtimeSegmentPartitionId(segmentName, _tableNameWithType, _helixManager, _primaryKeyColumns.get(0)); + Preconditions.checkNotNull(partitionGroupId, String + .format("PartitionGroupId is not available for segment: '%s' (upsert-enabled table: %s)", segmentName, _tableNameWithType)); PartitionUpsertMetadataManager partitionUpsertMetadataManager = _tableUpsertMetadataManager.getOrCreatePartitionManager(partitionGroupId); + ThreadSafeMutableRoaringBitmap validDocIds = new ThreadSafeMutableRoaringBitmap(); + if (immutableSegment.getValidDocIds() != null) { Review Comment: fixed [here](https://github.com/apache/pinot/pull/9062/commits/56fb2a6b629473f5a64eb945597092854a39c3ba) -- 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