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
HamidBee
Impactful Individual
Impactful Individual

What does a target storage mode set to 'PremiumFiles' mean when writing a PowerShell script?

I'm learning about PowerBI Rest APIs and I came across the following PowerShell script:

 

Set-PowerBIDataset -Id 038f9a64-1fcd-42f2-957a-13a63b3d3235 -TargetStorageMode PremiumFiles

What does a target storage mode set to premium mean?.

 

Thanks in advance. 

1 ACCEPTED SOLUTION
HamidBee
Impactful Individual
Impactful Individual

I just found the answer on another page:


"Premium: Premium file shares are backed by solid-state drives (SSDs) and provide consistent high performance and low latency, within single-digit milliseconds for most IO operations, for IO-intensive workloads. Premium file shares are suitable for a wide variety of workloads like databases, web site hosting, and development environments. Premium file shares can be used with both Server Message Block (SMB) and Network File System (NFS) protocols."

 

https://learn.microsoft.com/en-us/azure/storage/files/storage-files-planning#storage-tiers

 

The full script to change the storage mode to premium should look like this:

 

Set-PowerBIDataset -Id <Dataset ID> -TargetStorageMode PremiumFiles

(Get-PowerBIDataset -Scope Organization -Id <Dataset ID> -Include actualStorage).ActualStorage

 

It's very useful to do this for really large datasets. 

 

View solution in original post

1 REPLY 1
HamidBee
Impactful Individual
Impactful Individual

I just found the answer on another page:


"Premium: Premium file shares are backed by solid-state drives (SSDs) and provide consistent high performance and low latency, within single-digit milliseconds for most IO operations, for IO-intensive workloads. Premium file shares are suitable for a wide variety of workloads like databases, web site hosting, and development environments. Premium file shares can be used with both Server Message Block (SMB) and Network File System (NFS) protocols."

 

https://learn.microsoft.com/en-us/azure/storage/files/storage-files-planning#storage-tiers

 

The full script to change the storage mode to premium should look like this:

 

Set-PowerBIDataset -Id <Dataset ID> -TargetStorageMode PremiumFiles

(Get-PowerBIDataset -Scope Organization -Id <Dataset ID> -Include actualStorage).ActualStorage

 

It's very useful to do this for really large datasets. 

 

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.