Loading...

Optimizing Azure Table Storage: Automated Data Cleanup using a PowerShell script with Azure Automate

Optimizing Azure Table Storage: Automated Data Cleanup using a PowerShell script with Azure Automate

Scenario

This blog’s aim is to manage Table Storage data efficiently. Imagine you have a large Azure Table Storage that accumulates logs from various applications or any unused older data. Over time, this data grows significantly, making it necessary to periodically clean up old entries to maintain performance and manage costs. You decide to automate this process using Azure Automation. However, lifecycle management policies are limited to the Blob service only.

 

By scheduling a PowerShell script, you can efficiently delete outdated data from your Azure Table Storage without manual intervention. This approach ensures that your storage remains optimized, and your applications continue to run smoothly.

 

Below is the PowerShell script which delete Table Entities based on Timestamp: -

Connect-AzAccount -Identity

$SubscriptionID = "xxxxxxxxxxxxxxxxxx"
$AzureContext = Set-AzContext –SubscriptionId $SubscriptionID
Update-AzConfig -DisplaySecretsWarning $false

$StorageAccount = "xxxxxxxxxxxxxxxxxxx"
$StorageAccountKey = "xxxxxxxxxxxxxxxxxxx"

$ctx = New-AzStorageContext -StorageAccountName $StorageAccount -StorageAccountKey $StorageAccountKey

$alltablename = (Get-AzStorageTable –Context $ctx).CloudTable

foreach ($table in $alltablename)

{
$tabledata = Get-AzTableRow -Table $table -CustomFilter "Timestamp gt datetime 'YYYY-MM-DDThh:mm:ssZ' " |
Remove-AzTableRow -Table $table
}

 

#DISCLAIMER
#The sample scripts are not supported under any Microsoft standard support program or service. The sample scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, owners of this repository or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever (including,
#without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages.

 

Here are the steps to schedule a PowerShell script in Azure Automation :-

 

  1. Create an Azure Automation Account by following the link:

  2. Add Modules to Azure Automation Account:

    • Navigate to the created automation account page.
    • Go to the "Modules" tab under the "Shared Resources" section and choose the "Add a module" option.First Mask again.png
    • You can either manually import modules from your local machine or import inbuilt modules from the gallery.second.png
    • In this article, we will proceed with the gallery option.Thrid.png
    • Search for the Storage Modules.fifth.png
    • Add the module with recommended Runtime version.sixth.png
  3. Create a PowerShell Runbook:

    • In the Azure Portal, navigate to your Automation Account.
    • Under "Process Automation", select "Runbooks".
    • Click on "Create a runbook".
    • Enter a name for the runbook, select "PowerShell" as the Runbook type, and click "Create".createrunbook new.png
    • Once Runbook is created, in the "Edit PowerShell Runbook" page.Edit in portal.png
    • Enter your PowerShell script and click "Publish".Publish2.png
  4. Schedule the Runbook:

    • Go to the respective Runbook and choose the "Link to schedule" option.Link2Schedule.png
    • Select the "Link a schedule to your Runbook" option and choose the appropriate schedule.Scheduletype.png
    • If you go ahead wit Schedule option, you can create a new schedule by specifying the name, description, start date, time, time zone, and repeating information.Create Schedule.png
  5. Monitor the Runbook:

    • You can monitor the runbook's execution by going to the Jobs section under Process Automation in your Automation account.
    • Here, you can see the status of the runbook jobs, view job details, and troubleshoot any issues.Monitor.png

Note:

Using a managed identity from Microsoft Entra ID allows your runbook to securely access other Microsoft Entra-protected resources without needing to manage credentials. This identity is automatically managed by Azure, eliminating the need for you to provision or rotate secrets manually. Managed identities are the preferred authentication method for runbooks and are set as the default for your Automation account, ensuring secure and streamlined access to necessary resources. Refer :- Using a system-assigned managed identity for an Azure Automation account | Microsoft Learn

 

These steps should help you schedule your PowerShell script in Azure Automation. If you have any more questions or need further assistance, feel free to ask!


References :-

Published on:

Learn more
Azure PaaS Blog articles
Azure PaaS Blog articles

Azure PaaS Blog articles

Share post:

Related posts

Introducing the Azure MCP Server

This post introduces the Azure MCP Server, bringing the power of the cloud to your AI agents. The post Introducing the Azure MCP Server appear...

16 hours ago

Azure OpenAI Service now authorized for all U.S. Government data classification levels

In the coming years, artificial intelligence will continue to be foundational to technical innovations for national security missions. Already...

1 day ago

GPT-4.1 is now available at Azure AI Foundry

Azure AI Foundry and AOAI (Azure OpenAI Services) keeps on getting better all the time! The latest addition in Azure AI Foundry (as of April 1...

3 days ago

Introducing Region Selection in Azure Cosmos DB Data Explorer for NoSQL Accounts

You asked—we delivered! Users can now manually select the region Data Explorer sends requests to! When you use Entra Authentication with NoSQL...

3 days ago

Microsoft Attempts to Fix Microsoft Graph PowerShell SDK Problem with Azure Automation

V2.26 and V2.26.1 of the Microsoft Graph PowerShell SDK were low-quality, buggy disasters. Microsoft aims to fix the problem in the next versi...

4 days ago

Introducing Spring Cloud Azure Starter Key Vault JCA: Streamlined TLS and mTLS for Spring Boot

This blog post shows the Spring Cloud Azure Starter Key Vault Java Crypto Architecture (JCA). The post Introducing Spring Cloud Azure Starter ...

6 days ago

Resolving Microsoft Graph PowerShell 2.26+ compatibility issues with Azure Runbooks

We know how important Azure Automation workflows and appreciate the critical role played by automation runbooks. Some customers have experienc...

6 days ago

Getting insights from changes to items in Azure Cosmos DB just got easier!

Azure Cosmos DB’s change feed provides a view of changes to data in your container. This enables patterns like event sourcing, auditing and sy...

7 days ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy