<?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: Loading date from Azure File share in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5004450#M15052</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/925904"&gt;@JonBFabric&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;Azure Files SMB requires Kerberos, and Microsoft does not support SMB authentication using service principals (Workspace Identity is a service principal). SMB requires:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A user identity&lt;/LI&gt;&lt;LI&gt;A device identity&lt;/LI&gt;&lt;LI&gt;Or a managed identity tied to Azure compute (in preview)&lt;BR /&gt;—not a Fabric Workspace Identity.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Therefore,&amp;nbsp;Workspace Identity cannot be used to authenticate to Azure File Shares over SMB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 10 Feb 2026 18:25:17 GMT</pubDate>
    <dc:creator>deborshi_nag</dc:creator>
    <dc:date>2026-02-10T18:25:17Z</dc:date>
    <item>
      <title>Loading date from Azure File share</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5004339#M15050</link>
      <description>&lt;P&gt;Good Afternoon,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to be able to load a number of files from an Azure File share using the SMB protocol, and to use the workspace identity to authenticate. Does anyone have any experience in doing this within Fabric?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 10 Feb 2026 16:37:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5004339#M15050</guid>
      <dc:creator>JonBFabric</dc:creator>
      <dc:date>2026-02-10T16:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Loading date from Azure File share</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5004443#M15051</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Interesting question — this comes up quite a lot when teams try to treat Azure File Shares like traditional network storage inside Fabric workloads.&lt;/P&gt;&lt;P&gt;From what I’ve tested and seen in current Fabric patterns, there are two important constraints to call out:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":keycap_1:"&gt;1️⃣&lt;/span&gt;SMB access + Workspace Identity&lt;/STRONG&gt;&lt;BR /&gt;Fabric workloads (Notebooks, Pipelines, Dataflows, etc.) currently don’t natively mount SMB shares using Workspace Managed Identity. Fabric is designed to access data through Azure-native data plane integrations (OneLake, ADLS Gen2, Blob, SQL endpoints, etc.), not OS-level network mounts like SMB.&lt;/P&gt;&lt;P&gt;Even if the identity is valid for the storage account, there is no supported mechanism today to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Mount Azure Files over SMB inside Fabric compute&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Or authenticate SMB sessions using Workspace Identity&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":keycap_2:"&gt;2️⃣&lt;/span&gt;Recommended Architecture Pattern&lt;/STRONG&gt;&lt;BR /&gt;The typical production-safe pattern I’ve seen is:&lt;/P&gt;&lt;P&gt;➡ Azure Files (SMB)&lt;BR /&gt;➡ Copy / Sync to ADLS Gen2 or OneLake staging (via ADF, Logic Apps, Azure Function, or Storage sync)&lt;BR /&gt;➡ Consume from Fabric via OneLake / ADLS connector&lt;/P&gt;&lt;P&gt;This keeps authentication fully Entra ID + Managed Identity aligned and avoids network layer dependencies.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":keycap_3:"&gt;3️⃣&lt;/span&gt;If Real-Time or Near-Real-Time Is Needed&lt;/STRONG&gt;&lt;BR /&gt;You could consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Azure Function triggered on file arrival → push to ADLS / OneLake&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Storage account event grid → pipeline trigger&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Scheduled Fabric pipeline pulling via REST (if exposing files via another service layer)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":keycap_4:"&gt;4️⃣&lt;/span&gt;Edge Option (Not Recommended for Scale)&lt;/STRONG&gt;&lt;BR /&gt;In theory, a custom compute (VM / AKS) could mount SMB and push data into OneLake — but at that point you’re reintroducing infra that Fabric is trying to abstract away.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;If your goal is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Authentication simplicity → go OneLake / ADLS native&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Zero infra → avoid SMB in Fabric ingestion path&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Enterprise pattern → land → bronze → process (Fabric native)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;P&gt;Curious about your scenario:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Is the Azure File Share coming from a legacy app?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Or is it acting as a landing zone for vendors / external systems?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If you share that, I can suggest a more concrete pattern.&lt;BR /&gt;&lt;BR /&gt;Note: AI-assisted drafting and structuring. All technical aspects were validated prior to posting.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2026 14:23:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5004443#M15051</guid>
      <dc:creator>bariscihan</dc:creator>
      <dc:date>2026-02-25T14:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: Loading date from Azure File share</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5004450#M15052</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/925904"&gt;@JonBFabric&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;Azure Files SMB requires Kerberos, and Microsoft does not support SMB authentication using service principals (Workspace Identity is a service principal). SMB requires:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A user identity&lt;/LI&gt;&lt;LI&gt;A device identity&lt;/LI&gt;&lt;LI&gt;Or a managed identity tied to Azure compute (in preview)&lt;BR /&gt;—not a Fabric Workspace Identity.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Therefore,&amp;nbsp;Workspace Identity cannot be used to authenticate to Azure File Shares over SMB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 10 Feb 2026 18:25:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5004450#M15052</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-02-10T18:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Loading date from Azure File share</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5005741#M15064</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/925904"&gt;@JonBFabric&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have not tried this myself, but depending on how you configure the SMB share, it might be possible.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/storage/files/storage-files-identity-auth-hybrid-identities-enable?tabs=azure-portal%2Cintune" target="_blank"&gt;Microsoft Entra Kerberos Authentication for Azure Files | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks like a lot of set up that could potentially break existing access though.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Feb 2026 14:57:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5005741#M15064</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-02-11T14:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Loading date from Azure File share</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5038057#M15112</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/925904"&gt;@JonBFabric&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1340679"&gt;@tayloramy&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1445078"&gt;@deborshi_nag&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/833169"&gt;@bariscihan&lt;/a&gt;&amp;nbsp; for your response to the query./&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;We haven’t heard from you on the last response and was just checking back to see if your query was answered.&lt;BR /&gt;Otherwise, will respond back with the more details and we will try to help.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 05:23:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5038057#M15112</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2026-02-16T05:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Loading date from Azure File share</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5057242#M15152</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/925904"&gt;@JonBFabric&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we haven't heard back from you regarding our last response and wanted to check if your issue has been resolved.&lt;/P&gt;
&lt;P&gt;Should you have any further questions, feel free to reach out.&lt;BR /&gt;Thank you for being a part of the Microsoft Fabric Community Forum!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 06:57:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Loading-date-from-Azure-File-share/m-p/5057242#M15152</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2026-02-19T06:57:20Z</dc:date>
    </item>
  </channel>
</rss>

