johnsontroye
johnsontroye

Reputation: 391

Trigger a Function from Table Storage in Azure

In Azure, how can I automatically trigger a function when data is inserted/updated/deleted in table storage? The data entity from table storage should be the input to the function. I need to then pass that data to another endpoint.

Upvotes: 2

Views: 1009

Answers (2)

Gerardo Jaramillo
Gerardo Jaramillo

Reputation: 485

Maybe you can use a queue that sends a message to a funciton to write into the azure table and when the function finishes the insertion a new message can be send to a queue to activate a new function that does what you need to be done.

Upvotes: 0

Sajeetharan
Sajeetharan

Reputation: 222712

There is no table storage trigger available out of the box!

I would recommend you to use the cosmosdb table API to take advantage of global distribution, automatic indexing and rich quer which also supports changefeed

Upvotes: 0

Related Questions