Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Deployment Pipelines - Incremental Refresh & Full Refresh

I'm starting to use Deployment Pipelines for my dataset which is set to be incrementally refresh.

I have a scenario when I don't do any changes but I need to do full refresh on each environment because source data has been changed.

How can I do full refresh of the test/production environment in the PBI service? Should I do that using Management Studio, connect to dataset instance and run full refresh there? Is there any other way?

Thanks

  • Hi Anonymous ,

     

    In addition to refreshing the full partition using the SSMS connection datasets, you can also try a full refresh using the Datasets - Refresh Dataset In Group Rest API. Here is my test request.

     

    Request URL:

    POST https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/refreshes

    Body:

    {
        "type": "Full",
        "commitMode": "transactional",
        "maxParallelism": 2,
        "retryCount": 2,
        "applyRefreshPolicy": "false"
    }

     

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

1 Reply

  • v-kkf-msft's avatar
    v-kkf-msft
    Community Support

    Hi Anonymous ,

     

    In addition to refreshing the full partition using the SSMS connection datasets, you can also try a full refresh using the Datasets - Refresh Dataset In Group Rest API. Here is my test request.

     

    Request URL:

    POST https://api.powerbi.com/v1.0/myorg/groups/{groupId}/datasets/{datasetId}/refreshes

    Body:

    {
        "type": "Full",
        "commitMode": "transactional",
        "maxParallelism": 2,
        "retryCount": 2,
        "applyRefreshPolicy": "false"
    }

     

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.