I have integrated an Azure Service Bus and an Azure Function to receive a message, and then update a SQL DB.
I want to save a JSON created from a query from the same Database to a Azure Blob.
My questions are:
- I can save the JSON by calling the Azure Blob REST API. Is it a Cloud Native pattern to call one service from another service?
- Is sending the JSON to the Azure Service Bus and another Azure Function saving the data to the Blob an optimal approach?
- Is a resource other than Azure Blob to save the JSON data from an Azure Function which will make the integration easy.