JamesDBartlett3 / Fabric-Archive-Bot

A fully automated Microsoft Fabric/Power BI tenant backup solution written in PowerShell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fabric-Archive-Bot

A fully automated Microsoft Power BI/Fabric tenant backup solution written in PowerShell

Features

  • Free & Open Source: No licensing fees, no vendor lock-in, and full access to the source code. You can run the script on your own hardware or in your own cloud environment, and you can modify the code to suit your needs. If you find a bug or want to add a feature, you can create an issue or a pull request.
  • Premium Not Required: Works with both Power BI Pro and Power BI Premium, so you don't need to pay for Premium to use this solution.
  • Export Reports & Semantic Models: Exports all reports and semantic models (formerly "datasets") from all workspaces in your Power BI/Fabric tenant to a local directory.
  • Service Principal Support: Can authenticate as an Entra ID App Registration (a.k.a. "Service Principal"), so you don't need to login with your user account. This is especially useful for running the script on a schedule in an unattended environment. Note: You will need to create an App Registration in Entra ID, add it to a new security group, grant that group the necessary permissions in the Power BI Admin Portal, and then provide the Tenant ID, App ID, and App Secret in the Config.json file.
  • Fully Automated: Run the script on a daily schedule to automatically back up all workspaces in your Power BI/Fabric tenant (use Task Scheduler in Windows or a similar tool).
  • Configurable: Customize the target folder, semantic model format (TMSL/TMDL), workspaces to archive, retention policy, and more (run Get-Help .\Export-FabricItemsFromAllWorkspaces.ps1 -Detailed for more information).
  • Secure: Uses Entra ID authentication to access the Fabric REST APIs, so you don't need to store your username and password in the script.

Current Limitations

  • Windows Machine: Runs on Windows in a local or cloud environment (physical or virtual machine), but does not currently support running as an Azure Function (a.k.a "serverless"). This feature is planned for a future release.
  • Local Storage: Exports items to a local directory, but does not currently support exporting to Azure Blob Storage, Amazon S3, Google Cloud Storage, etc. This feature is planned for a future release.
  • Item Types: Can only export reports and semantic models (formerly "datasets"). This is a limitation of the Microsoft Fabric REST APIs, and Microsoft has not yet made it clear if/when they will add support for exporting other item types.
  • Archive Compression: Exports items as individual files in the specified output directory. Support for compressing archived items (e.g., as .ZIP files) is planned for a future release.
  • Error Handling & Logging: If an error occurs during the export process, the script will continue without handling or logging it. This feature is planned for a future release.
  • Parallelism: Exports only one item at a time. Support for exporting multiple items in parallel is planned for a future release.
  • Item Filtering: Currently, the script will ignore all workspaces in the IgnoreWorkspaces list (see IgnoreList.json), but IgnoreReports and IgnoreSemanticModels are not currently supported. I am planning to work on adding these capabilities in a future release, but they're not on the roadmap yet, so if you would like to see them added sooner, please let me know by creating an issue or a pull request.
  • Incremental Backups: Always exports all supported items from all workspaces which match the WorkspaceFilter parameter and are not in the IgnoreWorkspaces list (see IgnoreList.json). If you have a large tenant, this could take a long time and consume a lot of storage space. Incremental backups are theoretically possible, but they would require a much more complex solution, so this feature is not currently on the roadmap. However, if you would like to see this feature added, please let me know by creating an issue or a pull request.
  • Multiple Tenants: Support for exporting items from multiple tenants is not currently supported or on the roadmap, but if you would like to see this feature added, please let me know by creating an issue or a pull request.

Notes

If you clone this repo, you can run these commands to prevent your changes to the Config.json and IgnoreList.json files from being tracked in Git (so you don't accidentally commit your sensitive information):

git update-index --skip-worktree Config.json
git update-index --skip-worktree IgnoreList.json

Acknowledgements

This project was inspired by, and wouldn't be possible without, the FabricPS-PBIP PowerShell module, which was created by Rui Romano, and can be found in the Analysis-Services repository on GitHub.

About

A fully automated Microsoft Fabric/Power BI tenant backup solution written in PowerShell

License:Open Software License 3.0


Languages

Language:PowerShell 100.0%