You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
I have imported a .PBIX file on an azure work space. and it seems to be taking a while to complete, but it seemed to be taking a forever. so i would like to know whether there is a problem with the importing process or the process is still in progress..
is there a command to view that status? Thank you
The text was updated successfully, but these errors were encountered:
I'm having the same issue with a long import time. I do see
[ powerbi ] Importing C:\PowerBI_Data\somefile.pbix to workspace: d8d3...5
then after a very long time I get
[ powerbi ] read ECONNRESET
At a minimum it would be nice to get some ASCII progress bar as the upload is going. But yes, the underlining issues must be fixed first. My pbix is ~330MB in size.
Importing a large file could fail because of a request redirecting.
That means, if you import a file using cli (which uses Power BI API), the request will arrive to the closest Power BI Cluster, and then the request will be redirected to the correct cluster which can handle the request.
To avoid that, you need to use a flag called PreferClientRouting (we don't have a support to it in cli) https://msdn.microsoft.com/en-us/library/azure/mt711504.aspx
using this flag, if the request arrives to a wrong cluster, the request will not be redirected. the request will return the name of the good cluster to use in Location header. you can use the location header to call the right cluster directly which will succeed.
I have imported a .PBIX file on an azure work space. and it seems to be taking a while to complete, but it seemed to be taking a forever. so i would like to know whether there is a problem with the importing process or the process is still in progress..
is there a command to view that status? Thank you
The text was updated successfully, but these errors were encountered: