hailin0 commented on code in PR #7628:
URL: https://github.com/apache/seatunnel/pull/7628#discussion_r1854159616
##########
seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/task/flow/TransformFlowLifeCycle.java:
##########
@@ -89,6 +90,20 @@ public void received(Record<?> record) {
// ack after #addState
runningTask.ack(barrier);
collector.collect(record);
+ } else if (record.getData() instanceof SchemaChangeEvent) {
+ if (prepareClose) {
+ return;
+ }
+ SchemaChangeEvent event = (SchemaChangeEvent) record.getData();
+ for (SeaTunnelTransform<T> t : transform) {
+ event = t.mapSchemaChangeEvent(event);
+ if (event == null) {
+ break;
Review Comment:
add log break details. e.g transform namećconfig...
--
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]