jugomezv commented on code in PR #9994: URL: https://github.com/apache/pinot/pull/9994#discussion_r1055628430
########## pinot-server/src/main/java/org/apache/pinot/server/starter/helix/SegmentOnlineOfflineStateModelFactory.java: ########## @@ -138,6 +149,19 @@ public void onBecomeOfflineFromConsuming(Message message, NotificationContext co @Transition(from = "CONSUMING", to = "DROPPED") public void onBecomeDroppedFromConsuming(Message message, NotificationContext context) { _logger.info("SegmentOnlineOfflineStateModel.onBecomeDroppedFromConsuming() : " + message); + String realtimeTableName = message.getResourceName(); + String segmentNameStr = message.getPartitionName(); + TableDataManager tableDataManager = _instanceDataManager.getTableDataManager(realtimeTableName); + Preconditions.checkNotNull(tableDataManager); + if (tableDataManager instanceof RealtimeTableDataManager) { Review Comment: See my response above, this option seems better than bubbling up a realtime specific method to tabledata manager -- 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