miztiik / azure-blob-trigger-python-function

Azure Blob Storage Event Processing with Python Azure Functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Azure Blob Storage Event Processing with Python Azure Functions

The developers at Mystique Unicorn are looking to implement a serverless solution that can process incoming events triggered by updates to blob storage on Azure. They have heard of Azure capabitlities for event processing can you help them Miztiik Automation - Azure Blob Storage Event Processing with Python Azure Functions

🎯 Solution

This solution provides a Python-based Azure Function that processes events triggered by updates to Azure Blob Storage. With all necessary resources provisioned in Bicep, deployment and management are made easy. Our "Azure Blob Storage Event Processing with Python Azure Functions" solution enables quick and efficient event processing on Azure, without the need for complex infrastructure management.

  1. 🧰 Prerequisites

    This demo, instructions, scripts and bicep template is designed to be run in westeurope. With few or no modifications you can try it out in other regions as well(Not covered here).

  2. βš™οΈ Setting up the environment

    • Get the application code

      https://github.com/miztiik/azure-send-custom-metrics-using-umi
      cd azure-send-custom-metrics-using-umi
  3. πŸš€ Prepare the environment

    Let check you have Azure Cli working with

      # You should have azure cli preinstalled
      az account show

    You should see an output like this,

     {
       "environmentName": "AzureCloud",
       "homeTenantId": "16b30820b6d3",
       "id": "1ac6fdbff37cd9e3",
       "isDefault": true,
       "managedByTenants": [],
       "name": "YOUR-SUBS-NAME",
       "state": "Enabled",
       "tenantId": "16b30820b6d3",
       "user": {
         "name": "miztiik@",
         "type": "user"
       }
     }
  4. πŸš€ Deploying the application

    • Stack: Main Bicep This will create the following resoureces
      • General purpose Storage Account with blob container
        • This will be used by Azure functions to store the function code
      • Storage Account with blob container -
        • This will be used to store the events
      • Python Azure Function
        • Binding to the blob container for events
    # make deploy
    sh deployment_scripts/deploy.sh

    After successfully deploying the stack, Check the Resource Groups/Deployments section for the resources.

    Miztiik Automation - Azure Blob Storage Event Processing with Python Azure Functions

  5. πŸ”¬ Testing the solution

    • Upload file to blob

      Get the storage account and container name from the output of the deployment. Upload a file to the container and check the logs of the function app to see the event processing in action.

      Sample bash script to upload files to blob container. You can also upload manually from the portal,

      FILE_NAME="${RANDOM}_$(date +'%Y-%m-%d').json"
      SA_NAME="warendkdwu006"
      CONTAINER_NAME="store-events-blob-006"
      echo -n "{\"message\": \"hello world on $(date +'%Y-%m-%d')\"}" > ${FILE_NAME}
      az storage blob upload \
        --account-name ${SA_NAME} \
        --container-name ${CONTAINER_NAME} \
        --name ${FILE_NAME} \
        --file ${FILE_NAME} \
        --auth-mode login

      Miztiik Automation - Azure Blob Storage Event Processing with Python Azure Functions Miztiik Automation - Azure Blob Storage Event Processing with Python Azure Functions

  6. πŸ“’ Conclusion

    Here we have demonstrated trigger Azure functions with blob trigger. You can extend the solution and configure the function to send the events to other services like Event Hub, Service Bus, or persist them to Cosmos etc.

  7. 🧹 CleanUp

If you want to destroy all the resources created by the stack, Execute the below command to delete the stack, or you can delete the stack from console as well

# Delete from resource group
az group delete --name Miztiik_Enterprises_xxx --yes
# Follow any on-screen prompt

This is not an exhaustive list, please carry out other necessary steps as maybe applicable to your needs.

πŸ“Œ Who is using this

This repository aims to show how to Bicep to new developers, Solution Architects & Ops Engineers in Azure.

πŸ’‘ Help/Suggestions or πŸ› Bugs

Thank you for your interest in contributing to our project. Whether it is a bug report, new feature, correction, or additional documentation or solutions, we greatly value feedback and contributions from our community. Start here

πŸ‘‹ Buy me a coffee

ko-fi Buy me a coffee β˜•.

πŸ“š References

  1. Azure Functions Python developer guide
  2. host.json reference for Azure Functions 1.x
  3. Azure Functions triggers and bindings concepts
  4. Azure Functions Best Practices
  5. Azure Blob storage trigger for Azure Functions
  6. Azure Functions trigger on blob containers events

🏷️ Metadata

miztiik-success-green

Level: 100

About

Azure Blob Storage Event Processing with Python Azure Functions


Languages

Language:Bicep 50.2%Language:Python 36.5%Language:Shell 12.2%Language:Makefile 1.0%