Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
JibinSebastian
Helper III
Helper III

Scheduling a Microsoft Fabric Pipeline with Specific Time Intervals

I would like to configure a Microsoft Fabric pipeline to run on a recurring schedule with the following requirements:

  • Execute every 10 minutes
  • Start time: 7:10 AM EST
  • End time: 6:50 PM EST
  • Frequency: Monday through Friday only

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?

1 ACCEPTED SOLUTION

Hello @JibinSebastian 

 

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. 

 

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. Maximum 8 scheduled refreshes per day per dataset is allowed. 

 

Considering the above, I suggest you design it the following way:

 

Orchestrator pipeline

Notebook activity (checks against weekends
Scheduled every 10 minutes, business hours only

Pipeline 1 – Data ingestion (trigger if parent Notebook passes as True)
Copy Data

Pipeline 2 – Semantic model refresh (runs after pipeline 1 success, engine may skip or throttle if run within 30 mins)
Semantic model refresh activity

 

Schedule as discussed in previous post:

  • Frequency: every 10 minutes
  • Time window: 07:10–18:50
  • Time zone: EST

 

I trust this will be helpful. If you found this guidance useful, you are welcome to acknowledge with a Kudos or by marking it as a Solution.

View solution in original post

10 REPLIES 10
V-yubandi-msft
Community Support
Community Support

Hi @JibinSebastian ,

We haven’t received any update from your side. Please let us know if you need any additional details or clarification.

 

Thank you.

v-kpoloju-msft
Community Support
Community Support

Hi @JibinSebastian

Thank you for reaching out to the Microsoft Fabric Community Forum. Also, thanks to @Kagiyama_yutaka@lbendlin@lbendlin@deborshi_nag,  for those inputs on this thread.

Has your issue been resolved? If the response provided by the community member @Kagiyama_yutaka@lbendlin@lbendlin@deborshi_nag, addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.

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.

Thank you for using the Microsoft Community Forum.

Kagiyama_yutaka
Helper III
Helper III

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.

Could you please explain a bit on this.

I didn't quite understand that

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.

deborshi_nag
Community Champion
Community Champion

Hello @JibinSebastian 

  

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. 

 

So, effectively your pipeline trigger would look something like this:

Frequency: Minute - Interval: 10 - Time zone: Eastern Standard Time - Start time: 07:10 - End time: 18:50
 
Your notebook logic could include something like this:
 
# skip if it is not a weekday

if now.weekday() >= 5:
    print("Pipeline not scheduled to run on weekends – exiting ...")
    dbutils.notebook.exit("SKIPPED")
 
I trust this will be helpful. If you found this guidance useful, you are welcome to acknowledge with a Kudos or by marking it as a Solution.

Hi @debroshi, thank you for your response.

I currently have two pipelines:

  1. The first pipeline uses Copy Data to move a small amount of data from a large SQL Server table.
  2. The second pipeline is for refreshing a semantic model.

I’m new to Microsoft Fabric and ran into a couple of issues:

  • 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.
  • 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.

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.

Thank you!

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.

 

That is way too frequent.  Consider using Direct Query connection or streaming datasets/RTI.

 

Note:  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.

Hello @JibinSebastian 

 

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. 

 

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. Maximum 8 scheduled refreshes per day per dataset is allowed. 

 

Considering the above, I suggest you design it the following way:

 

Orchestrator pipeline

Notebook activity (checks against weekends
Scheduled every 10 minutes, business hours only

Pipeline 1 – Data ingestion (trigger if parent Notebook passes as True)
Copy Data

Pipeline 2 – Semantic model refresh (runs after pipeline 1 success, engine may skip or throttle if run within 30 mins)
Semantic model refresh activity

 

Schedule as discussed in previous post:

  • Frequency: every 10 minutes
  • Time window: 07:10–18:50
  • Time zone: EST

 

I trust this will be helpful. If you found this guidance useful, you are welcome to acknowledge with a Kudos or by marking it as a Solution.

This worked Thank you for your time and efforts. may be in future fabric will implement cron into pipeline which makes everybodies life easy

Helpful resources

Announcements
April Fabric Update Carousel

Fabric Monthly Update - April 2026

Check out the April 2026 Fabric update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.