1
votes

I'm developing a Stateless Service which will be in charge to process the blobs uploaded to a certain azure storage blob container. Is there a way to bind this Stateless Service to the blob the same way it can be done using Azure WebJobs?

As a workaround I was thinking of having a binded WebJob to that Azure Storage Blob Container and calling the Stateless Service everytime new blobs are uploaded.

Any sugestions or examples?

Thanks in advance!

1
I'm not sure there is, based on the answers here Reliable blob state in Azure Service Fabric?Jason Evans

1 Answers

0
votes

It's possible to use the WebJob SDK in ASF services and use a blob trigger.

You can also use an Azure Function with a blob trigger, that then calls a service hosting a web api.