<?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 sends weirds range calls in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3368183#M43764</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;RangeStart -&amp;gt; used as GTE param sent to server
RangeEnd -&amp;gt; used as TLE param sent to server
On the server its allow only GTE and TLE, not GT and TL. Why is it important?&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If both RangeStart and RangeEnd are inclusive then you risk duplicating data in adjacent partitions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;how its takes the setting I've enter in Power BI Desktop (2 years archive, 1 day before refresh) and using it when I perform refersh on Power BI Service&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. You specified 2 years for archive.&amp;nbsp; That means the Power BI service will create partitions for each &lt;STRONG&gt;calendar&lt;/STRONG&gt; year in that range, meaning this can be up to &lt;STRONG&gt;three&lt;/STRONG&gt; partitions, not just the two you think you specified.&lt;/P&gt;
&lt;P&gt;2. You specified 1 day for refresh.&amp;nbsp; That means a couple of things.&amp;nbsp; First of all, you will see up to &lt;STRONG&gt;32&lt;/STRONG&gt; daily partitions. Then (because of 1.) you will see that the Power BI Service is consolidating these daily partitions into monthly, quarterly and yearly partitions (all in calendar terms).&amp;nbsp; This is done for you automatically.&amp;nbsp; And secondly if you use an XMLA query tool you can see the last refresh date for each partition so you can confirm that you your newest daily partition is indeed the only one that got touched&amp;nbsp; (except for consolidation days).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 07 Aug 2023 10:45:53 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2023-08-07T10:45:53Z</dc:date>
    <item>
      <title>incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3366979#M43747</link>
      <description>&lt;P&gt;I have a connector that first calls the Navigation part and form there it calls the methods fetch data ( I've added 2 parameters RangeStart and RangeEnd ) - to get my data from the service, in this range&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-06 at 16.06.57.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/951732iC5B92BAD15279838/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-06 at 16.06.57.png" alt="Screenshot 2023-08-06 at 16.06.57.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;this lead to successfull E2E working code.&lt;BR /&gt;meaning: I have connector and I set in power BI desktop 2 Parameters&amp;nbsp;RangeStart and RangeEnd and when I call my connecot with those parameters - its put the parameters as GTE and LTE and fetch data accordigly&amp;nbsp; - works great.&lt;BR /&gt;Here are my parameters, and calling the connector&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-06 at 15.40.28.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/951722iC159852B396D8AB0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-06 at 15.40.28.png" alt="Screenshot 2023-08-06 at 15.40.28.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-06 at 15.40.35.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/951723iFADAE3FD71B60375/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-06 at 15.40.35.png" alt="Screenshot 2023-08-06 at 15.40.35.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I refresh on desktop I got those parameters on my server: same as the initial values of RangeStart and RangeEnd I set. which is as expected:&amp;nbsp;"gte"=&amp;gt;"2023-01-01", "lte"=&amp;gt;"2024-01-01"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Then I set refresh incremental setting on the model - I wish to archive&amp;nbsp;2 years and refresh only last day.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-06 at 15.47.48.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/951725i688750FBA38A2043/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-06 at 15.47.48.png" alt="Screenshot 2023-08-06 at 15.47.48.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;then, I've created a report and publish it to Power BI service.&lt;/P&gt;&lt;P&gt;and refresh manually (on demand) the dateset&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-06 at 15.51.03.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/951726i174902EEADDF6852/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-06 at 15.51.03.png" alt="Screenshot 2023-08-06 at 15.51.03.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The weirds was the GTE and LTE values, when I monitor on our server, it makes no scence:&lt;BR /&gt;1.&amp;nbsp;"gte"=&amp;gt;"2021-01-01", "lte"=&amp;gt;"2022-01-01"&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;"gte"=&amp;gt;"2023-08-02", "lte"=&amp;gt;"2023-08-03"&amp;nbsp;&lt;/P&gt;&lt;P&gt;but today is August&amp;nbsp; 6 2023 (so why it fetch year 2021? and why 3 days ago?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you please try to explain?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 06 Aug 2023 13:33:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3366979#M43747</guid>
      <dc:creator>LiranRom</dc:creator>
      <dc:date>2023-08-06T13:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3366980#M43748</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;- can you please advice?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Aug 2023 13:12:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3366980#M43748</guid>
      <dc:creator>LiranRom</dc:creator>
      <dc:date>2023-08-06T13:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3367534#M43752</link>
      <description>&lt;P&gt;You must not use GTE and LTE.&amp;nbsp; Only one of the parameters can be inclusive. Use GTE and LT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Every time you make meta data changes to your query you will reset the partitions. It takes one more refresh to get back into the desired partition structure. If you don't like that, use ALM Toolkit and XMLA partition refreshes.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 05:19:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3367534#M43752</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-08-07T05:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3367871#M43758</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 your feedbacks, but I don't understand how the mechanism works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let me clarify something:&lt;BR /&gt;I have Power BI Pro plan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in the connector code - we fetch data from server by Web.Contents using RelativePath and Query.&amp;nbsp;&lt;/P&gt;&lt;P&gt;we're using the RangeStart and RangeEnd (from PowerBI) in the Query.&lt;/P&gt;&lt;P&gt;RangeStart -&amp;gt; used as GTE param sent to server&lt;/P&gt;&lt;P&gt;RangeEnd -&amp;gt; used as TLE param sent to server&lt;/P&gt;&lt;P&gt;On the server its allow only GTE and TLE, not GT and TL. Why is it important?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still not understand how the incremental refresh&amp;nbsp;mechanism work, how its takes the setting I've enter in Power BI Desktop (2 years archive, 1 day before refresh) and using it when I perform refersh on Power BI Service&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;my expectation was -&lt;/P&gt;&lt;P&gt;first refresh (today = August 8 2023)&amp;nbsp; =&amp;gt; gets 2 years ago from toady. and last day -&lt;/P&gt;&lt;P&gt;meaning:&lt;/P&gt;&lt;P&gt;one call with&lt;/P&gt;&lt;P&gt;RangeStart = August 7 2021&lt;/P&gt;&lt;P&gt;RangeEnd = August 8 2023 (today)&lt;/P&gt;&lt;P&gt;one call with&amp;nbsp;&lt;/P&gt;&lt;P&gt;last day =&amp;gt;RangeStart = August 7 2023;&amp;nbsp;RangeEnd = August 8 2023 (today)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;next refresh (today) =&amp;gt; get only the last day - one call with RangeStart = August 7 2023;&amp;nbsp;RangeEnd = August 8 2023 (today)&lt;/P&gt;&lt;P&gt;next refresh (today) =&amp;gt; get only the last day - one call with RangeStart = August 7 2023;&amp;nbsp;RangeEnd = August 8 2023 (today)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;basically LTE - is not a must. I can call to server without sending it. and it will calculated it as today. which its ok for all calls.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you please explain more, so I can understand?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 08:38:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3367871#M43758</guid>
      <dc:creator>LiranRom</dc:creator>
      <dc:date>2023-08-07T08:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3368183#M43764</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;RangeStart -&amp;gt; used as GTE param sent to server
RangeEnd -&amp;gt; used as TLE param sent to server
On the server its allow only GTE and TLE, not GT and TL. Why is it important?&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If both RangeStart and RangeEnd are inclusive then you risk duplicating data in adjacent partitions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;how its takes the setting I've enter in Power BI Desktop (2 years archive, 1 day before refresh) and using it when I perform refersh on Power BI Service&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. You specified 2 years for archive.&amp;nbsp; That means the Power BI service will create partitions for each &lt;STRONG&gt;calendar&lt;/STRONG&gt; year in that range, meaning this can be up to &lt;STRONG&gt;three&lt;/STRONG&gt; partitions, not just the two you think you specified.&lt;/P&gt;
&lt;P&gt;2. You specified 1 day for refresh.&amp;nbsp; That means a couple of things.&amp;nbsp; First of all, you will see up to &lt;STRONG&gt;32&lt;/STRONG&gt; daily partitions. Then (because of 1.) you will see that the Power BI Service is consolidating these daily partitions into monthly, quarterly and yearly partitions (all in calendar terms).&amp;nbsp; This is done for you automatically.&amp;nbsp; And secondly if you use an XMLA query tool you can see the last refresh date for each partition so you can confirm that you your newest daily partition is indeed the only one that got touched&amp;nbsp; (except for consolidation days).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 10:45:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3368183#M43764</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-08-07T10:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3368469#M43770</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&lt;/P&gt;&lt;P&gt;Can I investigate the partitions of dataset with Pro&amp;nbsp;license?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 13:36:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3368469#M43770</guid>
      <dc:creator>LiranRom</dc:creator>
      <dc:date>2023-08-07T13:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3368532#M43771</link>
      <description>&lt;P&gt;I believe so, but cannot say for sure. Try it via DAX Studio or SSMS.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2023 13:57:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3368532#M43771</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-08-07T13:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3374318#M43824</link>
      <description>&lt;P&gt;I've upgrade my licence to Premium Per User licence, but still can't get into the workspase settings to get the url so I could connect to with external tools like XMLA to see the partitions&lt;/P&gt;&lt;P&gt;what am I missing?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-10 at 16.33.34.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/953829i5EE4301814F873D2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-10 at 16.33.34.png" alt="Screenshot 2023-08-10 at 16.33.34.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-10 at 16.33.16.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/953830i91BF9770E8D0DD82/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-10 at 16.33.16.png" alt="Screenshot 2023-08-10 at 16.33.16.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 13:38:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3374318#M43824</guid>
      <dc:creator>LiranRom</dc:creator>
      <dc:date>2023-08-10T13:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3380579#M43897</link>
      <description>&lt;P&gt;I don't think that works for "My Workspace".&amp;nbsp; Try with a proper shared workspace.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2023 12:24:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3380579#M43897</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-08-15T12:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: incremental Refresh sends weirds range calls</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3384418#M43939</link>
      <description>&lt;P&gt;you are correct. I needed to create &lt;STRONG&gt;new&lt;/STRONG&gt; workspace to have the option to get the URL&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-08-17 at 9.22.14.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/956585i5B07B53B207B5CCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-08-17 at 9.22.14.png" alt="Screenshot 2023-08-17 at 9.22.14.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 06:28:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/incremental-Refresh-sends-weirds-range-calls/m-p/3384418#M43939</guid>
      <dc:creator>LiranRom</dc:creator>
      <dc:date>2023-08-17T06:28:07Z</dc:date>
    </item>
  </channel>
</rss>

