xiangfu0 commented on code in PR #19244:
URL: https://github.com/apache/pinot/pull/19244#discussion_r3774648934


##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java:
##########
@@ -620,7 +621,9 @@ static void validateIngestionConfig(TableConfig 
tableConfig, Schema schema,
                   + columnName + "'");
         }
         try {
-          validateIngestionTransformFunctionVolatility(transformConfig, 
existingTransformConfigs);
+          if (tableConfig.getTableType() == TableType.REALTIME) {
+            validateIngestionTransformFunctionVolatility(transformConfig, 
existingTransformConfigs);
+          }

Review Comment:
   Follow-up hardening landed in 
[`52a541abe5`](https://github.com/apache/pinot/pull/19244/commits/52a541abe5301ac708642bda43361a5bd55bc54a).
 Data and offset spool files are now deleted independently so one cleanup 
failure cannot leak the other, cleanup can be retried, and direct path 
construction is package-local so production callers always use unique temporary 
files. The combined JDK 25 spool and segment-generation regression run now 
passes 13/13 tests.



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