Forum Discussion

etuckeriv's avatar
etuckeriv
Frequent Visitor
4 years ago
Solved

600 Second Timeout Setting?

Hello,   I am trying to connect to a very large dataset, but as Power BI begins to load the rows I get this error:   I think I've read that there is a way to change the time out value, but ...
  • Anonymous's avatar
    Anonymous
    4 years ago

    etuckeriv - Are you really sure that you need to download Analysis Service cube data into Power BI model?  You could be better off using SSMS or DAX Studio to integrate the data, or importing the data from Source.   If from Power BI dataset, extract too much data could exceed CPU and memory limits leading to poor performance.


    The following will increase the timeout from 600 seconds to 900 seconds.  Note #duration( day, hour, minute, seconds) 

    Source = AnalysisServices.Database( #"Server", #"Database", [Query="MDX or DAX String", ConnectionTimeout=#duration( 0, 0, 15, 0 ) ] )