<?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: Delta live table UC Kinesis: options overwriteschema, ignorechanges not supported for data sourc in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/43426#M27506</link>
    <description>&lt;P&gt;Hello !&lt;/P&gt;&lt;P&gt;My pipeline is already in Advanced mode because I'm using Unity Catalog in storage options&lt;/P&gt;</description>
    <pubDate>Mon, 04 Sep 2023 12:01:34 GMT</pubDate>
    <dc:creator>sawya</dc:creator>
    <dc:date>2023-09-04T12:01:34Z</dc:date>
    <item>
      <title>Delta live table UC Kinesis: options overwriteschema, ignorechanges not supported for data sourc</title>
      <link>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/36891#M26206</link>
      <description>&lt;P&gt;I try to build a DLT in UC with Kinesis as producer.&lt;/P&gt;&lt;P&gt;My first table looks like:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;@dlt&lt;/SPAN&gt;&lt;SPAN&gt;.create_table(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; table_properties={&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;     "pipelines.autoOptimize.managed"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"true"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; spark_conf={&lt;/SPAN&gt;&lt;SPAN&gt;"spark.databricks.delta.schema.autoMerge.enabled"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;"true"&lt;/SPAN&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;def&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;feed_chunks():&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; spark.readStream.&lt;/SPAN&gt;&lt;SPAN&gt;format&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"kinesis"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"streamName"&lt;/SPAN&gt;&lt;SPAN&gt;, stream_name)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"ignoreChanges"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"true"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"overwriteSchema"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"true"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"roleArn"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"arn:aws:iam::xxxxx:role/xxxxx-read-role"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"region"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"eu-west-1"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; .load()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;And I get this error:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;pyspark.errors.exceptions.AnalysisException: [UNSUPPORTED_STREAMING_OPTIONS_PERMISSION_ENFORCED] &lt;BR /&gt;Streaming options overwriteschema, ignorechanges are not supported for &lt;BR /&gt;data source kinesis on a shared cluster.&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;U&gt;Is this a know limitation of DLT x UC ?&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;The same DLT with simple hive metastore works fine.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 04 Jul 2023 06:25:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/36891#M26206</guid>
      <dc:creator>alemo</dc:creator>
      <dc:date>2023-07-04T06:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Delta live table UC Kinesis: options overwriteschema, ignorechanges not supported for data sourc</title>
      <link>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/38727#M26734</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did you found a solution ? I have the same problem&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jul 2023 20:08:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/38727#M26734</guid>
      <dc:creator>sawya</dc:creator>
      <dc:date>2023-07-30T20:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Delta live table UC Kinesis: options overwriteschema, ignorechanges not supported for data sourc</title>
      <link>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/41166#M27304</link>
      <description>&lt;P&gt;If you use the "Preview" Channel in the "Advanced" section of the DLT Pipeline, this error should resolve itself. This fix is planned to make it into the "Current" channel by Aug 31, 2023&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 13:43:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/41166#M27304</guid>
      <dc:creator>Corbin</dc:creator>
      <dc:date>2023-08-23T13:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Delta live table UC Kinesis: options overwriteschema, ignorechanges not supported for data sourc</title>
      <link>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/43426#M27506</link>
      <description>&lt;P&gt;Hello !&lt;/P&gt;&lt;P&gt;My pipeline is already in Advanced mode because I'm using Unity Catalog in storage options&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 12:01:34 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/delta-live-table-uc-kinesis-options-overwriteschema/m-p/43426#M27506</guid>
      <dc:creator>sawya</dc:creator>
      <dc:date>2023-09-04T12:01:34Z</dc:date>
    </item>
  </channel>
</rss>

