<?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 AWS S3 Shortcut to Fabric Lakehouse; Massive Compute Spike in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/AWS-S3-Shortcut-to-Fabric-Lakehouse-Massive-Compute-Spike/m-p/5181919#M16202</link>
    <description>&lt;P&gt;Hi there, we're provided an S3 bucket with data we need to use for creating reports. Instead of replicating the data, we chose to use Fabric Shortcuts instead, to load up a lakehouse and use this lakehouse to serve reports.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Shortcut works, but somehow it uses massive amounts of compute; one instance (not even the whole day) it used up &amp;gt;330,000% (no typo) of our F8 compute.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The S3 source is not large at all, probably 10GB or so, and we've already switched caching on, on a weekly basis. So we're really not sure why there's such a spike; maybe 300% over I can understand and we'd probably need higher SKU.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help appreciated. Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 13 May 2026 06:59:26 GMT</pubDate>
    <dc:creator>transposed</dc:creator>
    <dc:date>2026-05-13T06:59:26Z</dc:date>
    <item>
      <title>AWS S3 Shortcut to Fabric Lakehouse; Massive Compute Spike</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/AWS-S3-Shortcut-to-Fabric-Lakehouse-Massive-Compute-Spike/m-p/5181919#M16202</link>
      <description>&lt;P&gt;Hi there, we're provided an S3 bucket with data we need to use for creating reports. Instead of replicating the data, we chose to use Fabric Shortcuts instead, to load up a lakehouse and use this lakehouse to serve reports.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Shortcut works, but somehow it uses massive amounts of compute; one instance (not even the whole day) it used up &amp;gt;330,000% (no typo) of our F8 compute.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The S3 source is not large at all, probably 10GB or so, and we've already switched caching on, on a weekly basis. So we're really not sure why there's such a spike; maybe 300% over I can understand and we'd probably need higher SKU.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help appreciated. Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 06:59:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/AWS-S3-Shortcut-to-Fabric-Lakehouse-Massive-Compute-Spike/m-p/5181919#M16202</guid>
      <dc:creator>transposed</dc:creator>
      <dc:date>2026-05-13T06:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: AWS S3 Shortcut to Fabric Lakehouse; Massive Compute Spike</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/AWS-S3-Shortcut-to-Fabric-Lakehouse-Massive-Compute-Spike/m-p/5182301#M16216</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1593023"&gt;@transposed&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Interesting scenario.&amp;nbsp; Honestly, I don’t think this is necessarily a Fabric bug. It looks more like a mismatch between the shortcut usage pattern and a BI serving workload.&lt;/P&gt;&lt;P&gt;A OneLake shortcut to AWS S3 is essentially a virtual reference to external storage, not a fully optimized native Delta table physically stored inside OneLake.&lt;/P&gt;&lt;P&gt;So even if the source is only ~10 GB, the compute impact can still become very large depending on :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The report design&lt;/LI&gt;&lt;LI&gt;The number of visuals&lt;/LI&gt;&lt;LI&gt;Concurrent users&lt;/LI&gt;&lt;LI&gt;Refresh frequency&lt;/LI&gt;&lt;LI&gt;Query parallelism&lt;/LI&gt;&lt;LI&gt;And the file structure in S3&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Power BI reports can generate many simultaneous queries behind the scenes, and with external shortcuts those queries are usually much less optimized than queries against native Delta tables stored directly in Fabric.&lt;/P&gt;&lt;P&gt;That’s why you can sometimes see surprisingly large CU spikes even on relatively small datasets.&lt;/P&gt;&lt;P&gt;The caching helps, but weekly cache alone usually doesn’t protect you from repeated interactive report queries happening between refresh windows.&lt;/P&gt;&lt;P&gt;What I would personally recommend as the long-term architecture :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use the S3 shortcut only as the ingestion/landing layer&lt;/LI&gt;&lt;LI&gt;Materialize the data into native Delta tables inside the Lakehouse (Notebook, Copy Job, Dataflow Gen2, etc.)&lt;/LI&gt;&lt;LI&gt;Point Power BI to the Delta tables instead of directly to the shortcut-backed data&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Once the data is materialized in Delta format inside Fabric, you benefit from :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;V-Order optimization&lt;/LI&gt;&lt;LI&gt;Better column pruning&lt;/LI&gt;&lt;LI&gt;Local OneLake optimization&lt;/LI&gt;&lt;LI&gt;Reduced external reads&lt;/LI&gt;&lt;LI&gt;Much lower CU consumption overall&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If the shortcut must remain the serving layer for business reasons, I would at least try :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;More frequent caching&lt;/LI&gt;&lt;LI&gt;Reducing the number of visuals per page&lt;/LI&gt;&lt;LI&gt;Avoiding highly interactive Direct Lake patterns directly on shortcut-backed data&lt;/LI&gt;&lt;LI&gt;Validating whether the S3 files are properly partitioned Parquet files&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;So my feeling is that the spike itself is probably the symptom of repeated external query execution rather than raw data size alone.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps you narrow it down &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;If you find the exact root cause or what optimization helped the most, feel free to share it back here this is a really useful scenario for the community.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;References :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/onelake/onelake-shortcuts" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/onelake/onelake-shortcuts&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/delta-optimization-and-v-order?tabs=sparksql" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/delta-optimization-and-v-order&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/lakehouse-and-delta-tables" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/lakehouse-and-delta-tables&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/fundamentals/direct-lake-overview" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/fundamentals/direct-lake-overview&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 21:42:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/AWS-S3-Shortcut-to-Fabric-Lakehouse-Massive-Compute-Spike/m-p/5182301#M16216</guid>
      <dc:creator>Tamanchu</dc:creator>
      <dc:date>2026-05-13T21:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: AWS S3 Shortcut to Fabric Lakehouse; Massive Compute Spike</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/AWS-S3-Shortcut-to-Fabric-Lakehouse-Massive-Compute-Spike/m-p/5182335#M16217</link>
      <description>&lt;P&gt;Thank you Tamanchu for the detailed response! Appreciate it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your response does help us narrow down the alternatives we should pursue. We'd probably not be able to pinpoint the cause of that spike as I don't think we'd find any partner to help trace that operation/transaction to diagnose what went on, so we'd probably just work around this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 00:57:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/AWS-S3-Shortcut-to-Fabric-Lakehouse-Massive-Compute-Spike/m-p/5182335#M16217</guid>
      <dc:creator>transposed</dc:creator>
      <dc:date>2026-05-14T00:57:20Z</dc:date>
    </item>
  </channel>
</rss>

