<?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: Modeling for Multiple Granularities and 1000+ Customers (OneLake layer) in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4828083#M63117</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107617"&gt;@jaryszek&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;When organizing data in a shared Lakehouse by tenant_id and date, files are stored in a nested folder structure like:&lt;BR /&gt;/tenant_id=&amp;lt;tenant_id&amp;gt;/year=&amp;lt;yyyy&amp;gt;/month=&amp;lt;mm&amp;gt;/day=&amp;lt;dd&amp;gt;/.&lt;BR /&gt;Fabric automatically manages file names and partitions when using Spark or Pipelines. You can view the folder structure by selecting “View Files” in the Lakehouse UI. This method enables scalable and efficient management of data across multiple customers and granularities.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/tutorial-lakehouse-partition" target="_blank"&gt;Load data to Lakehouse using partition - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Wed, 17 Sep 2025 06:14:54 GMT</pubDate>
    <dc:creator>v-saisrao-msft</dc:creator>
    <dc:date>2025-09-17T06:14:54Z</dc:date>
    <item>
      <title>Modeling for Multiple Granularities and 1000+ Customers (OneLake layer)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4822279#M63059</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I’m designing a solution in Fabric (OneLake, Direct Lake only – no Power Query, no Warehouse) and need advice on &lt;STRONG&gt;how to model for multiple granularities across 1000+ customers&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Context:&lt;BR /&gt;- I’ll have &lt;STRONG&gt;1000+ customers&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;- A &lt;STRONG&gt;baseline semantic model&lt;/STRONG&gt; should hold the common schema and measures.&lt;/P&gt;&lt;P&gt;- Each customer may need different levels of detail:&lt;/P&gt;&lt;P&gt;- Monthly (e.g. year 2024 by months)&lt;/P&gt;&lt;P&gt;- Daily / Last 7 days vs Previous 7 days&lt;/P&gt;&lt;P&gt;- I’m unsure how many &lt;STRONG&gt;Lakehouses&lt;/STRONG&gt; should be created:&lt;/P&gt;&lt;P&gt;- One per customer?&lt;/P&gt;&lt;P&gt;- Or one large Lakehouse with partitioning/RLS/shortcuts?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;My main question is:&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":backhand_index_pointing_right:"&gt;👉&lt;/span&gt; &lt;STRONG&gt;What are the possible modeling approaches for handling multiple granularities?&lt;BR /&gt;-&amp;nbsp;&lt;/STRONG&gt;Do people usually build a star schema with multiple fact tables (daily, monthly, rolling 7d)?&lt;/P&gt;&lt;P&gt;- Or do they keep just one detailed fact table and aggregate on the fly?&lt;/P&gt;&lt;P&gt;- Are there other approaches I should consider?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I’d also appreciate any advice on:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;How to design the &lt;STRONG&gt;baseline semantic model&lt;/STRONG&gt; so it scales across 1000 customers.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Best practices for balancing &lt;STRONG&gt;performance, maintainability, and storage&lt;/STRONG&gt; in this kind of multi-customer / multi-granularity setup.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Jacek&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 10:07:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4822279#M63059</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-09-10T10:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Modeling for Multiple Granularities and 1000+ Customers (OneLake layer)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4822904#M63069</link>
      <description>&lt;P&gt;Hello !&lt;/P&gt;
&lt;P&gt;Thank you for posting on Fabric community.&lt;/P&gt;
&lt;P&gt;For 1k+ customers in Fabric (Direct Lake only), you may choose&amp;nbsp;small number of shared Lakehouses by domain over one per customer where you store all tenants in shared delta tables partitioned by tenant_id and date and keep it with OPTIMIZE/Z-ORDER.&lt;/P&gt;
&lt;P&gt;You can split into separate lakehouses and very large tenants.&lt;/P&gt;
&lt;P&gt;You can use multi-grain facts where you&amp;nbsp;keep a detailed daily or transaction fact with&amp;nbsp;materialized daily and monthly aggregates&amp;nbsp;and refresh them with Fabric notebooks or data engineering pipelines.&lt;/P&gt;
&lt;P&gt;You can publish one baseline semantic model with conformed dimensions and apply&amp;nbsp;dynamic RLS over a security_user_customer mapping so each user only sees their tenants and keep the reports with live connection so you deploy and manage the dataset once.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 20:45:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4822904#M63069</guid>
      <dc:creator>AmiraBedh</dc:creator>
      <dc:date>2025-09-10T20:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Modeling for Multiple Granularities and 1000+ Customers (OneLake layer)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4823104#M63073</link>
      <description>&lt;P&gt;thank you.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Can you elaborate this?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;"&lt;SPAN&gt;shared Lakehouses by domain over one per customer where you store all tenants in shared delta tables partitioned by tenant_id and date and keep it with OPTIMIZE/Z-ORDER."&lt;BR /&gt;&lt;BR /&gt;what doest it mean shared lakehouses which store tenants inside?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 05:30:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4823104#M63073</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-09-11T05:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Modeling for Multiple Granularities and 1000+ Customers (OneLake layer)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4826081#M63104</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107617"&gt;@jaryszek&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/332696"&gt;@AmiraBedh&lt;/a&gt;, for your insights.&lt;/P&gt;
&lt;P&gt;Use a single shared Lakehouse to store detailed data, partitioned by tenant_id and date. To query performance, include lightweight pre-aggregated tables, like monthly or rolling 7-day summaries. Improve efficiency by clustering on tenant_id, partitioning by date, and running OPTIMIZE regularly. For very large customers, consider separate lakehouses. This strategy ensures scalability, efficiency, and simpler management.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-in/power-bi/guidance/star-schema" target="_blank"&gt;Understand star schema and the importance for Power BI - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-in/fabric/fundamentals/direct-lake-overview" target="_blank"&gt;Direct Lake overview - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 08:43:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4826081#M63104</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-09-15T08:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Modeling for Multiple Granularities and 1000+ Customers (OneLake layer)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4827204#M63110</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;Use a single shared Lakehouse to store detailed data, partitioned by tenant_id and date.&amp;nbsp;"&lt;BR /&gt;&lt;BR /&gt;Please describe exactly how files names should look like? Can you please provide patterns?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 07:38:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4827204#M63110</guid>
      <dc:creator>jaryszek</dc:creator>
      <dc:date>2025-09-16T07:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Modeling for Multiple Granularities and 1000+ Customers (OneLake layer)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4828083#M63117</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/107617"&gt;@jaryszek&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;When organizing data in a shared Lakehouse by tenant_id and date, files are stored in a nested folder structure like:&lt;BR /&gt;/tenant_id=&amp;lt;tenant_id&amp;gt;/year=&amp;lt;yyyy&amp;gt;/month=&amp;lt;mm&amp;gt;/day=&amp;lt;dd&amp;gt;/.&lt;BR /&gt;Fabric automatically manages file names and partitions when using Spark or Pipelines. You can view the folder structure by selecting “View Files” in the Lakehouse UI. This method enables scalable and efficient management of data across multiple customers and granularities.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-factory/tutorial-lakehouse-partition" target="_blank"&gt;Load data to Lakehouse using partition - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Sep 2025 06:14:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Modeling-for-Multiple-Granularities-and-1000-Customers-OneLake/m-p/4828083#M63117</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-09-17T06:14:54Z</dc:date>
    </item>
  </channel>
</rss>

