Reputation: 1
I am using a cosmos DB and I am looking to use the change feed to send changes over an azure event grid to other databases or listeners interested in the changes.
I am sure that the cosmos DB change feed cannot be directly piped into the event grid but how do I make the change feed an event source to pipe into the event grid.
Any input would be much appreciated.
Upvotes: 0
Views: 2539
Reputation: 2720
You can use Azure functions. They can be setup to be triggered by any changes in your CosmosDB and transfer those changes to your Event grid topic.
CosmosDB trigger Functions LINK and Event grid output bindings LINK.
Upvotes: 1