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

Join us at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered

Reply
Matthew_G
Advocate I
Advocate I

Data Pipeline executes multiple times

I have a pipleline and when it runs, either manually or scheduled, it executes multiple times. This seems to occur with any data pipeline we create. Is there something I am doing wrong?

 

To test I created a stored proc in a warehouse that inserts a date into a table. 

 

create table dbo.runCheck (
runDate DATETIME2(0)
)

create procedure dbo.p_insertDate
as
insert into dbo.runCheck(runDate)
select getdate()
GO
 
I then create a new data pipeline and add the stored proc activity.
Matthew_G_0-1700628918643.png

 

 Confrim table is empty
Matthew_G_1-1700629051980.png

 

Execute the pipline and check monitoring hub, I can see it is running multiple times 

 

Matthew_G_2-1700629119790.png

 

Check the count again and I see there are multiple inserts

Matthew_G_3-1700629183166.png

I'm not sure if I am doing something wrong or if there is a bug.

1 ACCEPTED SOLUTION
Matthew_G
Advocate I
Advocate I

We found the issue was a firewall related. There were retries because *.analysis.windows.net was not allowed. This caused multiple instances to be fired off when we manually tried to run the pipeline. Following these instructions worked: https://learn.microsoft.com/en-us/power-bi/enterprise/power-bi-allow-list-urls

View solution in original post

5 REPLIES 5
Matthew_G
Advocate I
Advocate I

We found the issue was a firewall related. There were retries because *.analysis.windows.net was not allowed. This caused multiple instances to be fired off when we manually tried to run the pipeline. Following these instructions worked: https://learn.microsoft.com/en-us/power-bi/enterprise/power-bi-allow-list-urls

Anonymous
Not applicable

Thanks for the details @Matthew_G .

Anonymous
Not applicable

Hi @Matthew_G 
Thanks for using Fabric Community. 
Apologies for the issue you have been facing. Currently this is not a bug.
When I tried to repro the scenario, the pipeline ran only once.

vnikhilanmsft_0-1700649283238.png
vnikhilanmsft_1-1700649296284.png

vnikhilanmsft_2-1700649308592.png

This might require a deeper investigation from our engineering team about your workspace, the pipeline details and the logic behind it to properly understand what might be happening. 

Please go ahead and raise a support ticket to reach our support team:

https://support.fabric.microsoft.com/support
Please provide the ticket number here as we can keep an eye on it.

Thank you.

Thank you! I have logged ticket with TrackingID#2311170050002237 . I thought it could be related to our enviroment and our ops team is also investigating.

Anonymous
Not applicable

Hi @Matthew_G 
Thanks for the details. Please continue using Fabric Community for any help regarding your queries.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors