<?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: Auto Loader on UC Volumes stopped resolving wildcards in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/auto-loader-on-uc-volumes-stopped-resolving-wildcards/m-p/157812#M54621</link>
    <description>&lt;P&gt;We are facing a similar issue, not limited to Autoloader but also affecting DLT pipelines and classic ETL job. The behavior is intermittent, jobs run fine and then fail unexpectedly, though they typically succeed on retry if retries are enabled. We tested with both absolute and relative paths, but the issue persists regardless.&lt;/P&gt;&lt;P&gt;I escalated this to our Databricks contact, and the suggested solutions are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Switch the channel from "Preview" to "Current" in the Databricks configuration, or&lt;/LI&gt;&lt;LI&gt;Raise a support ticket with Microsoft or Databricks (depending on your hyperscaler), providing your workspace ID.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In our case, the issue appears to be specific to the West Europe region, so it seems Databricks is already aware of it and a fix is expected in an upcoming release.&lt;/P&gt;</description>
    <pubDate>Thu, 28 May 2026 14:58:03 GMT</pubDate>
    <dc:creator>saravjeet</dc:creator>
    <dc:date>2026-05-28T14:58:03Z</dc:date>
    <item>
      <title>Auto Loader on UC Volumes stopped resolving wildcards</title>
      <link>https://community.databricks.com/t5/data-engineering/auto-loader-on-uc-volumes-stopped-resolving-wildcards/m-p/157714#M54606</link>
      <description>&lt;P&gt;The following spark.readStream / cloudFiles configuration was confirmed working on&lt;BR /&gt;2026-04-30, but stopped working on 2026-05-26. No code or config changes were made&lt;BR /&gt;between these dates, so I assume something was changed implicitly on the Databricks side.&lt;/P&gt;&lt;P&gt;Environment&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Job Compute Serverless v5 (reproduced on v4 as well)&lt;/LI&gt;&lt;LI&gt;Source: UC Volume, parquet&lt;/LI&gt;&lt;LI&gt;Mode: directory listing (`useNotifications=false`)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Code&lt;/P&gt;&lt;PRE&gt;load_path = "/Volumes/&amp;lt;catalog&amp;gt;/&amp;lt;schema&amp;gt;/&amp;lt;volume&amp;gt;/&amp;lt;id&amp;gt;/&amp;lt;sub&amp;gt;/&amp;lt;log_source&amp;gt;/&amp;lt;version&amp;gt;/userId=*/groupId=*/day={20260210,20260211}/"


df = (
    spark.readStream.format("cloudFiles")
    .schema(_source_schema)
    .option("cloudFiles.format", "parquet")
    .option("cloudFiles.useNotifications", "false")
    .option("cloudFiles.includeExistingFiles", "true")
    .option("pathGlobFilter", "*.gz.parquet")
    .option("cloudFiles.schemaLocation", checkpoint_base_path)
    .option("ignoreCorruptFiles", "true")
    .option("ignoreMissingFiles", "true")
    .option("badRecordsPath", bad_records_path)
    .load(load_path)
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ask&lt;/P&gt;&lt;P&gt;If anyone has experienced the same issue, please let me know - and how you addressed it.&lt;/P&gt;&lt;P&gt;Auto Loader does work when the path is fully literal (no wildcards, no brace expansion).&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 08:36:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/auto-loader-on-uc-volumes-stopped-resolving-wildcards/m-p/157714#M54606</guid>
      <dc:creator>yuta666</dc:creator>
      <dc:date>2026-05-27T08:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Loader on UC Volumes stopped resolving wildcards</title>
      <link>https://community.databricks.com/t5/data-engineering/auto-loader-on-uc-volumes-stopped-resolving-wildcards/m-p/157738#M54608</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/231754"&gt;@yuta666&lt;/a&gt;,&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea" data-pm-slice="1 1 []"&gt;Thanks for sharing the details. Since the same &lt;CODE&gt;cloudFiles&lt;/CODE&gt; configuration worked for you previously, and you did not make any code or config changes between 2026-04-30 and 2026-05-26, this does look like a likely regression rather than expected behaviour.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;The fact that Auto Loader still works when the path is fully literal, but stops working when the source path uses wildcard/brace expansion, points in the same direction.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;As a temporary workaround, if you need to keep moving, you could switch to fully literal paths for now. But I would not position that as the real fix here.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;I would recommend opening a Databricks support ticket so the team can investigate this as a possible regression. It would help to include:&lt;/P&gt;
&lt;UL&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;the exact &lt;CODE&gt;load_path&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;whether this reproduces consistently&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;workspace/cloud/region&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Job Compute Serverless version&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;a run URL or query ID if available&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;the first failing date and the last known-good date&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;If you do raise a ticket, please feel free to share the case number here as well. That may help others who run into the same issue. I can also use it to escalate internally.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2026 13:17:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/auto-loader-on-uc-volumes-stopped-resolving-wildcards/m-p/157738#M54608</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-05-27T13:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Loader on UC Volumes stopped resolving wildcards</title>
      <link>https://community.databricks.com/t5/data-engineering/auto-loader-on-uc-volumes-stopped-resolving-wildcards/m-p/157812#M54621</link>
      <description>&lt;P&gt;We are facing a similar issue, not limited to Autoloader but also affecting DLT pipelines and classic ETL job. The behavior is intermittent, jobs run fine and then fail unexpectedly, though they typically succeed on retry if retries are enabled. We tested with both absolute and relative paths, but the issue persists regardless.&lt;/P&gt;&lt;P&gt;I escalated this to our Databricks contact, and the suggested solutions are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Switch the channel from "Preview" to "Current" in the Databricks configuration, or&lt;/LI&gt;&lt;LI&gt;Raise a support ticket with Microsoft or Databricks (depending on your hyperscaler), providing your workspace ID.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In our case, the issue appears to be specific to the West Europe region, so it seems Databricks is already aware of it and a fix is expected in an upcoming release.&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2026 14:58:03 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/auto-loader-on-uc-volumes-stopped-resolving-wildcards/m-p/157812#M54621</guid>
      <dc:creator>saravjeet</dc:creator>
      <dc:date>2026-05-28T14:58:03Z</dc:date>
    </item>
  </channel>
</rss>

