How many reports can I create in one power bi workspace ?
How many datasources can I create over there ?
Details:
We are going to implement our own application and use Power BI Embedded features. Our app will own all data, thus our users will be working with reports on behalf of one master Power BI Pro account. Since every user could have multiple reports the question is how many reports can I store into one workspace ? I found some links where developers claim, that only 200 reports can be saved into one workspace, but I've not found any official doc on this. Currently we created one report in workspace and cloned it via saveAs function of Power BI JS SDK. So far I could create more than 1000 reports. So what limits are ?
UPDATE1
So far I reached limit in 1005 reports in one workspace. I can not create new one 1006s report neither from Power BI Services nor API call. Just got error "Unable to save the report" with some technical details. Once I removed one report I can create new one, but again can't exceed limit in 1005 reports.
UPDATE2
So when I save report (in Power BI Services ) got standard message box with error and link to "technical details", when click on it I set of ids: Using embedded JS SDK got similar thing:
function GetCurrentReport() {
var embedContainer = $('#reportContainer')[0];
return powerbi.get(embedContainer);
}
const report = GetCurrentReport();
report.saveAs({name:"NewReportName1111"});
In both cases 500 error came from some APIs.
UPDATE3
It looks I reach limit, Fidler says:
some API throws ResourceLimitsReportCountExceeded
exception.
Do someone have any ideas how to increase this CountPermitted
?