I have created a simple azure web job, that goes off grabs some data from a website that's passed in, parses it and adds it to a database.
It's just a simple console app (.exe file) that takes in an argument. And it's uploaded to a web app on Azure.
However, I was under the impression that this webjob would just fire up and finish as many times as needed. So if I fired off 3 commands to the webjob one after the other, I would end up with 3 instances of the webjob running concurrently.
But, it doesn't work. I can only have it running once. The other two commands fail. Is it possible to have a single webjob, in a single web app and have it run concurrently while the same webjob processing something different is also running?