Reputation: 1322
As per this MS doc, we can create a queue trigger instead of blob trigger to avoid drawbacks of blob trigger. I have a few questions around this which these docs don't answer:
My question is should I send explicit queue message with blob name on the queue hub to trigger the function and process the blob ? Or can I somehow automate this so that the storage account/container can send a queue message once a blob is uploaded ?
Upvotes: 0
Views: 309
Reputation: 35154
You'll have to do it yourself, i.e. send a queue item with blob name in it every time you save a new blob to the storage.
Upvotes: 1