Probably a stupid question.
Generally what is the best approach to have a program listening to an MQTT feed (done), placing messages onto a queue or service bus and then have those automated processed via Azure?
How would I process the messages on a queue? Is there a way for some Azure function/feature to automatically then put that into a storage account and a database after some manipulation? Generally what's the best approach? Ideally using C#.
- Feed listens for data feeds (done)
- Puts message onto queue or service bus (easily done)
- Something on Azure will take that item and put it on a Storage Account and Cosmos database. (stuck on best appoach)
Thanks.