<?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: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5177325#M16109</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1380740"&gt;@JibinSebastian&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t received any update from your side. Please let us know if you need any additional details or clarification.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Mon, 04 May 2026 08:56:43 GMT</pubDate>
    <dc:creator>V-yubandi-msft</dc:creator>
    <dc:date>2026-05-04T08:56:43Z</dc:date>
    <item>
      <title>Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158171#M16007</link>
      <description>&lt;P&gt;I would like to configure a Microsoft Fabric pipeline to run on a recurring schedule with the following requirements:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Execute &lt;STRONG&gt;every 10 minutes&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Start time: &lt;STRONG&gt;7:10 AM EST&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;End time: &lt;STRONG&gt;6:50 PM EST&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Frequency: &lt;STRONG&gt;Monday through Friday only&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Could you please provide guidance on how to implement this schedule within Microsoft Fabric, including the appropriate configuration (e.g., cron expression or trigger settings) to meet these requirements?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2026 23:32:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158171#M16007</guid>
      <dc:creator>JibinSebastian</dc:creator>
      <dc:date>2026-04-24T23:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158345#M16010</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1380740"&gt;@JibinSebastian&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately Fabric pipelines currently don't have support for cron expression or weekday only trigger. What you could use is set one trigger that covers rest and apply the weekday logic inside a Notebook in the pipeline.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, effectively your pipeline trigger would look something like this:&lt;/P&gt;&lt;DIV&gt;Frequency: Minute - Interval: 10 - Time zone: Eastern Standard Time - Start time: 07:10 - End time: 18:50&lt;DIV&gt;&amp;nbsp;&lt;DIV&gt;Your notebook logic could include something like this:&lt;DIV&gt;&amp;nbsp;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;FONT size="2"&gt;&lt;EM&gt;# skip if it is not a weekday&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;DIV&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&lt;!--   ScriptorStartFragment   --&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;FONT size="2"&gt;&lt;FONT size="2"&gt;&lt;EM&gt;if now.weekday() &amp;gt;= 5:&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;DIV class=""&gt;&lt;FONT size="2"&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("Pipeline not scheduled to run on weekends – exiting ...")&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbutils.notebook.exit("SKIPPED")&lt;!--   ScriptorEndFragment   --&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 25 Apr 2026 12:03:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158345#M16010</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-04-25T12:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158353#M16011</link>
      <description>&lt;P&gt;Hi @debroshi, thank you for your response.&lt;/P&gt;&lt;P&gt;I currently have two pipelines:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The first pipeline uses Copy Data to move a small amount of data from a large SQL Server table.&lt;/LI&gt;&lt;LI&gt;The second pipeline is for refreshing a semantic model.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I’m new to Microsoft Fabric and ran into a couple of issues:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I tried scheduling the pipeline to run every 10 minutes. It works during active hours, but when Fabric is suspended (outside 7 AM to 7 PM), the pipeline fails to execute.&lt;/LI&gt;&lt;LI&gt;For the semantic model refresh, the scheduler only allows a minimum interval of 30 minutes. However, I need it to refresh every 10 minutes on weekdays between 7 AM and 7 PM.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Could you please guide me on how to set up the trigger properly? It would really help if you could explain it in simple, beginner-friendly terms.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2026 12:53:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158353#M16011</guid>
      <dc:creator>JibinSebastian</dc:creator>
      <dc:date>2026-04-25T12:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158358#M16012</link>
      <description>&lt;P&gt;I think u just run the 10‑min window and let the first Notebook line quietly step out on weekends, ’cause Fabric’s trigger can’t keep weekday‑state at dispatch and this path stays the most stable in real runs.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2026 13:21:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158358#M16012</guid>
      <dc:creator>Kagiyama_yutaka</dc:creator>
      <dc:date>2026-04-25T13:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158360#M16013</link>
      <description>&lt;P&gt;Could you please explain a bit on this.&lt;/P&gt;&lt;P&gt;I didn't quite understand that&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2026 13:27:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158360#M16013</guid>
      <dc:creator>JibinSebastian</dc:creator>
      <dc:date>2026-04-25T13:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158361#M16014</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1380740"&gt;@JibinSebastian&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am assuming your Fabric capacity is paused outside business hours (7AM - 7PM) to save costs. If you set your pipeline to trigger every 10 mins, the trigger will run fine but your pipeline will fail because your capacity is found Paused.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Secondly, Power BI semantic model enforces a 30 min minimum interval window, so the service backend will block it, regardless we tried a 10 min interval.&amp;nbsp;Maximum 8 scheduled refreshes per day per dataset is allowed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Considering the above, I suggest you design it the following way:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Orchestrator pipeline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Notebook activity (checks&amp;nbsp;&lt;/EM&gt;against weekends&lt;EM&gt;)&amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Scheduled every 10 minutes, business hours only&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pipeline 1 – Data ingestion (trigger if parent Notebook passes as True)&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;Copy Data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pipeline 2 – Semantic model refresh (runs after pipeline 1 success, engine may skip or throttle if run within 30 mins)&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;Semantic model refresh activity&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Schedule as discussed in previous post:&lt;/P&gt;&lt;DIV&gt;&lt;UL&gt;&lt;LI&gt;Frequency: every &lt;STRONG&gt;10 minutes&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Time window: &lt;STRONG&gt;07:10–18:50&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;Time zone: &lt;STRONG&gt;EST&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 25 Apr 2026 13:28:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158361#M16014</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-04-25T13:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158464#M16015</link>
      <description>&lt;LI-CODE lang="markup"&gt;For the semantic model refresh, the scheduler only allows a minimum interval of 30 minutes. However, I need it to refresh every 10 minutes on weekdays between 7 AM and 7 PM.&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is way too frequent.&amp;nbsp; Consider using Direct Query connection or streaming datasets/RTI.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note:&amp;nbsp; If you request a refresh via API (for example through Power Automate) there is no such limit - but you must implement your own polling to find out if there is currently a refresh in progress before you submit another request.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2026 22:18:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158464#M16015</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2026-04-25T22:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158494#M16016</link>
      <description>&lt;P&gt;sure. I just meant Fabric’s trigger can only fire every 10 min and it can’t check weekdays or time windows by itself. so let the trigger run, and add one line in the Notebook to skip if it’s weekend or outside 7:10–18:50.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Apr 2026 04:23:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5158494#M16016</guid>
      <dc:creator>Kagiyama_yutaka</dc:creator>
      <dc:date>2026-04-26T04:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5160542#M16060</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1380740"&gt;@JibinSebastian&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for reaching out to the Microsoft Fabric Community Forum. Also, thanks to&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1550082"&gt;@Kagiyama_yutaka&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;,&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 those inputs on this thread.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Has your issue been resolved? If the response provided by the community member&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1550082"&gt;@Kagiyama_yutaka&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1445078"&gt;@deborshi_nag&lt;/a&gt;, addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps clarify things and let me know what you find after giving these steps a try happy to help you investigate this further.&lt;BR /&gt;&lt;BR /&gt;Thank you for using the Microsoft Community Forum.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 04:48:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5160542#M16060</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2026-04-29T04:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5177325#M16109</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1380740"&gt;@JibinSebastian&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t received any update from your side. Please let us know if you need any additional details or clarification.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 08:56:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5177325#M16109</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2026-05-04T08:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5177474#M16112</link>
      <description>&lt;P&gt;This worked Thank you for your time and efforts. may be in future fabric will implement cron into pipeline which makes everybodies life easy&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 12:43:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Scheduling-a-Microsoft-Fabric-Pipeline-with-Specific-Time/m-p/5177474#M16112</guid>
      <dc:creator>JibinSebastian</dc:creator>
      <dc:date>2026-05-04T12:43:51Z</dc:date>
    </item>
  </channel>
</rss>

