<?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: Read ADLS gen 2 file through Notebook using a Connection in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/5014333#M15091</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1531356"&gt;@sureshabey1&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/783425"&gt;@Shreya_Barhate&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1445078"&gt;@deborshi_nag&lt;/a&gt;&amp;nbsp; for your inputs.&lt;/P&gt;
&lt;P&gt;We’d like to follow up regarding the recent concern. Kindly confirm whether the issue has been resolved, or if further assistance is still required. We are available to support you and are committed to helping you reach a resolution.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for your patience and look forward to hearing from you.&lt;BR /&gt;Best Regards,&lt;BR /&gt;Chaithra E.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Feb 2026 10:03:00 GMT</pubDate>
    <dc:creator>v-echaithra</dc:creator>
    <dc:date>2026-02-13T10:03:00Z</dc:date>
    <item>
      <title>Read ADLS gen 2 file through Notebook using a Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/4998660#M14987</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to run a simple read spark stream query with in fabric notebook.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used workspace identity mechanism for connection creation to storage account.&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/security/workspace-identity-authenticate" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/security/workspace-identity-authenticate&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt;&lt;SPAN&gt; pyspark.sql &lt;/SPAN&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; SparkSession&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt;&lt;SPAN&gt; pyspark.sql.functions &lt;/SPAN&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; col, lit, struct, to_json&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;from&lt;/SPAN&gt;&lt;SPAN&gt; delta.tables &lt;/SPAN&gt;&lt;SPAN&gt;import&lt;/SPAN&gt;&lt;SPAN&gt; *&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;spark = SparkSession.builder.getOrCreate()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;df = (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; spark.readStream&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; .format(&lt;/SPAN&gt;&lt;SPAN&gt;"json"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; .schema(&lt;/SPAN&gt;&lt;SPAN&gt;"site_Group string, site string&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"recursiveFileLookup"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"true"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"ignoreMissingFiles"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"true"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; .option(&lt;/SPAN&gt;&lt;SPAN&gt;"withEventTimeOrder"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"true"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; .load(&lt;/SPAN&gt;&lt;SPAN&gt;"abfss://landing-zone@xyz_storageaccount.dfs.core.windows.net/Y/"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have given the workspace the azure blob data reader access at the storage account level.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But still getting access related issue to read the file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Operation failed: "This request is not authorized to perform this operation.", 403, HEAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 03:33:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/4998660#M14987</guid>
      <dc:creator>sureshabey1</dc:creator>
      <dc:date>2026-02-06T03:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Read ADLS gen 2 file through Notebook using a Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/4998873#M14991</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1531356"&gt;@sureshabey1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since you're using the fully qualified abfs location, I'm guessing you have not created the OneLake shortcut. Follow the Microsoft doc link you shared to create a OneLake shortcut pointing to the folder in your external storage. Use Workspace Identity when creating the shortcut. Once done, attach the notebook to the Lakehouse and use /Files/&amp;lt;shortcut name&amp;gt; instead of the abfs location.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Secondly, if your storage is behing a firewall, please check you've used Trusted Workspace Access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 07:39:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/4998873#M14991</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-02-06T07:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Read ADLS gen 2 file through Notebook using a Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/4998999#M14996</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1531356"&gt;@sureshabey1&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Workspace identity works only for scenarios where Fabric uses -workspace identity to authenticate—specifically when connecting OneLake shortcuts, Data Pipelines, Semantic Models, and Dataflows Gen2 (CI/CD) to external data sources.&lt;BR /&gt;It does not currently authenticate Spark notebooks for direct file access to ADLS Gen2. For notebooks, you must use either user identity, service principal, or managed identity configured through a linked service with appropriate ACL/RBAC permissions.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks and regards,&lt;BR /&gt;Shreya Barhate&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 10:13:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/4998999#M14996</guid>
      <dc:creator>Shreya_Barhate</dc:creator>
      <dc:date>2026-02-06T10:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Read ADLS gen 2 file through Notebook using a Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/5014333#M15091</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1531356"&gt;@sureshabey1&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/783425"&gt;@Shreya_Barhate&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1445078"&gt;@deborshi_nag&lt;/a&gt;&amp;nbsp; for your inputs.&lt;/P&gt;
&lt;P&gt;We’d like to follow up regarding the recent concern. Kindly confirm whether the issue has been resolved, or if further assistance is still required. We are available to support you and are committed to helping you reach a resolution.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for your patience and look forward to hearing from you.&lt;BR /&gt;Best Regards,&lt;BR /&gt;Chaithra E.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 10:03:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/5014333#M15091</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2026-02-13T10:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Read ADLS gen 2 file through Notebook using a Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/5039482#M15120</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1531356"&gt;@sureshabey1&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? Please let us know if you have any further issues, we are happy to help.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 09:44:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Read-ADLS-gen-2-file-through-Notebook-using-a-Connection/m-p/5039482#M15120</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2026-02-16T09:44:05Z</dc:date>
    </item>
  </channel>
</rss>

