If you are running a web application in Azure then you must have used Storage Account service. This is a commonly used service to store binary files for example - images, files and videos. This is quite common usecase for any web application is to upload files. It is really easy to upload small files,... Continue Reading →
List of Managed Identity Services in Azure
Managed identities, System or User identity, allow access to Azure resources that support AAD Authentication without managing credentials. These identities are managed in Azure Active Directory automatically. It is a great feature from the security perspective because credentials are not maintained anywhere. Managed identities can be used without any additional cost. Managed identies are of... Continue Reading →
List of Auto Scaling Services in Azure
What is Autoscale Provides resources to handle the load on your application Saves money by removing resources when not in use. Scales horizontally i.e. increase or decrease number of VM instances and more flexible in cloud environment. Two ways to trigger the autoscale for the supported services and these are Matrix-Based and Time-Based rules. Autoscaling... Continue Reading →
Azure SQL Server – How to Authenticate using Azure Active Directory
Azure SQL Server provides multiple ways to connect and fetch the data. The most common authentication is based on username and password, however, in the world of the cloud, the most secure authentication method is based on the Azure Active directory using MFA. Supported features By default, this feature is not enabled, but once enable... Continue Reading →
Azure Data Factory – Aggregate transformation in mapping data flow
Mapping data flow comes with many transformation options. While working with data flows, you need to incorporate appropriate transformations to get the desired result. The Aggregate transformation helps to perform aggregations of data using Count, Min, Max, and Sum with expression builder in ADF. So let's begin with the implementation:- Implementation We are going to... Continue Reading →
Azure Storage – What is Lifecycle Management and implementation
Lifecycle management is a transition and retention activity. This helps to take necessary action based on the aging of blobs within storage account. Azure Storage Lifecycle management comes with set of policies. A policy is collection of rules and each rule definition has a filter set and an action set. Filters are used to mark... Continue Reading →
How to Access Storage Account Using System Managed Identity
Azure blob storage can be accessed using Managed Identity. This post will briefly talk about Managed Identity and enable Managed Identity to access Azure Blob from the WebApp. What is Managed Identity Managed Identity provides Azure services with an automatically managed identity in AAD (Azure Active Directory). It helps to authenticate to any service that supports AAD... Continue Reading →
Azure Storage – What are data protection options
Data is everything in the current world, and no one wants to lose it. However, we need to follow the right strategies and best practices to know what is happening with data and how to recover if something wrong happens to data. Azure Storage Service provides many data protection options that are available under Recovery... Continue Reading →
Azure Storage – How to Use Blob Versioning
Blob versioning helps to maintain the last modified version of an object (Files, Images or Videos, etc), if the same object is updated by any operation. If blob versioning is enabled, then any available previous copy can be restored. We should use blob versioning to maintain previous versions to enable another layer of data protection.... Continue Reading →
Blob Storage – Object Replication using Azure PowerShell
Azure Blob Storage got a new feature named Object Replication. Currently, this feature is only supported for the block blob. Object replication asynchronously copies blobs between a source storage account and a destination account. Object replication helps to minimize latency and data distribution, and the implementation requires replication policies and rules to be set on... Continue Reading →