I am working on Azure SQLDB- and idea is to send a messages to signalR hub which will connect with the clients. The volume of traffic will be low (around 1000-2000 messages per day at maximum, and 1-2s latency is fine)
Rather than poll at periodic intervals, we want to use Azure functions to make the data pull, only when there is an update. I understand AzureDB has functional limitations and triggers cannot invoke the Azure function directly due to lack of CLR support
Azure SQL Database trigger to insert audit info into Azure Table
What are the best options
- Should I populate a queue - which acts as a trigger for function? Again,how do I populate this queue?
- I can use Service Bus - but would prefer to keep it simple
Appreciate any pointers and guidance