I'm currently working on a POC with the following requirement: We have an Azure cosmos db that stores certain documents that need to be updated based on the events published by a Service Bus. To my knowledge, Cosmos DB cannot directly consume events from Service Bus. So, in order to establish the connectivity I'm working on a POC using an Azure logic app that reads the data from Service bus & then executes a stored procedure in Azure Cosmos DB. I have the following questions during the implementation:
- Is Logic app a good fit for this usecase? or are there any other better options available for this usecase. Two more options that we thought of are; Azure Function app OR a spring app deployed to an AKS (similar to our other projects) to establish connectivity b/w Service Bus & Cosmos DB
- What are some considerations to make the logic app production ready?