🔥 *Ace Your Certification Exams – Free Practice Questions!*
🚀 Get ahead with free practice questions for certification exams
👉 https://certiace.com/
☕ *Enjoying the Content? Support the Channel!*
Buy me a coffee and keep the knowledge flowing!
💖 https://buymeacoffee.com/aleksipartanentech
👨💼 *Follow Me on LinkedIn!*
🔗 https://www.linkedin.com/in/aleksi-partanen/
📂 *Access Learning Materials (Files, Code, etc.)*
💾 Download helpful resources here:
🔗 https://drive.google.com/drive/folders/137oJUhjRJhZZsnRln8tlJBcl1OYc2X2C?usp=sharing
🎓 *More of My Content:*
🎥 https://www.youtube.com/playlist?list=PLlqsZd11LpUES4AJG953GJWnqUksQf8x2
🎥 https://www.youtube.com/playlist?list=PLlqsZd11LpUHKLILXjfW5ORjNiksC3GWZ
🎥 https://www.youtube.com/playlist?list=PLlqsZd11LpUEq26ZswRz58k5O5HwoSDvA
🎥
https://youtu.be/0PjuNHYiX00
🎥
https://youtu.be/1PGE9bWqY2g
🎥
https://youtu.be/qoVhkiU_XGc
🔗 All the Videos:
https://www.youtube.com/@AleksiPartanenTech/videos
Automatically Pause Your Microsoft Fabric Capacity with Azure Data Factory
Are you worried about forgetting to pause your Microsoft Fabric capacity and incurring unnecessary costs? In this beginner-friendly tutorial, Aleksi shows how to use an Azure Data Factory pipeline to automatically pause your capacity. Learn to save money by automating this essential task with a simple and cost-effective solution.
What You’ll Learn:
🔷 How to create an Azure Data Factory pipeline to manage Fabric capacity
🔷 Using Azure Management API for pausing capacity
🔷 Configuring pipeline parameters for multiple capacities
🔷 Best practices for error handling and retries in pipelines
Key Takeaways:
✨ Save money by automating Fabric capacity pausing
✨ Utilize pipeline parameters to manage multiple capacities with one solution
✨ Learn a beginner-friendly approach to integrate with Azure APIs
✨ Schedule pipelines to ensure capacity management runs daily
Related Hashtags:
#MicrosoftFabric #AzureDataFactory #Automation #DataEngineering #CostOptimization #AzureTutorial #cloudcomputing
Expressions:
Web activity (get_fabric_capacity_running_status):
@concat('https://management.azure.com/subscriptions/',pipeline().parameters.subscription_id,'/resourceGroups/',pipeline().parameters.resource_group_name,'/providers/Microsoft.Fabric/capacities/',pipeline().parameters.fabric_capacity_name,'?api-version=2022-07-01-preview')
If Condition (if_fabric_capacity_state_is_active):
@equals(activity('get_fabric_capacity_running_status').output.properties.state,'Active')
Web activity (pause_fabric_capacity):
@concat('https://management.azure.com/subscriptions/',pipeline().parameters.subscription_id,'/resourceGroups/',pipeline().parameters.resource_group_name,'/providers/Microsoft.Fabric/capacities/',pipeline().parameters.fabric_capacity_name,'/suspend?api-version=2022-07-01-preview')