Posts

Showing posts from September, 2024

Optimize Azure Storage Costs with Smart Tier — A Complete Guide to Microsoft’s Automated Tiering Feature

  Smart Tier for Azure Blob & Data Lake Storage — A Smarter, Cost-Efficient Way to Manage Your Data Microsoft has introduced  Smart Tier  (Public Preview), a powerful automated data-tiering feature for  Azure Blob Storage  and  Azure Data Lake Storage . This feature intelligently moves data between the  hot ,  cool , and  cold  access tiers based on real-world usage patterns—no manual policies, rules, or lifecycle setups required. 🔥 What is Smart Tier? Smart Tier automatically analyzes your blob access patterns and moves data to the most cost-efficient tier. It eliminates guesswork and minimizes the need for administrators to manually configure and adjust lifecycle management rules. ✨ Key Benefits Automatic tiering based on access patterns No lifecycle rules or policies required Instant promotion to hot tier when data is accessed Cost-efficient storage for unpredictable workloads No early deletion fees ...

Git & Git Command

Image
Git is the free and open source distributed version control system that's responsible for everything GitHub related that happens locally on your computer  🚀 Mastering Git Basics 🚀 ⭐ **ls**: List contents inside the folder ⭐ **mkdir <folder_name>**: Create a project ⭐ **cd <folder_name>**: Navigate into a folder ⭐ **git init**: Initialize a Git repository ⭐ **touch names.txt**: Create a new file ⭐ **git status**: Show directory changes ⭐ **git add .**: Add all untracked files ⭐ **git add file.txt**: Add a specific file ⭐ **git commit -m "message"**: Commit changes with a message ⭐ **vi file.txt**: Edit a file ⭐ **cat names.txt**: Display file content ⭐ **git restore --staged files.txt**: Unstage a file ⭐ **git log**: View commit history ⭐ **rm -rf names.txt**: Delete a file ⭐ **git reset <commit id>**: Restore file to a specific commit ⭐ **git stash**: Temporarily store changes ⭐ **git stash pop**: Apply stored changes ⭐ **git stash clear**: Clear stor...