Schema changes? Handled automatically.
SeaTunnel detects upstream schema changes and propagates them downstream in real time, so teams do not need to pause the pipeline for every column change.
# Before -> After (detected automatically) -- v1 schema ------------------------- id BIGINT name VARCHAR(255) -- v2 schema (auto-propagated) ------ id BIGINT name VARCHAR(255) email VARCHAR(512) NEW phone VARCHAR(32) ADDED
