Great dive into CosmosDB! Do you perhaps know how the function scaling works based on change feed volume? Example will it create new function instances for every X number of change feed items? I've looked for hours through Azure documentation and can't seem to find how the scaling rules work for CosmosDB triggered functions
How do you know what specifically has changed? Is there some sort of "from" and "to" in the event? Like if you're only interested in processing when a boolean is updated?
Please can you provide a link to your Nodejs code that stores data to the cosmos db
Great dive into CosmosDB! Do you perhaps know how the function scaling works based on change feed volume? Example will it create new function instances for every X number of change feed items?
I've looked for hours through Azure documentation and can't seem to find how the scaling rules work for CosmosDB triggered functions
Not sure. You could set the number of instances and see how that works.
How do you know what specifically has changed? Is there some sort of "from" and "to" in the event? Like if you're only interested in processing when a boolean is updated?
The change feed contains the new data. I don't think it shows any of the old data.