kfaraz commented on code in PR #17967:
URL: https://github.com/apache/druid/pull/17967#discussion_r2084413218


##########
server/src/main/java/org/apache/druid/segment/metadata/CoordinatorSegmentMetadataCache.java:
##########
@@ -502,13 +508,17 @@ public void refresh(final Set<SegmentId> 
segmentsToRefresh, final Set<String> da
       dataSourcesNeedingRebuild.clear();
     }
 
-    log.debug("Datasources to rebuild are [%s]", dataSourcesToRebuild);
+    log.debug("Re-building schema for datasources[%s].", dataSourcesToRebuild);
     // Rebuild the datasources.
     for (String dataSource : dataSourcesToRebuild) {
       final RowSignature rowSignature = 
buildDataSourceRowSignature(dataSource);
 
       if (rowSignature == null) {
-        log.info("RowSignature null for dataSource [%s], implying that it no 
longer exists. All metadata removed.", dataSource);
+        log.info(
+            "Datasource[%s] no longer exists as its row signature is [null]."
+            + " Removing all cached metadata.",

Review Comment:
   Will include in follow up PR.



-- 
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]

Reply via email to