<?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: Incremental refresh in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4892894#M64016</link>
    <description>&lt;P&gt;You are welcome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Dec 2025 10:25:13 GMT</pubDate>
    <dc:creator>anilelmastasi</dc:creator>
    <dc:date>2025-12-04T10:25:13Z</dc:date>
    <item>
      <title>Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887442#M63943</link>
      <description>&lt;P&gt;Hi friends, I am using python script in power bi to connect Odoo server to get data.I used XML RPC.It hits it's API limit and failed to get refreshed.it has large size of data.How to set incremental refresh on that dataset?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 09:30:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887442#M63943</guid>
      <dc:creator>monikapatil2612</dc:creator>
      <dc:date>2025-11-27T09:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887681#M63947</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/540258"&gt;@monikapatil2612&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Incremental refresh requires a data source that supports query folding. However Python data sources never fold, so Power BI cannot push date filters to Odoo. It must re-download the entire dataset and this causes exceeding API limits.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My recommendation is using a staging database. Can you create a python script to load data into any Database of your company use?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 12:14:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887681#M63947</guid>
      <dc:creator>anilelmastasi</dc:creator>
      <dc:date>2025-11-27T12:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887705#M63949</link>
      <description>&lt;P&gt;Hy&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/540258"&gt;@monikapatil2612&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;In my case, I have a SharePoint folder where users upload files every day, and the datasets have grown to more than &lt;STRONG&gt;6 million rows&lt;/STRONG&gt;. Performance became a huge problem, and refresh times were unacceptable. Because of corporate restrictions and cost limitations, I couldn’t use any other storage solutions like a database.&lt;/P&gt;&lt;P&gt;What I did was create &lt;STRONG&gt;two dataflows&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;One dataflow for the historical data&lt;/STRONG&gt; (which doesn’t change).&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Another dataflow only for the incremental data&lt;/STRONG&gt; uploaded daily.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This approach solved my performance issues and made the refresh process much faster.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 12:50:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887705#M63949</guid>
      <dc:creator>rodrigosan</dc:creator>
      <dc:date>2025-11-27T12:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887892#M63953</link>
      <description>&lt;LI-CODE lang="markup"&gt;Incremental refresh requires a data source that supports query folding&lt;/LI-CODE&gt;
&lt;P&gt;Not entirely accurate.&amp;nbsp; It prefers that the query folds, but it does not strictly require it.&amp;nbsp; Non-folding sources will not provide any benefit to the source and network, but this will not impact the partition management.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 17:59:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887892#M63953</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-11-27T17:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887893#M63954</link>
      <description>&lt;LI-CODE lang="markup"&gt;What I did was create two dataflows:&lt;/LI-CODE&gt;
&lt;P&gt;What you did was to create a manual process for partition management.&amp;nbsp; You could have done the same in the semantic model directly, without the dataflows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you have now is an incremental refresh on top of an incremental refresh.&amp;nbsp; That can be optimized.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 18:02:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4887893#M63954</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-11-27T18:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4888149#M63959</link>
      <description>&lt;P&gt;If I do not remember wrong, I read something like this 1.5-2 years ago. When I check documentation now, yes, non-folding queries are acceptable but not recommended.&amp;nbsp;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_8bd88a55a2be2fanilelmastasi_0" class=""&gt;&amp;nbsp;
&lt;DIV id="tinyMceEditor_8bd88a55a2be2fanilelmastasi_1" class=""&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="query-folding-warning.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1313442i9DD0AA004B0DAEA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="query-folding-warning.png" alt="query-folding-warning.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, query folding for life &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 28 Nov 2025 07:16:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4888149#M63959</guid>
      <dc:creator>anilelmastasi</dc:creator>
      <dc:date>2025-11-28T07:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4888150#M63960</link>
      <description>&lt;P&gt;If I do not remember wrong, I read something like this 1.5-2 years ago. When I check documentation now, yes, non-folding queries are acceptable but not recommended.&amp;nbsp;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_8bd88a55a2be2fanilelmastasi_0" class=""&gt;&amp;nbsp;
&lt;DIV id="tinyMceEditor_8bd88a55a2be2fanilelmastasi_1" class=""&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="query-folding-warning.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1313442i9DD0AA004B0DAEA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="query-folding-warning.png" alt="query-folding-warning.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, query folding for life &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 28 Nov 2025 07:16:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4888150#M63960</guid>
      <dc:creator>anilelmastasi</dc:creator>
      <dc:date>2025-11-28T07:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4889051#M63967</link>
      <description>&lt;P&gt;Thankyou,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/718078"&gt;@anilelmastasi&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/287307"&gt;@rodrigosan&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;&amp;nbsp; for your responses.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Hi monikapatil2612,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We appreciate your inquiry through the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We would like to inquire whether have you got the chance to check the solutions provided by&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/718078"&gt;@anilelmastasi&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/287307"&gt;@rodrigosan&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;&amp;nbsp; to resolve the issue. We hope the information provided helps to clear the query. Should you have any further queries, kindly feel free to contact the Microsoft Fabric community.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Nov 2025 14:06:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4889051#M63967</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-11-30T14:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4889920#M63979</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;&amp;nbsp;, thanks for the input! While I agree that standard Incremental Refresh is usually the way to go, the bottleneck here is the SharePoint Folder connector, which does not support Query Folding.&lt;/P&gt;&lt;P&gt;If I relied on the native Incremental Refresh in the Semantic Model, the mashup engine would still likely scan the metadata of all files to apply the date filters, causing the same I/O bottleneck.&lt;BR /&gt;By separating the Dataflows effectively, I force the engine to completely ignore the historical files during the daily refresh, which creates a 'hard partition' that SharePoint can't provide natively.&lt;/P&gt;&lt;P&gt;Ideally, I would use a SQL DB with folding, but given the constraints, this manual partitioning was the only way to bypass the scanning overhead.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 19:06:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4889920#M63979</guid>
      <dc:creator>rodrigosan</dc:creator>
      <dc:date>2025-12-01T19:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4890273#M63987</link>
      <description>&lt;P&gt;Yes I can pyhton script to load data to database.Can you guide me on which database should I select and what is best option among different cloud to store python script and databse ?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 05:51:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4890273#M63987</guid>
      <dc:creator>my_patil</dc:creator>
      <dc:date>2025-12-02T05:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4890454#M63993</link>
      <description>&lt;P&gt;No I am not that much enough to write pyhton script to load data to database but I can do..Can you guide me on which database should I select and what is best option among different cloud to store python script and databse ?&lt;/P&gt;&lt;DIV class=""&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 02 Dec 2025 08:00:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4890454#M63993</guid>
      <dc:creator>my_patil</dc:creator>
      <dc:date>2025-12-02T08:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4890754#M63997</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1446859"&gt;@my_patil&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you company use Microsoft products, you can use Azure SQL Database.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And for python script you can use Azure Functions. It runs on a schedule and it is serverless (no virtual machine to manage).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After writing to Azure SQL Database, you can apply incremental refresh policies.&lt;/P&gt;
&lt;P&gt;In Azure SQL DB, create table and add updated_at and write_date columns.&lt;/P&gt;
&lt;P&gt;In python script, you can use&amp;nbsp;xmlrpc.client library.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it gives you an idea.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 13:33:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4890754#M63997</guid>
      <dc:creator>anilelmastasi</dc:creator>
      <dc:date>2025-12-02T13:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4891983#M64009</link>
      <description>&lt;P&gt;Hi monikapatil2612,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are following up to see if what we shared solved your issue. If you need more support, please reach out to the Microsoft Fabric community.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 16:46:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4891983#M64009</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-12-03T16:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4892891#M64015</link>
      <description>&lt;P&gt;Thank you very much for your help! Your guidence is really useful to me.&lt;BR /&gt;I have proposed as you said to manager. I am waiting for his response on this.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Dec 2025 10:23:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4892891#M64015</guid>
      <dc:creator>my_patil</dc:creator>
      <dc:date>2025-12-04T10:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental refresh</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4892894#M64016</link>
      <description>&lt;P&gt;You are welcome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Dec 2025 10:25:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Incremental-refresh/m-p/4892894#M64016</guid>
      <dc:creator>anilelmastasi</dc:creator>
      <dc:date>2025-12-04T10:25:13Z</dc:date>
    </item>
  </channel>
</rss>

