## Problem
When using Lakeflow Connect to ingest from SQL Server with SCD Type 2 enabled, any downstream Streaming Table (auto cdc flow) in a Spark Declarative pipeline will fail with the following error:
"An error occurred because we detected an update or delete to one or more rows in the source table. Streaming tables may only use append-only streaming sources."
This happens because Lakeflow Connect applies MERGE operations to its bronze target table when writing SCD2 history — updating __END_AT on existing rows when new versions arrive. This makes the bronze table non-append-only, which violates the streaming table contract.
We designed this using streaming architecture as we may want to enable continuous data processing. However, for now, we can process this in batch.
These tables are large so a materialized view may not be an option. Auto CDC from snapshot is not an option as this expects a non-streaming source. What is the recommendation for processing data in later layers?