<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Streaming tables fail with DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG after addin in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/167146#M55649</link>
    <description>&lt;P&gt;Try these steps&lt;/P&gt;&lt;P&gt;Because the Bronze table structure changed at the transaction log level, the Silver streaming checkpoint retains old offset schema metadata that conflicts with the log.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Go to your &lt;STRONG&gt;Silver SDP Pipeline Settings&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;Click the dropdown arrow next to &lt;STRONG&gt;Start&lt;/STRONG&gt; and select &lt;STRONG&gt;Full Refresh All&lt;/STRONG&gt; (or perform a schema reset on the specific Silver table).&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;Crucial:&lt;/EM&gt; Ensure that the &lt;STRONG&gt;pipeline storage location / checkpoint directory&lt;/STRONG&gt; is cleared or reset for that specific flow if a standard UI full refresh doesn't wipe the flow state.&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Tue, 01 Sep 2026 13:14:33 GMT</pubDate>
    <dc:creator>Satyasai</dc:creator>
    <dc:date>2026-09-01T13:14:33Z</dc:date>
    <item>
      <title>Streaming tables fail with DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG after adding a</title>
      <link>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/166942#M55628</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Environment:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Databricks Runtime: Current channel, Photon enabled&lt;/LI&gt;&lt;LI&gt;Edition: Pro&lt;/LI&gt;&lt;LI&gt;Platform: Azure&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Description:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;My setup consists of:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A &lt;STRONG&gt;managed ingestion pipeline&lt;/STRONG&gt; for a SQL Server database that ingests raw data into bronze Delta tables (SCD Type 1), consisting of a gateway pipeline and an ingestion pipeline&lt;/LI&gt;&lt;LI&gt;A &lt;STRONG&gt;Spark Declarative Pipeline (SDP)&lt;/STRONG&gt; that reads from those bronze tables via streaming and writes to silver tables&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;After adding a new column at the source, I performed a full refresh on both pipelines (otherwise the new column won't be ingested):&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Full refresh of the &lt;STRONG&gt;managed ingestion pipeline&lt;/STRONG&gt; (bronze) &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/LI&gt;&lt;LI&gt;Normal refresh of the ingestion pipeline &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; &lt;EM&gt;(necessary for data to actually be ingested in managed pipelines)&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;Full refresh of the &lt;STRONG&gt;SDP&lt;/STRONG&gt; (silver) &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;When a new normal pipeline update triggers, all silver streaming flows fail even though I performed the full refresh. The error is:&lt;/P&gt;&lt;P&gt;[DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG] Streaming read is not supported on tables with read-incompatible schema changes (e.g. rename or drop or datatype changes). Please provide a 'schemaTrackingLocation' to enable non-additive schema evolution for Delta stream processing.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I've tried:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The full refresh succeeds but every subsequent incremental/streaming run fails. The schema change seems to persist in the bronze tables' Delta transaction log even after a full refresh of the source (a hypothesis of mine)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Questions:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Why does the incompatible schema change persist in the Delta log after a full refresh of the source tables?&lt;/LI&gt;&lt;LI&gt;Is schemaTrackingLocation supported within SDP streaming table definitions, and how should it be configured? I believe it's automatically managed by the SDP pipeline and I shouldn't need to interfere with that.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any guidance appreciated. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2026 16:09:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/166942#M55628</guid>
      <dc:creator>Oumeima</dc:creator>
      <dc:date>2026-08-31T16:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Streaming tables fail with DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG after addin</title>
      <link>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/166961#M55630</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/173462"&gt;@Oumeima&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I think the problem is exactly what the error message is telling you: DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG. Streaming reads just don't support read-incompatible schema changes out of the box.&lt;/P&gt;&lt;P&gt;As for schemaTrackingLocation, you're right—it is automatically managed by the SDP pipeline, so you shouldn't need to interfere with it manually.&lt;/P&gt;&lt;P&gt;Here are a couple of things you can try to get this working:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;You can try setting the reset property:&lt;/STRONG&gt; To make sure a full refresh is allowed to clear things out for this table, try adding this to your SQL table properties: TBLPROPERTIES ("pipelines.reset.allowed" = "true")&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/ldp/properties" target="_self"&gt;Table Property Doc&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;You can try using Declarative CDC:&lt;/STRONG&gt; Instead of using imperative MERGE statements (which require a lot of custom code to handle event ordering, deduplication, and schema evolution), pipelines have native CDC features. You can try using AUTO CDC ... INTO (SQL) or create_auto_cdc_flow() (Python). You just describe the shape of the change feed and target table, and the pipeline handles the rest declaratively ,including schema evolution.&lt;BR /&gt;&lt;A href="https://docs.databricks.com/aws/en/ldp/best-practices/#use-declarative-cdc-instead-of-imperative-merge" target="_self"&gt;Use declarative CDC instead of imperative MERGE&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Hope this helps get your pipelines running again!&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2026 20:24:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/166961#M55630</guid>
      <dc:creator>ShamenParis</dc:creator>
      <dc:date>2026-08-31T20:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Streaming tables fail with DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG after addin</title>
      <link>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/167146#M55649</link>
      <description>&lt;P&gt;Try these steps&lt;/P&gt;&lt;P&gt;Because the Bronze table structure changed at the transaction log level, the Silver streaming checkpoint retains old offset schema metadata that conflicts with the log.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Go to your &lt;STRONG&gt;Silver SDP Pipeline Settings&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;Click the dropdown arrow next to &lt;STRONG&gt;Start&lt;/STRONG&gt; and select &lt;STRONG&gt;Full Refresh All&lt;/STRONG&gt; (or perform a schema reset on the specific Silver table).&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;Crucial:&lt;/EM&gt; Ensure that the &lt;STRONG&gt;pipeline storage location / checkpoint directory&lt;/STRONG&gt; is cleared or reset for that specific flow if a standard UI full refresh doesn't wipe the flow state.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 01 Sep 2026 13:14:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/167146#M55649</guid>
      <dc:creator>Satyasai</dc:creator>
      <dc:date>2026-09-01T13:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Streaming tables fail with DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG after addin</title>
      <link>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/167150#M55650</link>
      <description>&lt;P&gt;This is a useful discussion for anyone working with Databricks and Delta streaming tables. Understanding schema compatibility issues can help data engineers troubleshoot failed streaming jobs and design more reliable pipelines. For keeping track of project milestones and important deadlines, the &lt;A href="https://www.aktuellekalenderwoches.de/" target="_blank"&gt;aktuelle Kalenderwoche&lt;/A&gt; can also be a practical reference. Thanks for sharing!&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2026 13:50:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/167150#M55650</guid>
      <dc:creator>122</dc:creator>
      <dc:date>2026-09-01T13:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Streaming tables fail with DELTA_STREAMING_INCOMPATIBLE_SCHEMA_CHANGE_USE_SCHEMA_LOG after addin</title>
      <link>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/167173#M55651</link>
      <description>&lt;P data-pm-slice="1 1 []"&gt;The error confirms that the silver Delta stream encountered a schema transition it considers read-incompatible. It does not identify the original SQL Server DDL, so I would verify the sequence before assigning a root cause.&lt;/P&gt;
&lt;P&gt;Lakeflow Connect normally ingests a new source column on the next pipeline run. Some SQL Server changes require a full refresh, including column renames, datatype changes, and column additions with default values. A Connect full refresh can also span multiple updates: bronze keeps its old data while the new snapshot is built, then Databricks applies the snapshot and accumulated CDC records in one atomic update.&lt;/P&gt;
&lt;P&gt;That timing gives one plausible explanation for what you saw: silver may have been fully refreshed before the new bronze snapshot was applied, then encountered the changed bronze schema on its next update. The thread does not prove that explanation, however.&lt;/P&gt;
&lt;P&gt;I would check:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;The ingestion pipeline update history and event log to identify the update in which the bronze full refresh was applied.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;CODE&gt;DESCRIBE HISTORY &amp;lt;bronze_table&amp;gt;&lt;/CODE&gt; for the table versions, operations, and timestamps around that update.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;The silver event log to confirm its full refresh completed after the bronze update.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;For &lt;CODE&gt;schemaTrackingLocation&lt;/CODE&gt;, pipeline checkpoints are internal and are not directly accessible. I would not manually delete or assign a checkpoint path. After the bronze full refresh has been atomically applied, fully refresh the affected silver streaming table. If it still fails, open a support case with the bronze history and both pipeline event logs. A selective checkpoint reset is also documented, but for a Delta source it requires a correct &lt;CODE&gt;startingVersion&lt;/CODE&gt; and replay-safe target logic to avoid loss or duplication.&lt;/P&gt;
&lt;P&gt;One separate design point: SCD Type 1 changes update existing bronze rows. Use &lt;CODE&gt;skipChangeCommits&lt;/CODE&gt; only if silver may intentionally ignore those updates. If silver must receive them, consume the bronze change data feed and apply the changes with AUTO CDC, or use a materialized view when current-state results are sufficient.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2026 19:01:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/streaming-tables-fail-with-delta-streaming-incompatible-schema/m-p/167173#M55651</guid>
      <dc:creator>AbhilashNagilla</dc:creator>
      <dc:date>2026-09-01T19:01:45Z</dc:date>
    </item>
  </channel>
</rss>

