mcvsubbu commented on a change in pull request #6567: URL: https://github.com/apache/incubator-pinot/pull/6567#discussion_r611862455
########## File path: pinot-controller/src/main/java/org/apache/pinot/controller/api/upload/ZKOperator.java ########## @@ -57,41 +61,44 @@ public ZKOperator(PinotHelixResourceManager pinotHelixResourceManager, Controlle _controllerMetrics = controllerMetrics; } - public void completeSegmentOperations(String rawTableName, SegmentMetadata segmentMetadata, + public void completeSegmentOperations(String tableNameWithType, SegmentMetadata segmentMetadata, URI finalSegmentLocationURI, File currentSegmentLocation, boolean enableParallelPushProtection, HttpHeaders headers, String zkDownloadURI, boolean moveSegmentToFinalLocation, String crypter) throws Exception { - String offlineTableName = TableNameBuilder.OFFLINE.tableNameWithType(rawTableName); String segmentName = segmentMetadata.getName(); - - // Brand new segment, not refresh, directly add the segment - ZNRecord segmentMetadataZnRecord = - _pinotHelixResourceManager.getSegmentMetadataZnRecord(offlineTableName, segmentName); + ZNRecord segmentMetadataZnRecord = _pinotHelixResourceManager.getSegmentMetadataZnRecord(tableNameWithType, segmentName); if (segmentMetadataZnRecord == null) { - LOGGER.info("Adding new segment {} from table {}", segmentName, rawTableName); + LOGGER.info("Adding new segment {} from table {}", segmentName, tableNameWithType); processNewSegment(segmentMetadata, finalSegmentLocationURI, currentSegmentLocation, zkDownloadURI, crypter, - rawTableName, segmentName, moveSegmentToFinalLocation); + tableNameWithType, segmentName, moveSegmentToFinalLocation); return; } - LOGGER.info("Segment {} from table {} already exists, refreshing if necessary", segmentName, rawTableName); + // TODO Allow segment refreshing for realtime tables. + if (TableNameBuilder.isRealtimeTableResource(tableNameWithType)) { + LOGGER.info("Segment {} from table {} already exists, refreshing if necessary", segmentName, tableNameWithType); Review comment: Log line is misleading right? We are actually throwing an exception below. I think this log line belongs after line 84. It may be useful to have another log line here that says we do not support refresing existing segment for realtime table. -- 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. 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