I have a queue that a lot of high frequency data is put in. I have an azure function that will trigger when new messages are written to it and write the message to a Azure sql database. My problem is that there are too many messages to write so what I want to do is kind of "accumulate" messages and then write them all at once to the database. I don't see any kind of functionality in Azure function service bus integration to get all(or x) messages and handle them.
Is something like this at all possible?
Any help is appreciated.