I am building an Azure function that retrieves delta updates from Service Bus and should create/update documents based on that in Cosmos DB.
Currently I am only using the output binding to achieve this, but I am running into 429 errors when I have a lot of updates in the queue, even with 20.000 RU/s.
It looks like I need to throttle the amount of data coming from Bus -> Azure Function -> Cosmos DB. What is the "best practice" way to approach this?
I can only find limited information on this topic.