Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have an Odata query that is made from the source below. I sometimes get an error that the "An existing connection was forcibly closed by the remote host". I would like to extend the query before timeout comes.
let
Source = OData.Feed("https://my999999.sapbydesign.com/sap/byd/odata/ana_businessanalytics_analytics.svc/OFIWNMEIQueryResu...", null, [Implementation="2.0"]),
Apparently PowerQuery does have [Timeout=#duration(0,0,15,0)] but im not quite sure how to use this in a PQ. How do i extend my Odata query above to put the timeout after 15min?
Thanks!
You can try this:
Source=OData.Feed("https://my999999.sapbydesign.com/sap/byd/odata/ana_businessanalytics_analytics.svc/OFIWNMEIQueryResu...", null, [Implementation="2.0", Timeout=#duration(0,0,15,0)]),
Reference: OData.Feed - PowerQuery M | Microsoft Docs
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
Check out the July 2025 Power BI update to learn about new features.