Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
dzav
Frequent Visitor

Dataset refresh not refreshing

I built a pipeline that runs a foreach loop that triggers a notebook to refresh Power BI semantic models. It's pretty simple - I pass parameters into the notebook in the first cell and then use the parameters to refresh like this:

 

 

 

 

import sempy.fabric as fabric 

fabric.refresh_dataset(
    workspace = WorkspaceName,
    dataset = SemanticModel
)
    
print(WorkspaceName, SemanticModel)

 

 

 

 

Note that I'm experiencing a service bug where the Semantic Model Refresh activity isn't available (I submitted a ticket).

 

This refresh appears to be working - the last refresh date is updated and the refresh is logged. However, the reports themselves aren't updated. If I refresh manually, they work. The difference between the two that I see is this.

 

Scheduled refresh shows:

Via Enhanced Api

# Type Start End Duration Status Error

1Data5/8/2024, 12:42:02 PM5/8/2024, 12:42:03 PM00:00:00.875Completed

 

Manual refresh shows:

# Type Start End Duration Status Error

1Data5/8/2024, 3:17:39 PM5/8/2024, 3:17:49 PM00:00:09.517Completed
1Query Cache5/8/2024, 3:17:49 PM5/8/2024, 3:17:49 PM00:00:00.203Completed

 

It appears that the query cache step is necessary to refresh the report visuals, but how do I do this with sempy.fabric?

1 ACCEPTED SOLUTION
dzav
Frequent Visitor

For what it's worth, I think I figured it out. It was a matter of specifying refresh_type = 'full' 

The default is 'automatic', which apparently doesn't refresh the dataset.
 

View solution in original post

1 REPLY 1
dzav
Frequent Visitor

For what it's worth, I think I figured it out. It was a matter of specifying refresh_type = 'full' 

The default is 'automatic', which apparently doesn't refresh the dataset.
 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors