Implementing Cosmos DB Change Feed using Azure Functions in C#

Will Velida
Towards Data Science
6 min readAug 23, 2019

--

Azure Cosmos DB has a cool feature called the Change Feed which allows us to perform real-time analytics on our container by listening to any changes that occur within the container.

These changes are then produced as a sorted list of documents that were change in the order that they were modified. These are persisted and can be processed incrementally. The…

--

--