Refresh semantic model
Refreshes a Semantic Model in a Microsoft Fabric Workspace.
This action calls the PowerBI Refresh API to refresh a semantic model. The action can be "fire-and-forget", or it can wait for the refresh to complete (see properties below). Note that a refresh may take a long time to complete, depending on the size of the model, resource constraints and current load on the Power BI service. Power BI may also decide to drop the refresh request if there has been too many refresh requests in a short period of time.
Note
You can only refresh semantic models using the Import
storage mode. Read more about data refresh in Power BI here.
Properties
Name | Type | Description |
---|---|---|
Connection | Required | The Microsoft Fabric Connection used to make an authenticated request to the Microsoft Fabric REST API. To create a Connection, please follow these steps. |
Workspace | Required | The Id of the Workspace that contains the semantic model you want to refresh. You can select a specific workspace, or get the Workspace Id from a variable. |
Semantic model | Required | The Id of the semantic model to refresh. You can select a specific model, or get the semantic model Id from a variable. |
Refresh type | Optional | The type of processing to perform. Options are Full , DataOnly , and Automatic . The default is Automatic . Read more about refresh types here. |
Retry count | Optional | The number of times the operation retries before failing. The default value is 0. |
Wait for completion | Enable this option if you want the action to wait for the refresh to complete before continuing execution of the Flow. Note that this may take a long time, depending on the size of the model and other factors as described under Considerations and limitations below. | |
Raise exception on failure | Enable this option if you want the action to raise an error if Power BI reports back that the refresh has failed for any reason. If you disable this option, the Flow will not automatically alert you if the refresh fails. Instead, you can examine the Status property of the response object returned from the action. |
Returns
This action returns a response object with the following properties.
Name | Type | Description |
---|---|---|
OperationId | String | The id of the refresh request returned from the Power BI API. |
Status | String | Completed , Failed , Unknown , Disabled , or Cancelled . |
Example
{
"operationId": "474fc5a0-3d69-4c5d-adb4-8a846fa5580b",
"status": "Unknown"
}
Default parameters
The Power BI Refresh API is called with the Retry count
and Refresh type
properties as specified in the properties list above.
The remaining parameters use default values as specified here.
Considerations and limitations
Please refer to the Power BI API documentation here to learn about limitations and considerations when refreshing semantic models.
Note
PowerBI accepts only one refresh operation at a time for a model. If there's a current running refresh and another request is submitted, Power BI raises an error and returns a 400 Bad Request
HTTP status code.
Semantic model eviction
If the Power BI API returns an error describing that the semantic model has been evicted during the refresh operation, Flow automatically retries the refresh one time. Read more about model eviction here.
Large semantic models
Considerations and limitations for large semantic models
Error handling
Automatic retry for model eviction
If the Power BI API returns an error describing that the semantic model has been evicted during the refresh operation, Flow automatically retries the refresh one time. Read more about model eviction here.
Manual error handling and retries
You can implement a custom retry logic by wrapping the action in a Try-Catch action inside a While-loop using a counter to break out of the loop after a certain number of retries.
If you have enabled the Raise exception on failure
property, you can handle all errors in the Catch-route and break the loop if you don't want to retry the refresh. (Remeber to also exit the loop when the refresh completes without failure.)