<?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 Compatibility Mode for AWS Redshift in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168495#M55930</link>
    <description>&lt;DIV&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have several tables loaded from S3 using Lakeflow pipelines which generates streaming table and materialized views. Want to be able to read these tables in AWS redshift.&lt;/P&gt;&lt;P&gt;Based on the Databricks documentation for compatibility mode:&lt;/P&gt;&lt;P&gt;&lt;A class="" href="https://docs.databricks.com/aws/en/external-access/compatibility-mode" target="_blank" rel="noopener noreferrer"&gt;Databricks Compatibility Mode&lt;/A&gt;&lt;/P&gt;&lt;P&gt;my understanding is that compatibility mode enables external systems, including Amazon Redshift, to read Unity Catalog managed Delta tables either directly from storage or through the Unity Catalog REST API.&lt;/P&gt;&lt;P&gt;However, I am unclear on how this works with Redshift. My understanding is that Redshift Spectrum traditionally requires Delta Lake manifest files to query Delta tables, whereas compatibility mode appears to generate only the data files and metadata files.&lt;/P&gt;&lt;P&gt;Could you clarify how Redshift is expected to access these tables when compatibility mode is enabled? Is there a recommended setup for Redshift?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 14 Sep 2026 03:49:01 GMT</pubDate>
    <dc:creator>HZ</dc:creator>
    <dc:date>2026-09-14T03:49:01Z</dc:date>
    <item>
      <title>Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168495#M55930</link>
      <description>&lt;DIV&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have several tables loaded from S3 using Lakeflow pipelines which generates streaming table and materialized views. Want to be able to read these tables in AWS redshift.&lt;/P&gt;&lt;P&gt;Based on the Databricks documentation for compatibility mode:&lt;/P&gt;&lt;P&gt;&lt;A class="" href="https://docs.databricks.com/aws/en/external-access/compatibility-mode" target="_blank" rel="noopener noreferrer"&gt;Databricks Compatibility Mode&lt;/A&gt;&lt;/P&gt;&lt;P&gt;my understanding is that compatibility mode enables external systems, including Amazon Redshift, to read Unity Catalog managed Delta tables either directly from storage or through the Unity Catalog REST API.&lt;/P&gt;&lt;P&gt;However, I am unclear on how this works with Redshift. My understanding is that Redshift Spectrum traditionally requires Delta Lake manifest files to query Delta tables, whereas compatibility mode appears to generate only the data files and metadata files.&lt;/P&gt;&lt;P&gt;Could you clarify how Redshift is expected to access these tables when compatibility mode is enabled? Is there a recommended setup for Redshift?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 03:49:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168495#M55930</guid>
      <dc:creator>HZ</dc:creator>
      <dc:date>2026-09-14T03:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168512#M55933</link>
      <description>&lt;P&gt;Redshift Reads Iceberg Metadata directly&lt;/P&gt;&lt;P&gt;Amazon Redshift can query Apache Iceberg tables natively, Redshift does not need symlink_manifest files. It reads the Iceberg metadata that is generated by UniForm to determine exactly which Parquet files make up the latest version of your Delta table.&lt;/P&gt;&lt;P&gt;Redshift Access Patterns: Step-by-Step&lt;BR /&gt;1. Enable UniForm on the Databricks Table:&lt;BR /&gt;Make sure that UniForm (Iceberg) is enabled on your Delta table:&lt;/P&gt;&lt;P&gt;ALTER TABLE my_catalog.my_schema.my_streaming_table&lt;BR /&gt;SET TBLPROPERTIES (&lt;BR /&gt;'delta.enableIcebergCompatV2' = 'true',&lt;BR /&gt;'delta.universalFormat.enabledFormats' = 'iceberg'&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;2. Sync Unity Catalog to AWS Glue:&lt;BR /&gt;Set up Unity Catalog Glue Sync so that you can have table metadata mapped to the AWS Glue Data Catalog in your AWS account.&lt;/P&gt;&lt;P&gt;3. Create External Schema in Redshift:&lt;BR /&gt;In Amazon Redshift, create an external schema pointing to your Glue database:&lt;/P&gt;&lt;P&gt;SQL&lt;BR /&gt;CREATE EXTERNAL SCHEMA uc_glue_db&lt;BR /&gt;FROM DATA CATALOG&lt;BR /&gt;DATABASE 'my_uc_schema'&lt;BR /&gt;IAM_ROLE 'arn:aws:iam::123456789012:role/RedshiftSpectrumRole'&lt;BR /&gt;CREATE EXTERNAL DATABASE IF NOT EXISTS;&lt;/P&gt;&lt;P&gt;4.Query Directly in Redshift:&lt;BR /&gt;SELECT * FROM uc_glue_db.my_streaming_table WHERE event_date = CURRENT_DATE;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 09:23:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168512#M55933</guid>
      <dc:creator>Satyasai</dc:creator>
      <dc:date>2026-09-14T09:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168518#M55934</link>
      <description>&lt;P&gt;I’ve been wondering about this too. The gap between Compatibility Mode and how Redshift Spectrum actually discovers/queries the Delta data isn’t very clear from the docs. Would love to see a concrete Redshift setup example or recommended architecture.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2026 11:45:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168518#M55934</guid>
      <dc:creator>ThiamLee</dc:creator>
      <dc:date>2026-09-14T11:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168634#M55955</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/68624"&gt;@HZ&lt;/a&gt;&amp;nbsp;your understanding of Spectrum's &lt;STRONG&gt;Delta reader&lt;/STRONG&gt; is correct: it requires manifests. The alternative is &lt;A href="https://docs.aws.amazon.com/redshift/latest/dg/c-spectrum-external-tables.html" target="_self"&gt;Redshift's &lt;STRONG&gt;Iceberg access through Glue catalog federation&lt;/STRONG&gt;&lt;/A&gt;, which AWS documents for Unity Catalog. These are separate integration paths.&lt;/P&gt;&lt;P&gt;For your Lakeflow tables, the setup to validate is:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Enable Compatibility Mode in the table definition.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For streaming tables and materialized views, the &lt;A href="https://docs.databricks.com/aws/en/external-access/compatibility-mode" target="_blank" rel="noopener"&gt;Databricks guide&lt;/A&gt; specifies these properties &lt;STRONG&gt;at creation time&lt;/STRONG&gt;:&lt;/P&gt;&lt;PRE&gt;TBLPROPERTIES (
  'delta.universalFormat.enabledFormats' = 'compatibility',
  'delta.universalFormat.compatibility.location' = 's3://&amp;lt;bucket&amp;gt;/&amp;lt;table-path&amp;gt;'
)&lt;/PRE&gt;&lt;P&gt;The destination must be empty and covered by a registered external location where you have &lt;EM&gt;CREATE EXTERNAL TABLE&lt;/EM&gt;. Compatibility Mode generates a read-only version with Delta and Iceberg metadata; it does not configure Redshift access for you.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Federate Unity Catalog into Glue.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Follow the &lt;A href="https://docs.aws.amazon.com/lake-formation/latest/dg/catalog-federation-databricks.html" target="_blank" rel="noopener"&gt;Lake Formation setup&lt;/A&gt;. It uses a Databricks service principal for catalog access and an IAM role for access to the underlying S3 data. For this setup, that storage access needs to cover the compatibility data.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3. Connect Redshift to the federated database.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The &lt;A href="https://docs.aws.amazon.com/redshift/latest/dg/glue-irc-federated-catalogs.html" target="_blank" rel="noopener"&gt;Redshift guide&lt;/A&gt; covers creating a Glue database resource link, granting Lake Formation permissions, and querying through an external schema:&lt;/P&gt;&lt;PRE&gt;CREATE EXTERNAL SCHEMA uc_lakeflow
FROM DATA CATALOG DATABASE 'your_resource_link_database'
IAM_ROLE 'arn:aws:iam::&amp;lt;account-id&amp;gt;:role/&amp;lt;redshift-role&amp;gt;';&lt;/PRE&gt;&lt;P&gt;For this external-schema route, the catalog, Redshift compute and S3 bucket must be in the same Region.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 10:44:03 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168634#M55955</guid>
      <dc:creator>ivanvyd</dc:creator>
      <dc:date>2026-09-15T10:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168635#M55956</link>
      <description>&lt;P&gt;&lt;STRONG&gt;One qualification:&lt;/STRONG&gt; AWS's guide covers Delta tables exposed through UniForm, but does not explicitly confirm Compatibility Mode streaming tables or materialized views. Databricks documents their availability through Iceberg REST, so this is a route to validate, not a confirmed end-to-end recipe for your exact table types. Test discovery and a subsequent update for one of each, allowing the asynchronous compatibility refresh to complete before checking Redshift. See&amp;nbsp;&lt;A title="Querying AWS Glue IRC federated catalogs with Amazon Redshift - Amazon Redshift" href="https://docs.aws.amazon.com/redshift/latest/dg/glue-irc-federated-catalogs.html" target="_blank"&gt;AWS Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2026 10:44:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168635#M55956</guid>
      <dc:creator>ivanvyd</dc:creator>
      <dc:date>2026-09-15T10:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168735#M55972</link>
      <description>&lt;P&gt;Thanks Ivanvyd&lt;/P&gt;&lt;P&gt;For this part&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Follow the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.aws.amazon.com/lake-formation/latest/dg/catalog-federation-databricks.html" rel="noopener nofollow noreferrer" target="_blank"&gt;Lake Formation setup&lt;/A&gt;&lt;SPAN&gt;. It uses a Databricks service principal for catalog access and an IAM role for access to the underlying S3 data. For this setup, that storage access needs to cover the compatibility data.&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;Yes, I can create a federated catalog in AWS Lake Formation using Databricks Unity Catalog through the Iceberg REST Catalog integration.&lt;/P&gt;&lt;P&gt;When creating the federated catalog in AWS, I can then create an AWS Glue resource link that references the Databricks Unity Catalog. This allows the Databricks tables to appear in AWS Glue and Lake Formation, including streaming tables and materialized views, i.e. i can see table's metadata&lt;/P&gt;&lt;P&gt;The tricky part is that Unity Catalog tables are stored in one S3 location (for example, &lt;STRONG&gt;s3-uc&lt;/STRONG&gt;), while the compatibility mode data copies are stored in a different S3 location (for example, &lt;STRONG&gt;s3-compat&lt;/STRONG&gt;).&lt;/P&gt;&lt;P&gt;Based on my testing, when Redshift queries the federated Databricks tables, it seems to reference the metadata returned by Unity Catalog, which points to the underlying data in &lt;STRONG&gt;s3-uc&lt;/STRONG&gt; rather than the compatibility mode data in &lt;STRONG&gt;s3-compat&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;I want to confirm whether my understanding is correct.&lt;/P&gt;&lt;P&gt;For compatibility mode, when I federate Unity Catalog into AWS Glue/Lake Formation, it is reading the Unity Catalog tables and their associated metadata directly from Unity Catalog, rather than using the compatibility mode data copies?&lt;/P&gt;&lt;P&gt;If that's the case, then even though compatibility mode creates data copies, the federated catalog would still point to the original Unity Catalog table metadata and storage locations.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Helen Zhang&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 05:46:56 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168735#M55972</guid>
      <dc:creator>HZ</dc:creator>
      <dc:date>2026-09-16T05:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168743#M55973</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/68624"&gt;@HZ&lt;/a&gt;, Unity Catalog supplies the metadata, but that does not necessarily mean Redshift reads the original files. Databricks documents &lt;STRONG&gt;automatic access to compatibility versions through the Iceberg REST catalog&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you confirm whether s3-uc appears only in Glue's displayed table location, or in the current snapshot's &lt;STRONG&gt;data-file paths&lt;/STRONG&gt;? Iceberg's manifests identify the files to read, so those references are stronger evidence than the displayed location alone.&lt;/P&gt;&lt;P&gt;Also compare &lt;STRONG&gt;Last Refreshed Version&lt;/STRONG&gt; in DESCRIBE EXTENDED with the latest source version in DESCRIBE HISTORY to confirm the compatibility refresh is current.&lt;/P&gt;&lt;P&gt;If it is current and those data-file paths still reference s3-uc, comparing direct Iceberg REST access using the same Databricks principal would help investigate the difference. The returned metadata, referenced paths and Redshift query ID would give Support a concrete case.&lt;/P&gt;&lt;P&gt;This remains the qualification from my earlier reply: the Iceberg REST behavior is documented, but this specific Glue/Redshift setup still needs verification.&lt;/P&gt;&lt;P&gt;Feel free to share with me your contacts in pm, if you want to hop on a quick call to figure it out.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 07:06:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168743#M55973</guid>
      <dc:creator>ivanvyd</dc:creator>
      <dc:date>2026-09-16T07:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Compatibility Mode for AWS Redshift</title>
      <link>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168905#M56008</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/249473"&gt;@ivanvyd&lt;/a&gt;&amp;nbsp;, from&amp;nbsp;&lt;SPAN&gt;describe&lt;/SPAN&gt; &lt;SPAN&gt;extended table, i can see metadata location as &lt;STRONG&gt;s3-compat&lt;/STRONG&gt;, detailed table information has streaming table, location &lt;STRONG&gt;s3-uc&lt;/STRONG&gt;. In theory, the databricks unity catalog connector with AWS should read metadata from the &lt;STRONG&gt;s3-compat&lt;/STRONG&gt;&amp;nbsp;, i will check again my setting at AWS side and get back to you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2026 08:38:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/compatibility-mode-for-aws-redshift/m-p/168905#M56008</guid>
      <dc:creator>HZ</dc:creator>
      <dc:date>2026-09-17T08:38:44Z</dc:date>
    </item>
  </channel>
</rss>

