How to use azure blob storage as a database and develop and deploy a real time application on azure cloud?

TestDeveloper12345 21 Reputation points
2022-04-18T07:28:21.773+00:00

I have data in azure blob storage and i want to develop and deploy an application to azure cloud using azure blob service as a database.Can you guide me the process to do so.

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,639 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Takahito Iwasa 4,841 Reputation points MVP
    2022-04-18T20:57:07.193+00:00

    Hi, @TestDeveloper12345

    I assume your application is a web application.

    Azure offers a variety of hosting options.
    You can start development in your favorite development language, runtime. Then consider the appropriate hosting options.

    .NET: https://learn.microsoft.com/en-us/dotnet/azure/migration/choose
    JS & Node.js: https://learn.microsoft.com/en-us/azure/developer/javascript/how-to/select-hosting-service

    And for each language and runtime, the development flow and how to connect to BLOB storage are described on the Azure document.
    You can start development with reference to it.


  2. Udaiappa Ramachandran 726 Reputation points MVP
    2022-04-21T18:58:55.933+00:00

    Azure Storage supports blobs, queues, tables, and file share. I assume you are receiving all data as blobs. The best option is to redesign the system, if it is not possible then write an azure function to monitor (trigger) azure blobs then extract data into key-value pair into Table or Cosmos DB. This way you can query and filter data efficiently.

    0 comments No comments